:root {
  --bg: #070d19;
  --bg-raised: #0b1222;
  --bg-soft: #0d152b;
  --panel: #0a111f;
  --text: #f6f8fc;
  --muted: #8e9bb1;
  --faint: #66738a;
  --line: #1a2941;
  --accent: #287cff;
  --accent-2: #20d9d2;
  --success: #22c98b;
  --danger: #ff5f6d;
  --shadow: 0 18px 60px rgba(0, 0, 0, .26);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  --bg: #f8fbff;
  --bg-raised: #ffffff;
  --bg-soft: #eef5ff;
  --panel: #ffffff;
  --text: #101828;
  --muted: #536178;
  --faint: #718096;
  --line: #d8e2ef;
  --shadow: 0 18px 54px rgba(27, 65, 112, .12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img, svg { display: block; }
[hidden] { display: none !important; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 14px; background: var(--accent); color: white; border-radius: 4px; }
.skip-link:focus { top: 12px; }
.shell { width: min(1230px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}
.header-row { min-height: 64px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 800; letter-spacing: .12em; font-size: 14px; }
.brand img { width: 28px; height: 28px; }
.brand-accent { color: var(--accent-2); }
.nav { display: flex; justify-content: center; gap: 4px; }
.nav a { padding: 6px 10px; border-radius: 999px; text-decoration: none; color: var(--muted); font-size: 14px; white-space: nowrap; }
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: var(--text); background: var(--bg-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-control { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); }
.theme-control button { width: 27px; height: 27px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--faint); cursor: pointer; }
.theme-control button[aria-pressed="true"] { background: var(--bg-soft); color: var(--text); }
.button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--text); text-decoration: none; font-weight: 700; font-size: 14px; white-space: nowrap; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.button:hover { border-color: color-mix(in srgb, var(--accent) 70%, var(--line)); transform: translateY(-2px) scale(1.02); }
.button-primary { border-color: var(--accent); background: var(--accent); color: white; box-shadow: 0 10px 26px rgba(40, 124, 255, .26); }
.button-block { width: 100%; }
.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--panel); color: var(--text); cursor: pointer; }
.mobile-menu { padding: 10px 0 18px; border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 11px 0; text-decoration: none; color: var(--muted); }

.hero { position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center; border-bottom: 1px solid var(--line); background: #0b0f19; color: #f6f8fc; }
.network { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .96; background: linear-gradient(135deg, #0b0f19, #0d1b36 52%, #0b0f19); }
.network canvas { display: block; width: 100% !important; height: 100% !important; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 15, 25, .82) 0%, rgba(11, 15, 25, .22) 48%, rgba(11, 15, 25, .64) 100%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; width: min(1230px, calc(100% - 96px)); display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr); align-items: center; gap: 64px; padding: 84px 0 90px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border: 1px solid rgba(32, 217, 210, .28); border-radius: 999px; background: rgba(32, 217, 210, .08); color: var(--accent-2); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 16px var(--accent-2); animation: status-pulse 1.8s ease-in-out infinite; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { margin: 20px 0 20px; max-width: 720px; font-size: 76px; line-height: .96; letter-spacing: 0; }
.hero h1 span { display: block; color: var(--accent); background: linear-gradient(135deg, #1f6feb, #00d4ff); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy > p { max-width: 620px; color: #8e9bb1; font-size: 17px; }
.rotating-line { margin-top: 14px; min-height: 28px; color: rgba(255, 255, 255, .88); font-size: 22px; font-weight: 700; }
.rotating-line [data-typewriter] { color: var(--accent-2); }
.type-cursor { color: var(--accent-2); animation: cursor-pulse 1s steps(2, jump-none) infinite; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .button:not(.button-primary) { border-color: #1a2941; background: #0a111f; color: #f6f8fc; }
.browser-card { width: 100%; max-width: 576px; justify-self: end; border: 1px solid #26354f; border-radius: 8px; background: #101421; box-shadow: var(--shadow); overflow: hidden; transform: perspective(900px) rotateY(-2deg); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.browser-card:hover { transform: perspective(900px) rotateY(0) translateY(-4px); border-color: rgba(32, 217, 210, .45); box-shadow: 0 24px 75px rgba(0, 0, 0, .38); }
.browser-top { height: 49px; display: flex; align-items: center; gap: 7px; padding: 0 20px; border-bottom: 1px solid rgba(255, 255, 255, .09); background: rgba(10, 14, 26, .9); }
.browser-top i { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot-red { background: rgba(239, 68, 68, .8); }
.browser-dot-yellow { background: rgba(234, 179, 8, .8); }
.browser-dot-green { background: rgba(34, 197, 94, .8); }
.browser-address { margin-left: 10px; height: 24px; flex: 1; border-radius: 5px; background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .32); font-size: 11px; display: flex; align-items: center; padding: 0 12px; }
.mock-content { padding: 20px; min-height: 376px; }
.mock-nav-row { display: flex; align-items: center; justify-content: space-between; }
.mock-brand-mark { display: flex; align-items: center; gap: 8px; }
.mock-brand-mark i { width: 24px; height: 24px; border-radius: 4px; background: #1f6feb; }
.mock-brand-mark span { width: 80px; height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .2); }
.mock-nav-lines { display: flex; gap: 12px; }
.mock-nav-lines i { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .15); }
.mock-nav-lines i:first-child { width: 48px; }
.mock-nav-lines i:nth-child(2) { width: 36px; }
.mock-nav-lines i:nth-child(3) { width: 40px; }
.mock-page-body { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 28px 0; }
.mock-status { width: max-content; padding: 4px 11px; border: 1px solid rgba(32, 217, 210, .22); border-radius: 999px; background: rgba(32, 217, 210, .12); color: var(--accent-2); font-size: 11px; font-weight: 700; }
.mock-line { height: 12px; border-radius: 999px; background: rgba(255, 255, 255, .15); }
.mock-title { width: 80%; background: rgba(255, 255, 255, .25); }
.mock-subtitle { width: 60%; }
.mock-copy-lines { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-copy-lines i { display: block; width: 100%; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.mock-copy-lines i:last-child { width: 83%; }
.mock-pill { width: 112px; height: 32px; margin-top: 6px; border-radius: 999px; background: linear-gradient(135deg, #1f6feb, #00d4ff); box-shadow: 0 8px 24px rgba(31, 111, 235, .2); }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, .1); }
.mock-stat { min-height: 80px; display: flex; flex-direction: column; justify-content: center; padding: 10px; border: 0; border-radius: 8px; background: rgba(255, 255, 255, .04); color: #f6f8fc; font-size: 13px; }
.mock-stat b { font-size: 14px; line-height: 1.2; }
.mock-stat strong { display: block; font-size: 13px; }
.mock-stat span { display: block; margin-top: 2px; color: rgba(255, 255, 255, .38); font-size: 10px; }

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-band { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { margin: 12px 0 10px; font-size: 48px; line-height: 1.08; }
.section-head p { color: var(--muted); font-size: 17px; }
.kicker { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.grid { display: grid; gap: 18px; }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.partner-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); box-shadow: 0 14px 36px rgba(0, 0, 0, .12); }
.card h3 { margin: 18px 0 8px; font-size: 18px; }
.card p { color: var(--muted); }
.step { color: var(--accent); font-size: 28px; font-weight: 800; }
.icon-box { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 6px; background: rgba(40, 124, 255, .12); color: var(--accent); font-weight: 800; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.demo-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); transition: transform .24s ease, border-color .24s ease; }
.demo-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); }
.demo-top { display: flex; justify-content: space-between; gap: 16px; }
.tag { height: fit-content; padding: 3px 8px; border-radius: 999px; background: rgba(40, 124, 255, .11); color: var(--accent); font-size: 11px; font-weight: 800; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.comparison div { padding: 12px; border-radius: 5px; background: var(--bg-raised); color: var(--muted); font-size: 13px; }
.comparison strong { display: block; margin-bottom: 4px; color: var(--danger); }
.comparison div:last-child strong { color: var(--success); }
.text-link { color: var(--accent); text-decoration: none; font-weight: 700; transition: color .2s ease, opacity .2s ease; }
.text-link:hover { color: var(--accent-2); }

.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(40, 124, 255, .25), var(--shadow); animation: featured-glow 3.2s ease-in-out infinite; }
.popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 4px 11px; border-radius: 999px; background: var(--accent); color: white; font-size: 11px; font-weight: 800; white-space: nowrap; }
.price { margin: 14px 0 8px; font-size: 38px; font-weight: 800; }
.price small { color: var(--muted); font-size: 13px; font-weight: 600; }
.feature-group { margin: 22px 0; }
.feature-group h4 { margin: 0 0 9px; color: var(--faint); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 5px 0 5px 18px; color: var(--muted); font-size: 13px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.price-card .button { margin-top: auto; }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 700; cursor: pointer; }
.faq-trigger::after { content: "+"; width: 22px; flex: 0 0 22px; color: var(--accent); font-size: 21px; text-align: center; }
.faq-trigger[aria-expanded="true"]::after { content: "−"; }
.faq-panel { padding: 0 48px 24px 0; color: var(--muted); }

.contact-band { background: var(--bg-soft); border-block: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy h2 { margin: 12px 0; font-size: 44px; line-height: 1.08; }
.contact-copy p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 5px; background: var(--bg); color: var(--text); padding: 11px 12px; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(40, 124, 255, .12); }
.field textarea { min-height: 118px; resize: vertical; }
.form-message { margin: 14px 0 0; color: var(--success); font-weight: 700; }

.site-footer { border-top: 1px solid var(--line); padding: 56px 0 44px; }
.footer-top { display: grid; grid-template-columns: 220px 1fr auto; align-items: start; gap: 32px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.footer-nav a, .footer-legal a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 58px; color: var(--faint); font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.page-hero { padding: 80px 0 54px; text-align: center; }
.page-hero .kicker { display: inline-block; margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 12px; font-size: 58px; line-height: 1.06; }
.page-hero p { max-width: 760px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.page-section { padding: 28px 0 92px; }
.docs-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; align-items: start; }
.docs-main, .doc-prose { min-width: 0; }
.docs-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 7px; }
.docs-sidebar strong { margin-bottom: 8px; color: var(--accent); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.docs-sidebar a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-radius: 5px; color: var(--muted); text-decoration: none; font-size: 14px; }
.docs-sidebar a::after { content: "›"; }
.docs-sidebar a:hover, .docs-sidebar a[aria-current="page"] { background: var(--bg-soft); color: var(--text); }
.docs-main > h1 { margin-bottom: 10px; font-size: 52px; line-height: 1.08; }
.docs-lead { margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.doc-grid { grid-template-columns: 1fr 1fr; }
.doc-card { display: block; min-height: 150px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); text-decoration: none; }
.doc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.doc-card h2 { margin-bottom: 6px; font-size: 19px; }
.doc-card p { color: var(--muted); }
.docs-help { margin-top: 38px; padding: 28px; border-radius: 8px; background: var(--bg-soft); }
.docs-help h2 { margin-bottom: 8px; }
.doc-prose { max-width: 820px; }
.doc-prose h2 { margin: 42px 0 12px; font-size: 28px; }
.doc-prose h3 { margin: 28px 0 8px; font-size: 20px; }
.doc-prose p, .doc-prose li { color: var(--muted); }
.doc-prose ul, .doc-prose ol { padding-left: 22px; }
.doc-prose li + li { margin-top: 8px; }
.doc-callout { margin: 26px 0; padding: 18px 20px; border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; background: var(--bg-soft); color: var(--muted); }
.table-wrap { width: 100%; max-width: 100%; overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: 7px; }
table { width: 100%; min-width: 620px; border-collapse: collapse; }
th, td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
th { background: var(--bg-soft); color: var(--text); }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }
.check { color: var(--success); font-weight: 800; }

.support-panel { padding: 58px; background: var(--bg-soft); border-block: 1px solid var(--line); }
.support-cards { width: min(760px, 100%); margin: 0 auto; grid-template-columns: 1fr 1fr; }
.support-form { width: min(700px, 100%); margin: 72px auto 0; }
.support-form > h2, .support-form > p { text-align: center; }
.support-form > p { color: var(--muted); }

.template-grid { grid-template-columns: repeat(3, 1fr); }
.template-card { overflow: hidden; padding: 0; }
.template-preview { aspect-ratio: 16 / 10; padding: 18px; background: linear-gradient(145deg, #0d1a32, #101e38); border-bottom: 1px solid var(--line); }
:root[data-theme="light"] .template-preview { background: linear-gradient(145deg, #e9f2ff, #f7fbff); }
.template-window { height: 100%; padding: 12px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); border-radius: 5px; background: color-mix(in srgb, var(--panel) 92%, transparent); }
.template-window i { display: block; height: 6px; margin-bottom: 9px; border-radius: 999px; background: var(--line); }
.template-window i:first-child { width: 45%; background: var(--accent); }
.template-window i:nth-child(2) { width: 78%; }
.template-window i:nth-child(3) { width: 62%; }
.template-copy { padding: 22px; }
.template-copy h2 { margin-bottom: 7px; font-size: 19px; }
.template-copy p { color: var(--muted); }

.legal-layout { width: min(900px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 96px; }
.legal-layout > .kicker { margin-bottom: 10px; }
.legal-layout > h1 { margin-bottom: 4px; font-size: 58px; }
.legal-date { margin-bottom: 44px; color: var(--faint); }
.legal-layout section { margin-top: 36px; }
.legal-layout h2 { margin-bottom: 10px; font-size: 24px; }
.legal-layout h3 { margin: 20px 0 8px; font-size: 18px; }
.legal-layout p, .legal-layout li { color: var(--muted); }
.legal-layout li + li { margin-top: 7px; }
.legal-note { margin: 34px 0; padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: var(--bg-soft); }
.not-found { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { margin-bottom: 8px; font-size: 72px; }
.not-found p { color: var(--muted); }

@keyframes cursor-pulse { 0%, 46% { opacity: 1; } 47%, 100% { opacity: .1; } }
@keyframes status-pulse { 0%, 100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.14); } }
@keyframes featured-glow { 0%, 100% { box-shadow: 0 0 0 1px rgba(40, 124, 255, .18), 0 18px 60px rgba(0, 0, 0, .24); } 50% { box-shadow: 0 0 0 1px rgba(40, 124, 255, .42), 0 20px 66px rgba(40, 124, 255, .18); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .price-card.featured, .eyebrow-dot, .type-cursor { animation: none; }
}

@media (max-width: 1080px) {
  .header-row { grid-template-columns: 1fr auto; }
  .nav, .header-actions .button:not(.button-primary), .header-actions .theme-control { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid { width: min(100% - 48px, 980px); grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero h1 { font-size: 60px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .template-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .shell.header-row { width: min(100% - 32px, 1230px); }
  .header-row { grid-template-columns: 185px 1fr auto; gap: 12px; }
  .nav a { padding-inline: 7px; font-size: 13px; }
  .header-actions { gap: 7px; }
  .header-actions .button { padding-inline: 14px; font-size: 13px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 620px); }
  .header-row { min-height: 60px; }
  .header-actions .button-primary { min-height: 36px; padding: 0 14px; font-size: 13px; }
  .hero { min-height: 0; }
  .hero::after { background: linear-gradient(rgba(11, 15, 25, .74) 5%, rgba(11, 15, 25, .2) 48%, rgba(11, 15, 25, .68) 100%); }
  .hero-grid { width: min(100% - 32px, 620px); grid-template-columns: 1fr; padding: 66px 0 74px; }
  .hero h1 { font-size: 50px; }
  .browser-card { transform: none; }
  .mock-content { min-height: 350px; padding: 16px; }
  .mock-nav-lines { display: none; }
  .section { padding: 72px 0; }
  .section-tight { padding: 58px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head h2 { font-size: 36px; }
  .page-hero h1, .legal-layout > h1, .docs-main > h1 { font-size: 40px; }
  .process-grid, .service-grid, .partner-grid, .demo-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 34px; }
  .contact-copy h2 { font-size: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; margin-top: 38px; }
  .docs-layout { grid-template-columns: 1fr; gap: 34px; }
  .docs-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .docs-sidebar strong { grid-column: 1 / -1; }
  .doc-grid, .support-cards, .template-grid { grid-template-columns: 1fr; }
  .support-panel { padding: 44px 0; }
  .legal-layout { width: min(100% - 32px, 900px); padding-top: 58px; }
}

@media (max-width: 420px) {
  .brand { font-size: 12px; }
  .brand img { width: 26px; height: 26px; }
  .header-actions { gap: 7px; }
  .header-actions .button-primary { display: none; }
  .hero-actions .button { width: 100%; }
  .mock-stats { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
}
