*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060609;
  --surface: #0e0e18;
  --surface2: #13131f;
  --surface3: #181828;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f4f4f8;
  --muted: #9494b0;
  --faint: #55557a;
  --accent: #4f8eff;
  --accent2: #00e5c0;
  --orange: #ff6b35;
  --green: #00e5c0;
  --red: #ff4567;
  --yellow: #ffd166;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --max: 1040px;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* BG GRID */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,142,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 56px;
}

.nav-logo {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }

.logo-icon {
  color: var(--accent);
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-sm {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-ghost-sm:hover { border-color: var(--accent); color: var(--accent); }

.btn-primary-sm {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary-sm:hover { background: #3a7aff; text-decoration: none; color: #fff; }

/* BUTTONS */
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #3a7aff; text-decoration: none; color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.btn-outline {
  background: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid var(--faint);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { color: var(--text); border-color: var(--border-strong); text-decoration: none; }

.btn-lg {
  font-size: 14px;
  padding: 14px 32px;
}

/* PAGE */
.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* HERO */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(79,142,255,0.08);
  border: 1px solid rgba(79,142,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.h1-accent {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* PROOF CARD */
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(79,142,255,0.1),
    0 20px 40px rgba(0,0,0,0.5),
    0 0 80px rgba(79,142,255,0.05);
}

.proof-card-bar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green-dot { background: #28ca41; }

.bar-filename {
  flex: 1;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.proof-status-ok {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  animation: statusBlink 3s infinite;
}

@keyframes statusBlink {
  0%, 90%, 100% { opacity: 1; }
  95% { opacity: 0.4; }
}

.proof-photos {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px;
  gap: 8px;
  align-items: center;
}

.photo-block {}
.photo-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-weight: 700;
}

.photo-frame {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.after-frame {
  background: rgba(0,229,192,0.03);
  border-color: rgba(0,229,192,0.15);
}

.photo-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl {
  height: 2px;
  background: var(--faint);
  border-radius: 1px;
}

.pl.after-l { background: rgba(0,229,192,0.25); }
.w40{width:40%} .w50{width:50%} .w60{width:60%} .w70{width:70%} .w80{width:80%}

.photo-hash {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.photo-arrow {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.proof-fields {
  padding: 4px 0;
}

.pf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}

.pf-row:last-child { border-bottom: none; }

.pf-k {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.pf-v {
  font-size: 12px;
  text-align: right;
}

.pf-v.verified { color: var(--green); font-weight: 700; }
.pf-v.muted { color: var(--faint); }
.pf-v.code-val { color: var(--accent); font-weight: 700; letter-spacing: 0.08em; }

.highlight-row {
  background: rgba(79,142,255,0.06);
  margin: 2px 0;
}

.proof-card-footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.alt-section {
  background: transparent;
  position: relative;
}

.alt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.01);
  pointer-events: none;
  border-radius: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.sec-label {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.h2-muted { color: var(--muted); }

.sec-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* PILLS */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.pill {
  font-size: 12px;
  padding: 5px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--muted);
  background: var(--surface);
}

.accent-pill {
  border-color: rgba(79,142,255,0.4);
  color: var(--accent);
  background: rgba(79,142,255,0.08);
}

/* FLOW */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.flow-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.flow-role-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.worker-dot { background: var(--orange); }
.client-dot { background: var(--green); }

.worker-h { color: var(--orange); }
.client-h { color: var(--green); }

.steps { display: flex; flex-direction: column; gap: 2px; }

.step {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.step:hover { background: rgba(255,255,255,0.02); }

.step-num {
  font-size: 11px;
  color: var(--faint);
  min-width: 22px;
  padding-top: 1px;
  font-family: var(--font-mono);
}

.step-content {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.step-content strong { color: var(--text); }

.step-final {
  border-radius: 6px;
  padding: 12px;
}

.worker-final {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.15);
}

.worker-final .step-content { color: var(--text); }

.client-final {
  background: rgba(0,229,192,0.06);
  border: 1px solid rgba(0,229,192,0.15);
}

.client-final .step-content { color: var(--text); }

.flow-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 3.5rem;
}

.divider-line {
  flex: 1;
  width: 1px;
  background: var(--border);
}

.divider-icon {
  color: var(--faint);
  font-size: 14px;
  transform: rotate(90deg);
}

/* SS STRIP */
.ss-strip {
  background: rgba(79,142,255,0.04);
  border-top: 1px solid rgba(79,142,255,0.12);
  border-bottom: 1px solid rgba(79,142,255,0.12);
  padding: 1.2rem 2rem;
  margin: 0 -2rem;
}

.ss-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
}

.ss-strip-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ss-strip-sub {
  font-size: 11px;
  color: var(--muted);
}

/* FEATURES */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.feat-card {
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.feat-card:hover { background: var(--surface2); }

.feat-icon-wrap {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* WHO */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.who-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.who-card-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.who-role-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.client-tag { color: var(--green); }

.who-list {
  list-style: none;
  padding: 12px 16px;
  margin-bottom: 0;
}

.who-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  line-height: 1.5;
}

.who-list li:last-child { border-bottom: none; }

.who-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--faint);
}

.who-why {
  font-size: 13px;
  color: var(--muted);
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.who-why strong { color: var(--text); }

/* TECH */
.tech-table {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.tech-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
  transition: background 0.15s;
}

.tech-row:last-child { border-bottom: none; }
.tech-row:hover { background: rgba(255,255,255,0.02); }

.tech-k {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.tech-v {
  font-size: 13px;
  color: var(--green);
  text-align: right;
}

.tech-note {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--muted);
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(79,142,255,0.05);
  border-radius: 0 4px 4px 0;
  line-height: 1.75;
}

/* TRANSPARENCY */
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.t-card {
  background: var(--surface);
  padding: 1.5rem;
  transition: background 0.2s;
}

.t-card:hover { background: var(--surface2); }

.warn-card {
  background: rgba(255,209,102,0.03);
}
.warn-card:hover { background: rgba(255,209,102,0.05); }

.t-icon {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--muted);
}

.warn-icon { color: var(--yellow); }

.t-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.t-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* SALE */
.sale-section {
  padding: 4rem 0;
}

.sale-inner {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.sale-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.sale-inner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79,142,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sale-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.sale-inner h2 {
  margin-bottom: 1rem;
}

.sale-inner p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  max-width: 580px;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.modal-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.modal-close {
  background: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  font-size: 13px;
  padding: 5px 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  border-radius: 4px;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--text); }

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1rem;
}

.ss-slot {
  border: 1px solid var(--border);
  border-radius: 6px;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--surface2);
}

.ss-slot img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

.ss-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--faint);
  font-size: 12px;
  text-align: center;
  padding: 1rem;
}

.ss-placeholder span:first-child { font-size: 24px; }

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-note {
  font-size: 12px;
  color: var(--muted);
}

.ss-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 18px;
}

.ss-lightbox.open { display: flex; }

.ss-lightbox img {
  max-width: min(1200px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
  cursor: pointer;
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}

.footer-stack { margin-left: auto; }

/* SS STRIP */
.ss-strip-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.ss-strip-sub {
  font-size: 13px;
  color: var(--muted);
}

/* SALE */
.sale-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.sale-inner h2 {
  margin-bottom: 1rem;
}

.sale-inner p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  max-width: 580px;
}

/* hero tagline */
.hero-tagline {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flow-divider { display: none; }

  .feat-grid,
  .t-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }

  .page { padding: 0 1rem; }

  .ss-strip { margin: 0 -1rem; padding: 1rem; }

  .sale-inner { padding: 1.5rem; }

  .footer-stack { margin-left: 0; }
}

/* SCROLL ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .section,
  .hero {
    animation: fadeUp 0.6s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}