:root {
  --ink: #090c0f;
  --ink-2: #11161b;
  --panel: #161d23;
  --paper: #f2f5ef;
  --paper-2: #dfe5dc;
  --white: #ffffff;
  --muted: #aeb8b0;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #c8ff32;
  --blue: #4ab8ff;
  --orange: #ff8742;
  --pink: #ff5a91;
  --shell: min(1180px, calc(100% - 40px));
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 7, 9, 0.88), rgba(4, 7, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand b {
  color: var(--lime);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar nav a {
  color: #e8ece8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid var(--lime);
  border-radius: 4px;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ddff80;
}

.button--compact {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.button--outline {
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  background: var(--lime);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: end;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.98) 0%, rgba(4, 7, 9, 0.9) 32%, rgba(4, 7, 9, 0.35) 67%, rgba(4, 7, 9, 0.14) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(9, 12, 15, 0) 35%);
}

.hero__content {
  padding-block: 170px 86px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 44px;
  height: 3px;
  background: var(--lime);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: #eef2ed;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 0;
  margin: 30px 0 0;
  color: #d9dfda;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero__proof li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--lime);
}

.scoreboard {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
}

.scoreboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.scoreboard article {
  position: relative;
  min-height: 160px;
  padding: 30px 36px;
  border-right: 1px solid var(--line);
}

.scoreboard article:last-child {
  border-right: 0;
}

.scoreboard article > span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
}

.scoreboard b {
  font-size: 1.25rem;
}

.scoreboard p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding-block: 110px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.section__intro {
  position: sticky;
  top: 40px;
}

.section h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.3vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section__intro > p:last-child,
.section__heading > p:last-child,
.channels__title > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.journey {
  counter-reset: item;
  border-top: 1px solid var(--line);
}

.journey article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 3px 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.journey article > span {
  grid-row: span 2;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey h3 {
  margin-bottom: 3px;
  font-size: 1.5rem;
}

.journey p {
  margin-bottom: 0;
  color: var(--muted);
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.section--light .kicker {
  color: #3d6500;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 58px;
}

.section--light .section__heading > p:last-child {
  color: #526057;
}

.program {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #b9c2b9;
  background: #f9fbf7;
}

.program__day {
  min-height: 340px;
  padding: 24px 20px;
  border-right: 1px solid #b9c2b9;
}

.program__day:last-child {
  border-right: 0;
}

.program__day > b {
  display: block;
  margin-bottom: 50px;
  color: #505c53;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tag--blue { background: #00679f; }
.tag--green { background: #3e6d00; }
.tag--orange { background: #9e3d00; }
.tag--pink { background: #98234e; }
.tag--white { background: #353d38; }

.program h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.program p {
  margin: 0;
  color: #4b554f;
  line-height: 1.5;
}

.channels {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.channels__title {
  align-self: center;
}

.channels__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.channels__cards article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.channels__cards article > span {
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.channels__cards h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.channels__cards p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-band {
  padding-block: 70px;
  background: var(--lime);
  color: var(--ink);
}

.privacy-band__grid {
  display: grid;
  grid-template-columns: 90px 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.privacy-band .kicker {
  color: #334d00;
}

.privacy-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-band__number {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.privacy-band__grid > p:last-child {
  margin: 0;
  font-weight: 620;
}

.section__heading--plans {
  margin-inline: auto;
  text-align: center;
}

.section__heading--plans .kicker {
  justify-content: center;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.plan--featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), 0 28px 70px rgba(157, 255, 0, 0.1);
}

.plan__badge {
  position: absolute;
  inset: 0 0 auto;
  padding: 8px 10px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.plan--featured .plan__top {
  padding-top: 26px;
}

.plan__top {
  min-height: 76px;
}

.plan__top p {
  margin-bottom: 4px;
  color: var(--lime);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.plan__top span {
  color: var(--muted);
}

.price {
  display: flex;
  align-items: end;
  gap: 12px;
  padding-block: 18px;
  margin-bottom: 0;
  border-block: 1px solid var(--line);
}

.price strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.86;
}

.price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.plan__channels {
  min-height: 62px;
  margin: 18px 0;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 750;
}

.plan ul {
  flex: 1;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.plan li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d6ddd7;
  line-height: 1.45;
}

.plan li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.price-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

.section--faq {
  background: var(--paper-2);
  color: var(--ink);
}

.section--faq .kicker {
  color: #3d6500;
}

.section--faq .text-link {
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid #aeb8b0;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid #aeb8b0;
}

.faq-list summary {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 1.7rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #455047;
}

.final-cta {
  padding-block: 110px;
  background:
    linear-gradient(125deg, rgba(74, 184, 255, 0.1), transparent 48%),
    var(--ink-2);
}

.final-cta__inner {
  max-width: 950px;
  text-align: center;
}

.final-cta .kicker {
  justify-content: center;
}

.final-cta p:not(.kicker) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.footer {
  padding: 65px 0 90px;
  border-top: 1px solid var(--line);
  background: #06080a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}

.footer__grid > div p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}

.footer nav b {
  margin-bottom: 5px;
  color: var(--lime);
}

.footer nav a,
.footer__bottom,
.footer__bottom a {
  color: var(--muted);
  text-underline-offset: 4px;
}

.footer nav a:hover,
.footer__bottom a:hover {
  color: var(--white);
}

.footer__bottom {
  width: var(--shell);
  margin: 55px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .split,
  .channels,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section__intro {
    position: static;
  }

  .program {
    grid-template-columns: repeat(2, 1fr);
  }

  .program__day {
    min-height: 280px;
    border-bottom: 1px solid #b9c2b9;
  }

  .program__day:nth-child(even) {
    border-right: 0;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .plan__channels {
    min-height: auto;
  }

  .privacy-band__grid {
    grid-template-columns: 70px 1fr;
  }

  .privacy-band__grid > p:last-child {
    grid-column: 2;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 70px;
  }

  .topbar {
    min-height: 66px;
    padding-inline: 14px;
  }

  .topbar .button {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 690px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 9, 0.96), rgba(4, 7, 9, 0.43)),
      linear-gradient(0deg, var(--ink) 0%, transparent 40%);
  }

  .hero__content {
    padding-block: 120px 55px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scoreboard__grid {
    grid-template-columns: 1fr;
  }

  .scoreboard article {
    min-height: 0;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scoreboard article:last-child {
    border-bottom: 0;
  }

  .section,
  .final-cta {
    padding-block: 76px;
  }

  .journey article {
    grid-template-columns: 82px 1fr;
  }

  .program {
    grid-template-columns: 1fr;
  }

  .program__day,
  .program__day:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .program__day > b {
    margin-bottom: 25px;
  }

  .program h3 {
    min-height: 0;
  }

  .channels__cards {
    grid-template-columns: 1fr;
  }

  .channels__cards article {
    min-height: 220px;
  }

  .privacy-band__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-band__number {
    font-size: 3.5rem;
  }

  .privacy-band__grid > p:last-child {
    grid-column: auto;
  }

  .plan {
    padding: 26px 20px;
  }

  .price strong {
    font-size: 4.3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 4px;
    background: var(--lime);
    color: var(--ink);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
