:root {
  color-scheme: dark;
  --bg: #090d10;
  --panel: #111820;
  --panel-2: #16202a;
  --text: #f3f7f3;
  --muted: #aab8b0;
  --line: #26323a;
  --green: #6de38f;
  --blue: #6bb7ff;
  --gold: #f0bf59;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(109, 227, 143, 0.12), transparent 34%),
    radial-gradient(circle at 85% 6%, rgba(107, 183, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #090d10 0%, #0d1114 55%, #090d10 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 16, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #07100b;
  font-size: 0.85rem;
  font-weight: 900;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
}

.nav a {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--text);
}

.hero,
.section,
.strip,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 4rem 0 3rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.lead,
.section-heading p,
.tool-card p,
.price-card li,
.apply p,
details p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  max-width: 680px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #07100b;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.tool-card,
.price-card,
.apply,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.84);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.2rem;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(109, 227, 143, 0.16), rgba(107, 183, 255, 0.1));
}

.panel-head span,
.mini-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.panel-head strong {
  color: var(--green);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.mini-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: var(--panel-2);
}

.mini-grid strong {
  display: block;
  margin-top: 0.35rem;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 0 2rem;
}

.strip span {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.55rem;
}

.tool-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card,
.price-card {
  padding: 1.3rem;
}

.radar {
  border-color: rgba(107, 183, 255, 0.42);
}

.fishing {
  border-color: rgba(109, 227, 143, 0.42);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.tool-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--green);
  font-weight: 900;
}

.badge,
.popular {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(109, 227, 143, 0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.steps strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(107, 183, 255, 0.16);
  color: var(--blue);
}

.price-card.featured {
  position: relative;
  border-color: rgba(109, 227, 143, 0.65);
  background: linear-gradient(180deg, rgba(109, 227, 143, 0.13), rgba(17, 24, 32, 0.86));
}

.popular {
  margin-bottom: 0.8rem;
}

.price {
  margin-bottom: 0.1rem;
  font-size: 2.5rem;
  font-weight: 950;
}

.period {
  color: var(--gold);
  font-weight: 900;
}

ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.8rem 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .flow,
  .apply {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .tool-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
