:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-deep: #090b0f;
  --panel: #181d23;
  --panel-soft: #14181e;
  --line: #273241;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a8b0bc;
  --muted-2: #697385;
  --accent: #ec9d34;
  --accent-strong: #f4a12c;
  --emerald: #10b981;
  --emerald-strong: #34d399;
  --ink-on-accent: #101010;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --shell: min(1140px, calc(100vw - 40px));
  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;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 12%, rgba(236, 157, 52, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-weight: 500;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 11, 15, 0.88);
  border-bottom-color: var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(236, 157, 52, 0.55);
  background: linear-gradient(145deg, rgba(236, 157, 52, 0.98), rgba(236, 157, 52, 0.24));
  color: #0a0b0d;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(236, 157, 52, 0.18);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  background: #222a35;
  border: 1px solid #354254;
  color: var(--text);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: #171c22;
  color: var(--text);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  padding-block: 100px 36px;
  isolation: isolate;
}

.platform-hero {
  min-height: 92svh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(120deg, rgba(236, 157, 52, 0.16), transparent 38%),
    linear-gradient(180deg, #1a1e27 0%, #0f1115 78%, #090b0f 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.72) 45%, rgba(15, 17, 21, 0.9) 100%),
    linear-gradient(180deg, rgba(15, 17, 21, 0.1), #0f1115 96%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
}

.hero-grid {
  display: grid;
  width: min(1320px, calc(100vw - clamp(40px, 5vw, 72px)));
  min-height: calc(92svh - 136px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.hero-copy,
.hero-console,
.device-stage,
.generator-card,
.before-after,
.pricing-card,
.sample-frame,
.capability-card,
.trust-section article {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-block: 32px;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-copy p {
  max-width: 585px;
  margin: 28px 0 0;
  color: #d8dde5;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

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

.platform-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 585px;
  margin-top: 26px;
}

.platform-points div {
  min-width: 0;
  padding: 14px;
  background: rgba(38, 44, 56, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.platform-points strong,
.platform-points span {
  display: block;
}

.platform-points strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.platform-points span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, var(--emerald-strong), var(--emerald));
  color: #07120e;
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(16, 185, 129, 0.34);
}

.button-secondary {
  background: rgba(24, 29, 35, 0.76);
  border-color: #303b4c;
  color: #eff3f7;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4px;
}

.wide-button {
  width: 100%;
}

.device-stage {
  position: relative;
  z-index: 1;
  container-type: inline-size;
  justify-self: end;
  width: clamp(430px, 45vw, 720px);
  max-width: 100%;
  margin-inline: 0;
  background: #ffffff;
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.34));
}

.device-template {
  width: 100%;
  height: auto;
}

.screen-inset {
  position: absolute;
  overflow: hidden;
  background: #1a1e27;
  color: #f3f4f6;
  transform: translateZ(0);
}

.laptop-inset {
  left: 8.4%;
  top: 23.25%;
  width: 44.35%;
  height: 44.2%;
  border-radius: 0.8%;
}

.phone-inset {
  left: 58.4%;
  top: 39.25%;
  width: 10.55%;
  height: 35.4%;
  border-radius: 8% / 4%;
}

.phone-inset::before {
  content: "";
  position: absolute;
  top: 4.5%;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 5.4%;
  background: #05070a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.tablet-inset {
  left: 74.78%;
  top: 29%;
  width: 19.5%;
  height: 44.8%;
  border-radius: 2.6%;
}

.mock-screen {
  display: grid;
  height: 100%;
  min-height: 0;
  align-content: start;
  gap: 0.72em;
  padding: 1.1em;
  background:
    radial-gradient(circle at 80% 8%, rgba(236, 157, 52, 0.18), transparent 26%),
    linear-gradient(180deg, #262c38 0%, #171b23 100%);
  font-size: 7px;
  font-size: clamp(4.5px, 1.25cqw, 9px);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 0.55em;
  color: #f3f4f6;
  font-size: 1em;
  font-weight: 900;
}

.mock-topbar strong {
  margin-right: auto;
}

.mock-topbar span {
  padding: 0.48em 0.65em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #d6dce6;
}

.ui-label {
  display: block;
  color: var(--accent);
  font-size: 0.9em;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-screen h3 {
  color: #ffffff;
  font-size: 2.35em;
  font-weight: 900;
  line-height: 1;
}

.mock-screen p,
.mock-screen li {
  color: #c9d1dd;
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.36;
}

.mock-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55em;
}

.mock-checklist span,
.mock-segment-row article,
.mock-product-card,
.mock-poll {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 8px;
}

.mock-checklist span {
  padding: 0.72em 0.52em;
  color: #dffcf2;
  font-size: 0.9em;
  font-weight: 900;
  text-align: center;
}

.mock-segment-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6em;
}

.mock-segment-row article {
  min-width: 0;
  padding: 0.78em;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.mock-segment-row small {
  display: block;
  color: var(--accent);
  font-size: 0.88em;
  font-weight: 900;
}

.mock-segment-row strong {
  display: block;
  margin-top: 0.4em;
  color: #f3f4f6;
  font-size: 1.16em;
  font-weight: 900;
  line-height: 1.15;
}

.phone-app-screen {
  gap: 0.75em;
  padding: 2.9em 1.25em 1em;
  font-size: 5px;
  font-size: clamp(3.5px, 0.85cqw, 6px);
}

.phone-app-screen h3 {
  font-size: 2.35em;
  line-height: 0.98;
}

.phone-app-screen ul,
.mock-points {
  display: grid;
  gap: 0.45em;
  margin: 0;
  padding-left: 1.35em;
}

.mock-poll {
  padding: 0.8em;
  background: rgba(236, 157, 52, 0.12);
  border: 1px solid rgba(236, 157, 52, 0.28);
  color: #f6d7ad;
  font-size: 1.02em;
  font-weight: 800;
  line-height: 1.35;
}

.mock-cta {
  min-height: 2.75em;
  padding-inline: 1.1em;
  border: 0;
  background: linear-gradient(180deg, var(--emerald-strong), var(--emerald));
  color: #07120e;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-cta.compact {
  width: 100%;
}

.tablet-app-screen {
  padding: 1.25em;
  font-size: 6px;
  font-size: clamp(4px, 1cqw, 7px);
}

.tablet-app-screen h3 {
  font-size: 2.6em;
}

.mock-product-card {
  padding: 1em;
  background: rgba(236, 157, 52, 0.12);
  border-color: rgba(236, 157, 52, 0.34);
}

.mock-product-card span,
.mock-product-card strong {
  display: block;
}

.mock-product-card span {
  color: var(--accent);
  font-size: 0.9em;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-product-card strong {
  margin-top: 0.35em;
  color: #fff;
  font-size: 1.55em;
  font-weight: 900;
  line-height: 1.1;
}

.hero-console {
  align-self: center;
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.console-actions {
  display: inline-flex;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #354254;
  background: #202733;
  color: #eaf0f7;
  border-radius: 8px;
}

.icon-button svg,
.capability-icon svg,
.small-icon svg,
.mic-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.generator-card {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(24, 29, 35, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.generator-card label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #aeb7c4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.generator-card input,
.generator-card textarea {
  width: 100%;
  border: 2px solid #243146;
  background: #111319;
  color: var(--text);
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.generator-card input::placeholder,
.generator-card textarea::placeholder {
  color: #596376;
}

.generator-card textarea {
  min-height: 150px;
  resize: vertical;
  padding: 22px 64px 22px 20px;
}

.generator-card input {
  min-height: 58px;
  padding: 0 18px;
  margin-bottom: 24px;
}

.generator-card input:focus,
.generator-card textarea:focus {
  border-color: rgba(236, 157, 52, 0.74);
  box-shadow: 0 0 0 4px rgba(236, 157, 52, 0.12);
}

.textarea-wrap {
  position: relative;
  margin-bottom: 28px;
}

.mic-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 0;
  background: #253043;
  color: #bdc6d4;
  border-radius: 50%;
}

.small-icon {
  color: var(--accent);
}

.section-heading {
  display: grid;
  max-width: 780px;
  gap: 16px;
}

.section-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3,
p {
  margin: 0;
}

.section-heading p,
.sample-copy p,
.checkout-grid > div > p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-block: 40px 80px;
}

.before-after {
  background: #151a20;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.proof-tabs button {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-tabs button.active {
  background: #202733;
  color: var(--text);
}

.proof-panels {
  position: relative;
  min-height: 260px;
}

.proof-panel {
  display: none;
  padding: 28px;
}

.proof-panel.active {
  display: block;
}

.proof-panel h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

.proof-panel p,
.proof-panel li {
  color: #c8d0dc;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.proof-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.sample-section {
  padding-block: 96px;
  background: #ffffff;
  color: #111319;
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.sample-copy h2 {
  color: #111319;
  margin-block: 14px 18px;
  font-size: clamp(38px, 5.5vw, 72px);
}

.sample-copy p {
  color: #465061;
}

.sample-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  background: #0f1115;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(17, 19, 25, 0.24);
}

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

.mobile-showcase {
  overflow: hidden;
  padding-block: 96px;
  background:
    radial-gradient(circle at 18% 0%, rgba(236, 157, 52, 0.1), transparent 28rem),
    #0b0d12;
}

.mobile-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  gap: 28px;
  align-items: end;
}

.mobile-showcase-head h2 {
  max-width: 940px;
  margin-block: 14px 18px;
}

.mobile-showcase-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.theme-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  background: #161b22;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.theme-tabs button {
  min-width: 82px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-tabs button.active {
  background: var(--accent);
  color: var(--ink-on-accent);
}

.screen-gallery {
  margin-top: 46px;
  padding: clamp(12px, 2vw, 18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
    #11161c;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.screen-strip {
  display: none;
  gap: 18px;
  max-height: min(780px, 72svh);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 4px 8px 18px 4px;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-color: rgba(236, 157, 52, 0.72) rgba(255, 255, 255, 0.08);
}

.screen-strip.active {
  display: grid;
  grid-template-columns: 1fr;
}

.phone-shot {
  scroll-snap-align: start;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 10px;
  background: #151a20;
  border: 1px solid #253045;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.phone-shot.light-shot {
  background: #f7f8fa;
  border-color: #dde2ea;
  box-shadow: 0 28px 72px rgba(12, 19, 32, 0.16);
}

.phone-shot img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  border-radius: 6px;
}

.phone-shot figcaption {
  padding: 12px 2px 2px;
  color: #c8d0dc;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-shot.light-shot figcaption {
  color: #465061;
}

.flow-section {
  padding-block: 96px;
}

.screen-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.flow-card {
  position: relative;
  min-width: 0;
  min-height: 410px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.flow-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(236, 157, 52, 0));
}

.flow-card-head {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.flow-card-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.flow-card h3 {
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 0.98;
}

.flow-card p {
  color: #c8d0dc;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.58;
}

.component-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.component-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

.component-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.action-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  background: #222a35;
  border: 1px solid #354254;
  color: #dbe3ed;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.checkout-section {
  padding-block: 96px;
  background:
    linear-gradient(180deg, rgba(236, 157, 52, 0.08), transparent),
    #11141a;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 430px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.checkout-grid h2 {
  margin-block: 14px 18px;
}

.pricing-card {
  padding: 28px;
  background: #f7f8fa;
  color: #111319;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.pricing-head h3 {
  font-size: 25px;
  font-weight: 900;
}

.pricing-head p,
.checkout-note {
  margin-top: 9px;
  color: #5a6473;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-block: 26px 22px;
}

.price span {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: #5a6473;
  font-size: 16px;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  color: #2a3240;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.checkout-note {
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-block: 72px;
}

.trust-section article {
  padding: 24px;
  background: rgba(24, 29, 35, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
}

.trust-section p,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
}

.trust-section a,
.legal-page a {
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  padding-block: 38px;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.legal-page {
  min-height: 100svh;
  padding-block: 118px 64px;
}

.legal-shell {
  width: min(850px, calc(100vw - 40px));
  margin-inline: auto;
}

.legal-page h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-page .updated {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 26px;
  margin-top: 42px;
}

.legal-content section {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: #c6ceda;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.86fr);
    gap: clamp(24px, 3vw, 38px);
  }

  .hero h1 {
    font-size: clamp(56px, 6.8vw, 82px);
  }

  .hero-copy p {
    font-size: 18px;
  }

  .device-stage {
    width: clamp(380px, 42vw, 560px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-active .nav-links {
    position: fixed;
    inset: 71px 18px auto;
    display: grid;
    padding: 18px;
    background: #151a20;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-active .nav-links a {
    padding: 14px;
    font-size: 16px;
  }

  .hero-grid,
  .proof-section,
  .sample-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-grid {
    width: var(--shell);
    min-height: 0;
    gap: 34px;
  }

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

  .device-stage {
    justify-self: center;
    width: min(780px, 100%);
  }

  .console-topline {
    justify-content: space-between;
  }

  .screen-flow-grid,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .mobile-showcase-head {
    grid-template-columns: 1fr;
  }

  .theme-tabs {
    width: max-content;
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 64px);
    line-height: 0.9;
  }

  .hero-copy p {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  .platform-points {
    grid-template-columns: 1fr;
  }

  .device-stage {
    width: min(520px, 100%);
  }

  .mock-screen {
    font-size: clamp(3.4px, 1.15cqw, 5.6px);
  }

  .phone-app-screen {
    font-size: clamp(2.8px, 0.78cqw, 4px);
  }

  .tablet-app-screen {
    font-size: clamp(3px, 0.92cqw, 4.5px);
  }

  .generator-card {
    padding: 18px;
  }

  .console-topline {
    display: none;
  }

  .generator-card textarea {
    min-height: 132px;
    padding-inline: 16px 58px;
  }

  .proof-section,
  .sample-section,
  .mobile-showcase,
  .flow-section,
  .checkout-section {
    padding-block: 68px;
  }

  .screen-strip {
    max-height: min(680px, 70svh);
    gap: 14px;
    padding-right: 6px;
  }

  .phone-shot img {
    max-height: 560px;
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .flow-card,
  .pricing-card,
  .trust-section article,
  .legal-content section {
    padding: 22px;
  }

  .price span {
    font-size: 48px;
  }

  .footer-grid {
    display: grid;
  }

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

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