.tackle-hub {
	background: var(--paper);
}

.tackle-hub__hero {
	position: relative;
	overflow: hidden;
	padding: clamp(84px, 10vw, 142px) 0;
	background:
		radial-gradient(circle at 84% 18%, rgba(43, 199, 192, 0.18), transparent 34%),
		linear-gradient(135deg, #071214 0%, #0b2528 100%);
	border-bottom: 1px solid var(--line);
}

.tackle-hub__hero::after {
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 440px;
	height: 440px;
	border: 1px solid rgba(215, 239, 104, 0.2);
	border-radius: 50%;
	content: "";
}

.tackle-hub__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
}

.tackle-hub__hero h1 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(42px, 7vw, 78px);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
}

.tackle-hub__hero h1 em {
	color: var(--lime);
	font-style: normal;
}

.tackle-hub__hero-inner > p:last-child {
	max-width: 720px;
	margin: 30px 0 0;
	color: var(--ink-soft);
	font-size: clamp(16px, 2vw, 19px);
}

.tackle-hub__databases,
.tackle-hub__steps {
	padding: clamp(72px, 9vw, 120px) 0;
}

.tackle-hub__section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 42px;
}

.tackle-hub__section-heading h2 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.35;
}

.tackle-hub__section-heading > p {
	max-width: 480px;
	margin: 0;
	color: var(--ink-soft);
}

.tackle-hub__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.tackle-hub__card {
	display: flex;
	min-height: 430px;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(28px, 4vw, 44px);
	background: linear-gradient(145deg, rgba(18, 54, 56, 0.94), rgba(8, 27, 29, 0.98));
	border: 1px solid var(--line);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
	transition: border-color 180ms ease, transform 180ms ease;
}

.tackle-hub__card:hover {
	border-color: rgba(43, 199, 192, 0.58);
	transform: translateY(-3px);
}

.tackle-hub__card-eyebrow {
	margin: 0 0 12px;
	color: var(--ocean);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.tackle-hub__card h3 {
	margin: 0;
	font-family: var(--font-serif);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.3;
}

.tackle-hub__card h3 + p {
	margin: 18px 0 0;
	color: var(--ink-soft);
}

.tackle-hub__card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 26px 0 0;
	list-style: none;
}

.tackle-hub__card li {
	padding: 5px 10px;
	background: rgba(7, 18, 20, 0.56);
	border: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 12px;
}

.tackle-hub__card > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 34px;
	padding: 15px 18px;
	background: var(--lime);
	color: #071214;
	font-size: 14px;
	font-weight: 800;
}

.tackle-hub__card > a:focus-visible {
	outline: 3px solid var(--white);
	outline-offset: 3px;
}

.tackle-hub__card > a span {
	font-size: 20px;
	line-height: 1;
}

.tackle-hub__steps {
	background: #0a191b;
	border-top: 1px solid var(--line);
}

.tackle-hub__step-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tackle-hub__step-list li {
	display: flex;
	gap: 18px;
	padding: 28px;
	background: rgba(18, 54, 56, 0.5);
	border: 1px solid var(--line);
}

.tackle-hub__step-list li > span {
	color: var(--lime);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.tackle-hub__step-list h3 {
	margin: 0;
	font-size: 18px;
}

.tackle-hub__step-list p {
	margin: 10px 0 0;
	color: var(--ink-soft);
	font-size: 14px;
}

@media (max-width: 820px) {
	.tackle-hub__section-heading {
		display: block;
	}

	.tackle-hub__section-heading > p {
		margin-top: 18px;
	}

	.tackle-hub__grid,
	.tackle-hub__step-list {
		grid-template-columns: 1fr;
	}

	.tackle-hub__card {
		min-height: 0;
	}

	.tackle-hub__hero::after {
		right: -250px;
	}
}

@media (max-width: 520px) {
	.tackle-hub__hero {
		padding: 72px 0 78px;
	}

	.tackle-hub__hero h1 {
		font-size: 38px;
	}

	.tackle-hub__databases,
	.tackle-hub__steps {
		padding: 64px 0;
	}

	.tackle-hub__card {
		padding: 26px 22px;
	}

	.tackle-hub__step-list li {
		padding: 24px 20px;
	}
}
