:root {
  --header-h: 72px;
  --max: 1280px;
  --black: #050507;
  --surface: #0d0f14;
  --surface-2: #141720;
  --paper: #f3f3f0;
  --white: #ffffff;
  --ink: #090a0d;
  --muted: #a6a8b0;
  --muted-dark: #646771;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(9, 10, 13, 0.16);
  --accent: #6199f6;
  --accent-hover: #85b0f8;
  --accent-active: #4c82dc;
  --radius: 8px;
  --control-radius: 9px;
  --control-h: 48px;
  --control-px: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  padding-top: var(--header-h);
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

section {
  scroll-margin-top: var(--header-h);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.responsive-media,
.responsive-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.responsive-media img {
  object-fit: cover;
}

.nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(5, 5, 7, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand,
.footer-logo {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.nav-actions {
  display: grid;
  grid-template-columns: repeat(2, 144px);
  gap: 10px;
}

.btn,
.hero-register,
.conversion-btn,
.footer-cta {
  height: var(--control-h);
  min-height: var(--control-h);
  border: 0;
  border-radius: var(--control-radius);
  padding: 0 var(--control-px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #06080c;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.btn svg,
.source-link svg,
.showcase-card em svg,
.final .btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover,
.hero-register:hover,
.conversion-btn:hover,
.footer-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 34px rgba(97, 153, 246, 0.22);
  transform: translateY(-2px);
}

.btn:active,
.hero-register:active,
.conversion-btn:active,
.footer-cta:active {
  background: var(--accent-active);
  transform: translateY(0) scale(0.98);
}

.btn:disabled,
.btn[aria-disabled="true"],
.hero-register[aria-disabled="true"],
.conversion-btn[aria-disabled="true"],
.footer-cta[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
  transform: none;
}

.btn[aria-busy="true"]::before,
.hero-register[aria-busy="true"]::before,
.conversion-btn[aria-busy="true"]::before,
.footer-cta[aria-busy="true"]::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: button-spin 650ms linear infinite;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

.nav-actions .btn {
  width: 144px;
  padding: 0 12px;
}

.nav-actions .login {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-actions .login:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero > .responsive-media,
.final > .responsive-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media {
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 3, 6, 0.96) 0%, rgba(2, 3, 6, 0.78) 42%, rgba(2, 3, 6, 0.28) 75%, rgba(2, 3, 6, 0.58) 100%), linear-gradient(180deg, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 0.72));
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: max(76px, calc(var(--header-h) + 28px)) 0 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  color: #91baff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.conversion-copy h2,
.benefits h2,
.faq h2,
.final h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 620;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: 68px;
  line-height: 1;
}

.hero-inner > p {
  max-width: 660px;
  margin: 24px 0;
  color: #d6d7dc;
  font-size: 19px;
  line-height: 1.52;
}

.prompt {
  width: min(620px, 100%);
  height: 58px;
  padding: 5px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--control-radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
}

.prompt input {
  min-width: 0;
  width: 100%;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.prompt input::placeholder {
  color: #737680;
  opacity: 1;
}

.prompt button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.prompt button:hover {
  background: var(--accent-hover);
  transform: translateX(2px);
}

.prompt button svg {
  width: 22px;
  height: 22px;
}

.hero-register {
  width: 220px;
  margin-top: 14px;
}

.hero-links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-links a {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #d7d8dd;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-links a:hover {
  border-color: var(--accent);
  background: rgba(97, 153, 246, 0.12);
  color: var(--white);
}

.showcase {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
}

.section-heading {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.section-heading h2 {
  max-width: 700px;
  font-size: 54px;
  line-height: 1.04;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.showcase-card.large {
  grid-row: 1 / 3;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 5, 8, 0.94) 100%);
  pointer-events: none;
}

.showcase-card img {
  transition: transform 500ms var(--ease);
}

.showcase-card:hover img {
  transform: scale(1.035);
}

.showcase-card > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 20px;
  align-items: end;
}

.showcase-card b {
  font-size: 24px;
  line-height: 1.12;
}

.showcase-card small {
  grid-column: 1;
  color: #c8c9cf;
  font-size: 14px;
  line-height: 1.4;
}

.showcase-card em {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: var(--control-h);
  padding: 0 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.conversion-moment {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.process-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 7, 0.88) 100%);
}

.process-visual > span {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.process-visual b {
  font-size: 25px;
}

.process-visual small {
  color: #d0d1d5;
  font-size: 15px;
  line-height: 1.4;
}

.conversion-copy h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: 50px;
  line-height: 1.04;
}

.conversion-copy > p {
  max-width: 620px;
  margin: 22px 0 26px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.55;
}

.conversion-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.conversion-copy li {
  min-height: 88px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.conversion-copy li > span {
  color: #3f70bd;
  font-size: 13px;
  font-weight: 800;
}

.conversion-copy li div {
  display: grid;
  gap: 7px;
}

.conversion-copy li b {
  font-size: 17px;
}

.conversion-copy li small {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.45;
}

.process-example {
  margin: 22px 0 18px;
  padding: 16px;
  border-left: 2px solid #3f70bd;
  display: grid;
  gap: 9px;
  background: #e7ebf2;
}

.process-example span {
  color: #315f9f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-example p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.conversion-btn {
  width: 180px;
}

.benefits {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  background: var(--black);
}

.benefits-copy h2 {
  max-width: 680px;
  margin-top: 16px;
  font-size: 52px;
  line-height: 1.04;
}

.benefits-copy > p {
  max-width: 680px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 10px;
}

.benefit-grid b {
  font-size: 16px;
}

.benefit-grid small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.intent-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
}

.intent-panel h3 {
  max-width: 520px;
  margin: 16px 0 0;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: 38px;
  line-height: 1.06;
  font-weight: 560;
}

.intent-panel > p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.intent-example {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  display: grid;
  gap: 9px;
  background: #090a0e;
}

.intent-example b {
  font-size: 14px;
}

.intent-example p {
  margin: 0;
  color: #ced0d7;
  font-size: 14px;
  line-height: 1.5;
}

.source-link {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(97, 153, 246, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.source-link:hover {
  background: var(--accent);
  color: var(--ink);
}

.related-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-links a {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  color: #d3d4da;
  font-size: 12px;
  font-weight: 700;
}

.related-links a:hover {
  border-color: var(--accent);
  color: var(--white);
}

.faq {
  padding: 96px 24px;
  background: var(--paper);
  color: var(--ink);
}

/* The global eyebrow is tuned for dark media. FAQ sits on paper. */
.faq .eyebrow {
  color: #2e63b0;
}

.faq-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq h2 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.04;
}

.faq-lead {
  margin: 16px 0 32px;
  color: var(--muted-dark);
  font-size: 16px;
}

.faq-grid {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 19px 0;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 750;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  transition: transform 180ms var(--ease);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 820px;
  margin: 0;
  padding: 0 52px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.final {
  position: relative;
  min-height: 500px;
  padding: 80px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.final::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 4, 7, 0.76);
}

.final-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final h2 {
  margin-top: 16px;
  font-size: 54px;
  line-height: 1.02;
}

.final p {
  margin: 20px 0 26px;
  color: #d0d1d6;
  font-size: 17px;
}

.final .btn {
  min-width: 220px;
}

footer {
  padding: 40px max(24px, calc((100vw - var(--max)) / 2)) 24px;
  background: #07080b;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-main {
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(130px, 0.7fr) minmax(150px, 0.8fr) 220px;
  grid-template-areas: "identity scenarios sections cta";
  gap: 32px;
  align-items: start;
}

.footer-identity { grid-area: identity; }
.footer-main > .footer-col:nth-child(2) { grid-area: scenarios; }
.footer-main > .footer-col:nth-child(3) { grid-area: sections; }

.footer-identity p {
  max-width: 290px;
  margin: 14px 0 0;
  color: #b9bbc3;
  font-size: 14px;
  line-height: 1.45;
}

.footer-cta {
  grid-area: cta;
  width: 220px;
  align-self: start;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col > b {
  color: #92baff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-col nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.footer-col a {
  color: #c6c7cd;
  font-size: 13px;
  font-weight: 650;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  font-size: 11px;
  line-height: 1.5;
}

.pbn-links {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.pbn-links > b {
  display: block;
  margin-bottom: 12px;
  color: #92baff;
  font-size: 11px;
  text-transform: uppercase;
}

.pbn-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.pbn-links a {
  color: #c6c7cd;
  font-size: 13px;
  font-weight: 650;
}

.pbn-links a:hover { color: var(--white); }

.error-page {
  min-height: 100vh;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--black);
}

.error-page main {
  padding: 24px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  font-size: 48px;
}

.error-page p {
  color: var(--muted);
}

.btn:focus-visible,
.hero-register:focus-visible,
.footer-cta:focus-visible,
.prompt button:focus-visible,
.prompt input:focus-visible,
.showcase-card:focus-visible,
.faq-question:focus-visible,
.source-link:focus-visible,
.related-links a:focus-visible,
.hero-links a:focus-visible,
.footer-col a:focus-visible {
  outline: 2px solid #b8d2ff;
  outline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal.is-visible {
    animation: reveal-in 480ms var(--ease) both;
  }

  @keyframes reveal-in {
    from {
      opacity: 0.72;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1280px) {
  .hero h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .benefits-copy h2 {
    font-size: 48px;
  }

  .conversion-copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 52px;
  }

  .showcase,
  .conversion-moment,
  .benefits {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading h2,
  .benefits-copy h2 {
    font-size: 42px;
  }

  .conversion-moment,
  .benefits {
    gap: 40px;
  }

  .conversion-copy h2 {
    font-size: 40px;
  }

  .process-visual {
    min-height: 500px;
  }

  .intent-panel {
    padding: 26px;
  }

  .intent-panel h3 {
    font-size: 34px;
  }

}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "identity cta"
      "scenarios sections";
    gap: 28px 24px;
  }

  .footer-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --control-h: 42px;
    --control-px: 16px;
  }

  .nav {
    padding: 0 16px;
  }

  .brand {
    font-size: 27px;
  }

  .nav-actions {
    grid-template-columns: repeat(2, 122px);
    gap: 8px;
  }

  .nav-actions .btn {
    width: 122px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 54px 0 44px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-inner > p {
    max-width: 590px;
    font-size: 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading h2,
  .benefits-copy h2,
  .faq h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 250px 250px;
  }

  .showcase-card.large {
    grid-row: auto;
  }

  .conversion-moment,
  .benefits {
    grid-template-columns: 1fr;
  }

  .process-visual {
    min-height: 420px;
  }

  .conversion-copy h2 {
    font-size: 36px;
  }

  .benefits {
    gap: 52px;
  }

  .final h2 {
    font-size: 42px;
  }

}

@media (max-width: 430px) {
  :root {
    --control-h: 38px;
    --control-px: 14px;
  }

  .nav {
    padding: 0 10px;
    gap: 8px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-actions {
    grid-template-columns: repeat(2, 96px);
    gap: 6px;
  }

  .nav-actions .btn {
    width: 96px;
    padding: 0 6px;
    font-size: 10px;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding: 42px 0 28px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: 34px;
    line-height: 1.06;
  }

  .hero-inner > p {
    margin: 16px 0 18px;
    font-size: 15px;
    line-height: 1.46;
  }

  .prompt {
    height: 50px;
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .prompt input {
    padding: 0 10px;
    font-size: 13px;
  }

  .prompt button {
    width: 40px;
    height: 40px;
  }

  .hero-register {
    width: 100%;
  }

  .hero-links {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-links a {
    min-height: 30px;
    padding: 0 9px;
    font-size: 10px;
  }

  .showcase,
  .conversion-moment,
  .benefits,
  .faq {
    padding: 54px 14px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .conversion-copy h2,
  .benefits-copy h2,
  .faq h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .section-heading p,
  .conversion-copy > p,
  .benefits-copy > p {
    font-size: 15px;
  }

  .showcase-grid {
    grid-template-rows: 290px 230px 230px;
    gap: 10px;
  }

  .showcase-card > span {
    left: 16px;
    right: 16px;
    bottom: 15px;
    gap: 5px 10px;
  }

  .showcase-card b {
    font-size: 21px;
  }

  .showcase-card small {
    font-size: 12px;
  }

  .showcase-card em {
    min-height: var(--control-h);
    padding: 0 11px;
    font-size: 10px;
  }

  .process-visual {
    min-height: 300px;
  }

  .process-visual > span {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .process-visual b {
    font-size: 21px;
  }

  .process-visual small {
    font-size: 13px;
  }

  .conversion-moment,
  .benefits {
    gap: 34px;
  }

  .conversion-copy li {
    min-height: 82px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .conversion-copy li b {
    font-size: 16px;
  }

  .conversion-copy li small {
    font-size: 13px;
  }

  .conversion-btn {
    width: 100%;
  }

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

  .benefit-grid article {
    min-height: 100px;
  }

  .intent-panel {
    padding: 20px;
  }

  .intent-panel h3 {
    font-size: 27px;
  }

  .source-link,
  .related-links a {
    width: 100%;
    justify-content: space-between;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    padding-right: 0;
    font-size: 14px;
  }

  .final {
    min-height: 410px;
    padding: 58px 16px;
  }

  .final h2 {
    font-size: 34px;
  }

  .final p {
    font-size: 14px;
  }

  .final .btn {
    width: 100%;
  }

  footer {
    padding: 46px 16px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "identity"
      "scenarios"
      "sections"
      "cta";
  }

  .footer-main {
    gap: 28px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .nav-actions {
    grid-template-columns: repeat(2, 94px);
  }

  .nav-actions .btn {
    width: 94px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 19px;
  }

  .nav-actions {
    grid-template-columns: repeat(2, 90px);
  }

  .nav-actions .btn {
    width: 90px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .footer-col nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
