@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  color-scheme: dark;
  --ink: #07101f;
  --ink-2: #0a1525;
  --paper: #07101f;
  --soft: #0b1422;
  --panel: #0e1928;
  --panel-2: #111f30;
  --line: rgba(255,255,255,0.10);
  --muted: #8fa3bc;
  --teal: #12B5AF;
  --teal-bright: #1dd4cd;
  --teal-dark: #0d9490;
  --sky: #4aa3ff;
  --amber: #f4b647;
  --coral: #ff6b5f;
  --focus: #12B5AF;
  --shadow: 0 24px 64px rgba(0,0,0,0.30);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 100px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--paper); }

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
  color: #f0f6ff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Outfit', 'Inter', sans-serif; }

main { background: var(--paper); }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

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

/* ── SKIP LINK ── */
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-160%);
  background: var(--amber); color: var(--ink);
  padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

/* ── HEADER ── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  color: #fff;
  background: rgba(7,16,31,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex; align-items: center; gap: 12px; min-width: 0;
}
.brand img {
  width: 40px; height: 40px; border-radius: 12px;
  object-fit: cover; background: #0d2038;
  border: 1px solid rgba(18,181,175,0.4);
}
.brand span { display: grid; gap: 0; }
.brand strong { font-family: 'Outfit', sans-serif; font-size: 18px; line-height: 1.1; }
.brand small { color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: 0.05em; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  min-height: 40px;
  display: inline-flex; align-items: center;
  padding: 0 14px; border-radius: 10px;
  color: rgba(255,255,255,0.72); font-weight: 700; font-size: 14px;
  transition: background 150ms, color 150ms;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav .nav-action {
  margin-left: 8px; color: #05111f;
  background: var(--teal);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(18,181,175,0.3);
}
.site-nav .nav-action:hover { background: var(--teal-bright); color: #05111f; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  padding: 136px 32px 80px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(18,181,175,0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(0,59,92,0.35), transparent 60%),
    linear-gradient(135deg, #07101f 0%, #07101f 45%, #0a1e30 100%);
}

.hero-shell {
  position: relative; z-index: 1;
  width: min(1376px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hero-content { max-width: 680px; }

/* Animated badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,181,175,0.1);
  border: 1px solid rgba(18,181,175,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  animation: badge-pulse 2.2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(18,181,175,0.5); }
  50% { opacity:0.7; transform:scale(0.85); box-shadow: 0 0 0 6px rgba(18,181,175,0); }
}
.hero-badge span {
  color: var(--teal); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.eyebrow.dark { color: var(--teal-bright); }

h1 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.95; font-weight: 900;
  letter-spacing: -0.02em;
}

.gradient-h1 {
  background: linear-gradient(90deg, #fff 40%, #4dd9d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08; font-weight: 900;
  letter-spacing: -0.01em;
}

h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.25; font-weight: 800; }

.hero-copy {
  max-width: 580px;
  color: rgba(220,235,250,0.84);
  font-size: 20px; line-height: 1.6;
}

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

/* ── BUTTONS ── */
.button {
  min-height: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; border-radius: 14px; border: 1px solid transparent;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 15px;
  cursor: pointer; white-space: nowrap;
  transition: transform 150ms, box-shadow 150ms, background 150ms;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 20px; height: 20px; fill: none;
  stroke: currentColor; stroke-width: 2.3;
  stroke-linecap: round; stroke-linejoin: round;
}
.button.primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #05111f;
  box-shadow: 0 8px 28px rgba(18,181,175,0.32);
}
.button.primary:hover { box-shadow: 0 14px 40px rgba(18,181,175,0.45); }
.button.ghost, .button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}
.button.ghost:hover, .button.secondary:hover { background: rgba(255,255,255,0.12); }

/* ── HERO PRODUCT ── */
.hero-product {
  position: relative; overflow: hidden; min-width: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px; padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(18,181,175,0.15);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 72px);
  box-shadow: 0 32px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(18,181,175,0.08);
}
.hero-product::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(18,181,175,0.12);
  pointer-events: none;
}

.hero-screen {
  position: relative; z-index: 1;
  margin: 0; overflow: hidden;
  border-radius: 12px;
  background: #050b15;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.hero-screen img {
  width: 100%; aspect-ratio: 9/18; height: auto;
  object-fit: cover; object-position: top center;
}

/* ── PROOF BAND ── */
.proof-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 18px 28px; gap: 12px;
  background: linear-gradient(180deg, rgba(10,20,35,0.99), rgba(8,16,28,0.99));
  border-block: 1px solid rgba(255,255,255,0.07);
}
.proof-band::before { content: "Install LogLane"; display: none; }

.proof-item {
  min-height: 74px;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 13px; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14,25,40,0.97), rgba(20,32,48,0.90));
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: border-color 200ms, transform 150ms;
}
.proof-item:hover { border-color: rgba(18,181,175,0.3); transform: translateY(-2px); }
.proof-item strong { font-family: 'Outfit', sans-serif; font-size: 21px; line-height: 1.05; }
.proof-item span { color: var(--muted); font-weight: 700; font-size: 13px; }
.proof-item.store-badge {
  min-width: 0; min-height: 74px; margin: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(8,14,22,0.98), rgba(14,22,34,0.96));
  border-color: rgba(255,255,255,0.12);
}
.proof-item.store-badge:hover { border-color: rgba(18,181,175,0.4); }
.proof-item.store-badge svg { width: 30px; height: 30px; }
.proof-copy { display: grid; align-content: center; gap: 4px; }

/* ── SECTIONS ── */
.section { padding: 96px 32px; }
.section-light {
  background: linear-gradient(180deg, #080f1c 0%, #0a1422 100%);
  border-block: 1px solid rgba(255,255,255,0.07);
}

.section-shell, .footer-shell {
  width: min(1180px, 100%); margin: 0 auto;
}
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p, .preview-copy p, .global-layout p, .final-layout p {
  color: var(--muted); font-size: 18px; line-height: 1.65;
}
.section-heading.compact { max-width: 720px; }

/* ── FEATURE CARDS ── */
.feature-grid, .step-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.feature-card, .step-card {
  min-height: 260px; padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: border-color 200ms, transform 180ms, box-shadow 180ms;
}
.feature-card:hover {
  border-color: rgba(18,181,175,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(18,181,175,0.1);
}

.feature-card svg {
  width: 44px; height: 44px; margin-bottom: 24px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 12px currentColor);
}
.feature-card p, .step-card p { color: var(--muted); margin-bottom: 0; font-size: 15px; }

.accent-teal { color: var(--teal-bright); }
.accent-sky { color: var(--sky); }
.accent-amber { color: var(--amber); }
.accent-coral { color: var(--coral); }

/* ── PREVIEW ── */
.preview-section, .global-section, .final-cta {
  color: #fff;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(18,181,175,0.12), transparent 60%),
    linear-gradient(180deg, #07101f 0%, #091321 100%);
}
.preview-layout, .global-layout, .final-layout {
  display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 56px; align-items: center;
}
.preview-copy { max-width: 440px; }
.preview-copy p, .global-layout p, .final-layout p { color: rgba(220,235,250,0.76); }

.preview-showcase {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 76px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.screen-card {
  position: relative; margin: 0; overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #050b15;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.screen-card img {
  width: 100%; aspect-ratio: 9/18; height: auto;
  object-fit: cover; object-position: top center;
}
.screen-card figcaption {
  position: absolute; left: 8px; bottom: 8px;
  padding: 5px 9px; border-radius: 8px;
  color: #f0f6ff; background: rgba(7,16,31,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  font-size: 11px; font-weight: 900;
}

/* ── CHECKLIST ── */
.check-list {
  display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none;
}
.check-list li {
  position: relative; padding-left: 32px;
  color: rgba(230,242,252,0.85); font-weight: 700; font-size: 15px;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px var(--ink), 0 0 10px rgba(18,181,175,0.4);
  border: 2px solid var(--teal);
}

/* ── STEPS ── */
.step-grid { grid-template-columns: repeat(3, 1fr); }
.step-card span {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; margin-bottom: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 6px 20px rgba(18,181,175,0.35);
  color: #05111f; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 18px;
}
.install-actions { margin-top: 28px; }

/* ── GLOBAL ── */
.global-layout { grid-template-columns: 0.92fr 1.08fr; }
.global-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.global-list div {
  min-height: 130px; display: grid; align-content: start; gap: 8px;
  padding: 22px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  transition: border-color 200ms, background 200ms;
}
.global-list div:hover { border-color: rgba(18,181,175,0.3); background: rgba(18,181,175,0.06); }
.global-list strong { font-family: 'Outfit', sans-serif; font-size: 19px; }
.global-list span { color: rgba(220,235,250,0.68); font-size: 14px; }

/* ── PRICING ── */
.pricing-section {
  background: var(--ink);
  padding: 96px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }

.plan-card {
  border-radius: 22px; padding: 32px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  position: relative; overflow: hidden;
}
.plan-card.plan-pro {
  background: linear-gradient(135deg, rgba(0,59,92,0.75) 0%, rgba(18,181,175,0.12) 100%);
  border-color: rgba(18,181,175,0.4);
  box-shadow: 0 0 0 1px rgba(18,181,175,0.1), 0 20px 60px rgba(0,0,0,0.3);
}
.plan-card.plan-pro::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(18,181,175,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.popular-tag {
  position: absolute; top: 0; right: 0;
  background: var(--teal); color: #05111f;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-bottom-left-radius: 16px;
}
.plan-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.plan-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.plan-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.plan-price { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; text-align: right; }
.plan-price-sub { font-size: 11px; color: var(--teal); font-weight: 800; }
.plan-features { display: grid; gap: 12px; margin-bottom: 28px; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(220,235,250,0.85); }
.plan-feat-check { color: var(--teal); font-size: 16px; flex-shrink: 0; }
.plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  border-radius: 14px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; color: #fff;
  transition: transform 150ms, box-shadow 150ms;
  position: relative; z-index: 1;
}
.plan-btn:hover { transform: translateY(-2px); }
.plan-btn-free { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.12); }
.plan-btn-pro {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #05111f;
  box-shadow: 0 8px 28px rgba(18,181,175,0.35);
}
.plan-btn-pro:hover { box-shadow: 0 14px 40px rgba(18,181,175,0.5); }

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: 0 32px 96px;
  background: var(--ink);
}
.testimonial-card {
  max-width: 1180px; margin: 0 auto;
  background: rgba(18,181,175,0.06);
  border: 1px solid rgba(18,181,175,0.2);
  border-radius: 22px; padding: 36px;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(18,181,175,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.t-star { color: #facc15; font-size: 20px; }
.t-text {
  font-size: 20px; line-height: 1.6; font-style: italic;
  color: rgba(220,235,250,0.9); max-width: 720px; margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #003B5C);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.t-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 900; color: #fff; }
.t-role { font-size: 13px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { display: grid; gap: 10px; }
details {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  transition: border-color 200ms;
}
details[open] { border-color: rgba(18,181,175,0.3); }
summary {
  cursor: pointer; padding: 22px 26px;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 17px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 26px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }
details a { color: var(--teal-bright); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(18,181,175,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.final-layout {
  grid-template-columns: 1fr auto;
  position: relative; z-index: 1;
}
.final-layout h2 { margin-bottom: 12px; }

/* ── FOOTER ── */
.site-footer {
  background: #050b15;
  color: rgba(255,255,255,0.70);
  padding: 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-shell {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.footer-brand img { width: 38px; height: 38px; border-radius: 10px; }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 18px; font-weight: 700; font-size: 14px;
}
.footer-links a:hover { color: #fff; }
.site-footer p { margin: 0; color: rgba(255,255,255,0.5); font-size: 13px; }
.noscript {
  position: fixed; inset: auto 16px 16px 16px; z-index: 100;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--amber); color: var(--ink); font-weight: 800;
}

/* ── LEGAL ── */
.legal-body { background: var(--paper); }
.legal-page { color: #f0f6ff; }
.legal-hero {
  padding: 80px 32px 64px; color: #fff;
  background:
    linear-gradient(90deg, rgba(7,16,31,0.97), rgba(9,28,48,0.92)),
    url("assets/hero-loglane-real.png") center right / cover;
}
.legal-shell { width: min(1080px, 100%); margin: 0 auto; }
.legal-hero h1 { margin-bottom: 16px; font-size: clamp(36px, 5vw, 56px); }
.legal-hero p { max-width: 720px; color: rgba(220,235,250,0.84); font-size: 18px; }
.legal-updated { margin-top: 22px; font-weight: 900; color: var(--teal) !important; }
.legal-content { padding: 56px 32px 86px; }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 24px; align-items: start; }
.legal-toc {
  position: sticky; top: 88px; display: grid; gap: 4px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius);
  background: var(--panel); box-shadow: var(--shadow);
}
.legal-toc a { padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 800; }
.legal-toc a:hover { color: #f0f6ff; background: rgba(255,255,255,0.06); }
.legal-card {
  padding: 40px; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius);
  background: var(--panel); box-shadow: 0 16px 44px rgba(0,0,0,0.2);
}
.legal-card h2 { margin: 34px 0 12px; font-size: 24px; line-height: 1.2; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 16px; }
.legal-card ul { display: grid; gap: 8px; margin: 0 0 18px; padding-left: 22px; }
.legal-card a { color: var(--teal-bright); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .site-header { padding: 0 18px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 72px; left: 12px; right: 12px; display: none;
    flex-direction: column; align-items: stretch; padding: 12px;
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
    background: rgba(7,16,31,0.97); box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a { justify-content: center; }
  .site-nav .nav-action { margin-left: 0; }
  .hero { min-height: 88svh; padding: 120px 20px 60px; }
  .hero-shell { grid-template-columns: 1fr; gap: 36px; width: 100%; }
  .hero-product {
    width: min(760px, 100%); justify-self: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .proof-band, .feature-grid, .step-grid, .global-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .preview-layout, .global-layout, .final-layout, .footer-shell {
    grid-template-columns: 1fr;
  }
  .preview-copy { max-width: 720px; }
  .preview-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-layout { align-items: start; }
  .footer-links { justify-content: flex-start; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 640px) {
  .site-header { height: 66px; padding: 0 16px; }
  .site-nav { top: 66px; }
  .brand img { width: 40px; height: 40px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 10px; }
  .hero { min-height: auto; padding: 92px 18px 36px; }
  .hero-badge { display: inline-flex; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-shell { gap: 28px; }
  .hero-product {
    width: calc(100% + 8px);
    display: flex; overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 10px; gap: 10px;
    border-radius: 16px;
  }
  .hero-screen { flex: 0 0 52%; scroll-snap-align: center; }
  .hero-screen img { height: auto; aspect-ratio: auto; object-fit: contain; object-position: top center; }
  .button, .store-badge { width: 100%; }
  .store-badge { justify-content: center; }
  .hero-actions {
    display: grid; grid-template-columns: 1fr; gap: 10px;
    margin-top: 24px; width: 100%;
  }
  .hero-actions .button { min-height: 52px; font-size: 15px; }
  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 16px; gap: 10px;
  }
  .proof-band::before { display: block; grid-column: 1/-1; color: var(--teal); font-weight: 900; font-family: 'Outfit', sans-serif; }
  .proof-item { min-height: 60px; padding: 12px 14px; }
  .proof-item.store-badge { min-height: 60px; flex-direction: row; justify-content: center; }
  .proof-item.store-badge svg { width: 26px; height: 26px; }
  .proof-item.store-badge span { font-size: 14px; }
  .proof-item.store-badge small { font-size: 10px; }
  .proof-band .store-badge:nth-child(3) { grid-column: 1/-1; }
  .proof-copy { display: none; }
  .section { padding: 64px 18px; }
  .pricing-section { padding: 64px 18px; }
  .testimonial-section { padding: 0 18px 64px; }
  .feature-card, .step-card { min-height: auto; }
  .preview-layout, .global-layout { gap: 28px; }
  .preview-showcase {
    display: flex; gap: 10px;
    overflow-x: auto; overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 10px; margin-inline: -18px;
    border-inline: 0; border-radius: 0;
  }
  .screen-card { flex: 0 0 76%; scroll-snap-align: center; }
  .final-cta { padding: 56px 18px; }
  .footer-shell { gap: 16px; }
  .legal-hero { padding: 48px 18px; }
  .legal-content { padding: 36px 18px 68px; }
  .legal-card { padding: 22px; }
  .legal-toc { grid-template-columns: 1fr; }
  .t-text { font-size: 17px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

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