/* ─── RESET & TOKENS ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0b0d10;
  --surface:    #13171f;
  --surface-2:  #1c2230;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --accent:     #3d8ef5;
  --accent-dim: rgba(61,142,245,0.15);
  --accent-glow:rgba(61,142,245,0.35);
  --text:       #dde4ee;
  --text-dim:   #a8b8cc;
  --text-muted: #4a5566;
  --mono:       'IBM Plex Mono', monospace;
  --display:    'Barlow Condensed', sans-serif;
  --body:       'Barlow', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --max:        1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── GRID BG TEXTURE ────────────────────────────────────────────────────── */
.hero-grid-bg, .cta-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  z-index: 0;
}

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(11,13,16,0.82);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.nav-app-icon {
  width: 24px;
  height: 24px;
  border-radius: 22.5%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-badge-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.nav-badge {
  height: 36px;
  width: auto;
  display: block;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,142,245,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  animation: fadeUp 0.6s ease both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(61,142,245,0.3);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.badge-sep { opacity: 0.3; }
.badge-text { opacity: 0.7; }

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title-line {
  display: block;
  animation: fadeUp 0.6s ease both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.05s; }
.hero-title-line:nth-child(2) { animation-delay: 0.1s; }
.hero-title-line:nth-child(3) { animation-delay: 0.15s; }
.accent { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.25s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(61,142,245,0.35);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(61,142,245,0.5);
}
.btn-large { font-size: 18px; padding: 16px 32px; }

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stars { color: #f5c842; font-size: 15px; letter-spacing: 1px; }
.hero-rating span { font-family: var(--mono); font-size: 12px; color: var(--text-dim); }

/* Phone Stack */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.1s ease both;
}
.phone-stack {
  position: relative;
  width: 280px;
  height: 560px;
}
.phone {
  position: absolute;
  transition: transform 0.3s ease;
}
.phone-back {
  top: 30px;
  right: -40px;
  transform: rotate(4deg);
  z-index: 1;
}
.phone-front {
  top: 0;
  left: -10px;
  transform: rotate(-2deg);
  z-index: 2;
}
.phone-stack:hover .phone-front { transform: rotate(-3deg) translateY(-4px); }
.phone-stack:hover .phone-back  { transform: rotate(5deg) translateY(2px); }

.phone-frame {
  width: 220px;
  background: #1a1d22;
  border-radius: 40px;
  padding: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 64px rgba(0,0,0,0.6),
    0 0 0 10px #111316,
    0 0 0 11px rgba(255,255,255,0.06);
}
.phone-frame img {
  width: 100%;
  display: block;
}

.hero-icon-deco {
  position: absolute;
  right: -40px;
  bottom: 60px;
  width: 80px;
  height: 80px;
  border-radius: 22.5%;
  opacity: 0.2;
  pointer-events: none;
}

/* ─── STATS ───────────────────────────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 6px;
}
.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--text);
}
.stat-star { color: var(--accent); font-size: 32px; vertical-align: super; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ─── FEATURES ────────────────────────────────────────────────────────────── */
.features {
  padding: 120px 0;
}
.features-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 64px;
}
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 600px;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.feature-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.feature-card-content { flex: 1; min-width: 0; }
.feature-card-visual { flex: 0 0 280px; }

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}
.mono {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  padding: 2px 7px;
  border-radius: 5px;
  color: var(--accent);
  white-space: nowrap;
}

/* Search demo */
.search-demo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 14px;
}
.demo-search-text { color: var(--text); }
.demo-cursor {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.demo-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.demo-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 13px;
  transition: border-color 0.2s;
}
.demo-result--active {
  border-color: rgba(61,142,245,0.35);
  background: rgba(61,142,245,0.06);
}
.demo-desig { color: var(--text); font-weight: 500; }
.demo-prop { color: var(--text-dim); font-size: 11px; }

/* Props demo */
.props-demo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-top: 8px;
}
.props-diagram {
  flex: 0 0 100px;
}
.ibeam-svg { width: 100%; color: rgba(255,255,255,0.15); }
.props-table { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.prop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 12px;
  background: var(--surface-2);
}
.prop-row--highlight {
  background: rgba(61,142,245,0.1);
  border: 1px solid rgba(61,142,245,0.25);
}
.prop-name { color: var(--text-dim); }
.prop-val { color: var(--text); font-weight: 500; }
.prop-unit { color: var(--text-muted); font-size: 10px; }

/* ─── APP STORE BADGE ────────────────────────────────────────────────────── */
.app-store-link {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.app-store-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.app-store-badge {
  height: 52px;
  width: auto;
  display: block;
}
.app-store-badge--large {
  height: 64px;
}
.app-store-link--cta {
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

/* ─── SCREENSHOTS ─────────────────────────────────────────────────────────── */
.screenshots {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  overflow: hidden;
}
.screenshots-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.screenshot-track {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.screenshot-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.screenshot-phone {
  width: 200px;
  background: #1a1d22;
  border-radius: 36px;
  padding: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 50px rgba(0,0,0,0.5),
    0 0 0 8px #111316,
    0 0 0 9px rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-phone:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 28px 60px rgba(0,0,0,0.6),
    0 0 0 8px #111316,
    0 0 0 9px rgba(255,255,255,0.07);
}
.screenshot-phone img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.screenshot-caption {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
}

.screenshot-platform-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 56px;
  margin-bottom: 4px;
  padding-left: 2px;
}
.screenshot-platform-label:first-of-type { margin-top: 0; }

/* Light mode phone frame */
.screenshot-phone--light {
  background: #e8eaed;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 20px 50px rgba(0,0,0,0.25),
    0 0 0 8px #c8cdd4,
    0 0 0 9px rgba(0,0,0,0.06);
}
.screenshot-phone--light:hover {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.15),
    0 28px 60px rgba(0,0,0,0.3),
    0 0 0 8px #c8cdd4,
    0 0 0 9px rgba(0,0,0,0.08);
}

/* iPad screenshots */
.screenshot-track--ipad { margin-top: 4px; }
.screenshot-item--ipad { flex: 0 0 480px; }
.screenshot-ipad {
  width: 460px;
  border-radius: 22px;
  padding: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-ipad--dark {
  background: #1a1d22;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 50px rgba(0,0,0,0.5),
    0 0 0 8px #111316,
    0 0 0 9px rgba(255,255,255,0.05);
}
.screenshot-ipad--light {
  background: #e8eaed;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 20px 50px rgba(0,0,0,0.25),
    0 0 0 8px #c8cdd4,
    0 0 0 9px rgba(0,0,0,0.06);
}
.screenshot-ipad:hover {
  transform: translateY(-4px);
}
.screenshot-ipad img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.marquee-track { width: 100%; overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  text-transform: uppercase;
  padding: 16px 40px;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-2);
  white-space: nowrap;
  transition: color 0.2s, -webkit-text-stroke 0.2s;
}
.marquee-inner span:hover {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
}
.testimonials-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card .stars {
  color: #f5c842;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text);
}
.testimonial-author {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ─── CTA ─────────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-app-icon {
  width: 60px;
  height: 60px;
  border-radius: 22.5%;
  margin-bottom: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 400px;
  line-height: 1.6;
}
.cta-platforms {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.footer-app-icon {
  width: 20px;
  height: 20px;
  border-radius: 22.5%;
  object-fit: cover;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--surface-2);
}
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: #e05a5a;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}
.field-error {
  font-family: var(--mono);
  font-size: 11px;
  color: #e05a5a;
  display: none;
}
.field-error.visible { display: block; }
.form-gotcha {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(61,142,245,0.35);
}
.btn-submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(61,142,245,0.5);
}
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-status {
  font-family: var(--mono);
  font-size: 13px;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
  line-height: 1.5;
}
.form-status.success {
  display: block;
  background: rgba(61,200,100,0.08);
  border: 1px solid rgba(61,200,100,0.25);
  color: #4ecb71;
}
.form-status.error {
  display: block;
  background: rgba(224,90,90,0.08);
  border: 1px solid rgba(224,90,90,0.25);
  color: #e05a5a;
}

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    min-height: auto;
    gap: 60px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-stack { width: 240px; height: 480px; }
  .phone-frame { width: 190px; }
  .hero-ibeam-deco { display: none; }
  .hero::before { display: none; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: 1; flex-direction: column; }
  .feature-card-visual { flex: none; }

  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 40%; padding: 28px 16px; }
  .stat-div { display: none; }
  .stat:not(:last-child) { border-bottom: 1px solid var(--border); }

  .testimonial-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .features-inner, .screenshots-inner, .testimonials-inner, .cta-inner, .contact-inner { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy { margin-left: 0; }
  .hero-title { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; }
}
