:root {
  color-scheme: light;
  --ink: #0b1218;
  --ink-soft: #1b2a30;
  --muted: #64737a;
  --line: #dce6e5;
  --paper: #f6f8f2;
  --white: #ffffff;
  --cyan: #13c8a9;
  --green: #75d94a;
  --yellow: #f7c948;
  --coral: #ff6b4a;
  --blue: #1464f4;
  --shadow: 0 24px 70px rgba(11, 18, 24, 0.18);
  --soft-shadow: 0 18px 46px rgba(11, 18, 24, 0.08);
  --wrap: 1180px;
  --section: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f6f8f2 0%, #edf6f3 48%, #f9faf5 100%);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), var(--wrap));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 14px;
  background: rgba(246, 248, 242, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 14px 50px rgba(11, 18, 24, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  top: 8px;
  background: rgba(246, 248, 242, 0.95);
  box-shadow: 0 18px 50px rgba(11, 18, 24, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink-soft);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(11, 18, 24, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav .nav-action {
  color: var(--ink);
  background: var(--yellow);
}

.site-nav .nav-action:hover {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/screenshot-2.webp");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.06) contrast(0.96);
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 24, 0.98) 0%, rgba(11, 18, 24, 0.88) 42%, rgba(11, 18, 24, 0.44) 100%),
    linear-gradient(180deg, rgba(11, 18, 24, 0.08) 0%, rgba(11, 18, 24, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
  padding: 136px 0 74px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 6.8rem;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.button-primary {
  background: var(--yellow);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.button-primary:hover {
  background: #ffe173;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.hero-proof div {
  min-height: 90px;
  padding: 18px;
  background: rgba(11, 18, 24, 0.48);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero-proof span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-strip div {
  min-height: 118px;
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-strip div:nth-child(2) {
  background: #17362f;
}

.signal-strip div:nth-child(3) {
  background: #3a3017;
}

.signal-strip div:nth-child(4) {
  background: #3a211d;
}

.signal-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  max-width: 240px;
  margin-top: 8px;
  font-size: 1.08rem;
}

.section {
  scroll-margin-top: 96px;
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
  padding: var(--section) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.feature-grid article:nth-child(2) {
  background: #f1fbf7;
}

.feature-grid article:nth-child(3) {
  background: #fff7e6;
}

.feature-grid span,
.steps span,
.trust-links span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-grid p {
  margin: 18px 0 0;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.workflow-copy p:last-child {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  position: relative;
  padding: 24px 24px 24px 86px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(11, 18, 24, 0.07);
}

.steps article::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 28px;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border: 8px solid #fff2b8;
  border-radius: 50%;
}

.steps strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.25rem;
}

.steps p {
  margin: 8px 0 0;
}

.showcase {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--wrap)) / 2));
  padding-left: max(20px, calc((100% - var(--wrap)) / 2));
  background: #10181d;
}

.showcase h2 {
  color: var(--white);
}

.showcase .section-kicker {
  color: var(--yellow);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shot-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.shot-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
}

.shot-grid figcaption {
  min-height: 70px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: start;
}

.trust > div > p {
  max-width: 590px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.trust-links {
  display: grid;
  gap: 12px;
}

.trust-links a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 18, 24, 0.06);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.trust-links a:hover {
  border-color: rgba(20, 100, 244, 0.34);
  box-shadow: 0 22px 58px rgba(11, 18, 24, 0.1);
  transform: translateY(-2px);
}

.trust-links strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  width: min(calc(100% - 40px), var(--wrap));
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 200, 169, 0.2), transparent 34%),
    #111b21;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.support-band h2 {
  color: var(--white);
  font-size: 3rem;
}

.support-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
  padding: 58px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
}

.inner-page {
  background: var(--paper);
}

.page-hero {
  width: min(calc(100% - 40px), var(--wrap));
  min-height: 470px;
  margin: 0 auto;
  padding: 146px 0 68px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: 5.2rem;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.policy-main,
.support-main {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 132px 0 80px;
}

.policy-hero,
.support-hero {
  margin-bottom: 34px;
}

.policy-hero h1,
.support-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.6rem;
  line-height: 0.94;
  font-weight: 950;
}

.policy-hero p:not(.eyebrow),
.support-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
}

.policy-content,
.support-content {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.policy-content h2,
.support-content h2 {
  margin: 34px 0 12px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.policy-content h2:first-child,
.support-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.support-content p {
  margin: 0 0 16px;
}

.policy-content ul,
.support-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.support-grid article {
  padding: 22px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.support-grid h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(246, 248, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .nav-toggle {
    display: grid;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .signal-strip,
  .feature-grid,
  .workflow,
  .shot-grid,
  .trust,
  .support-band,
  .site-footer,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  h2 {
    font-size: 3rem;
  }

  .shot-grid img {
    aspect-ratio: 16 / 9;
  }

  .support-band {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --section: 68px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
  }

  .brand {
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-inner {
    width: min(calc(100% - 28px), var(--wrap));
    padding: 116px 0 34px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy > p {
    max-width: 380px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .signal-strip div {
    min-height: 96px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .support-band,
  .site-footer,
  .page-hero,
  .policy-main,
  .support-main {
    width: min(calc(100% - 28px), var(--wrap));
  }

  h2,
  .support-band h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.24rem;
  }

  .feature-grid article {
    min-height: 240px;
    padding: 22px;
  }

  .steps article {
    padding: 22px 20px 22px 72px;
  }

  .steps article::before {
    left: 22px;
  }

  .support-band {
    padding: 28px;
  }

  .page-hero {
    min-height: 440px;
    padding-top: 118px;
  }

  .page-hero h1,
  .policy-hero h1,
  .support-hero h1 {
    font-size: 3.15rem;
  }

  .policy-main,
  .support-main {
    padding-top: 118px;
  }

  .policy-content,
  .support-content {
    padding: 24px;
  }
}
