/* ============================================================
   SEAM — Website Styles
   Brand: #D2113A (seam red) · #10151A (deep navy)
   Type:  Barlow Condensed (display) · Barlow (body)
   ============================================================ */

:root {
  /* brand */
  --red:        #D2113A;
  --red-bright: #F0284F;
  --red-deep:   #A50D2E;
  --red-soft:   rgba(210, 17, 58, 0.12);
  --red-line:   rgba(210, 17, 58, 0.28);
  --red-glow:   rgba(210, 17, 58, 0.35);

  /* surfaces */
  --bg:    #10151A;
  --bg-2:  #141B22;
  --bg-3:  #19212A;
  --bg-4:  #202B36;

  /* text */
  --text:       #F3F6F9;
  --text-muted: #9AA7B4;
  --text-dim:   #5F6E7C;

  /* lines */
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --radius:   16px;
  --radius-lg: 24px;
  --max-w:    1200px;
  --nav-h:    72px;
  --ease:     0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* section heading eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), height var(--ease);
}
.nav.scrolled {
  height: 60px;
  background: rgba(16, 21, 26, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--ease);
}
.nav-brand:hover { opacity: 0.85; }

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 12px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px -6px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px var(--red-glow);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.nav-cta { padding: 10px 22px; }

/* App Store badge */
.appstore {
  display: inline-block;
  transition: transform var(--ease), filter var(--ease);
}
.appstore img { height: 54px; width: auto; }
.appstore:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 78% 42%, rgba(210, 17, 58, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 8% 78%, rgba(210, 17, 58, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 52, 66, 0.5) 0%, transparent 55%);
}
/* faint dotted "field" grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 0%, transparent 75%);
  opacity: 0.6;
}

/* red "speed lines" echoing the logo */
.speed-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.speed-lines span {
  position: absolute;
  left: 52%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 3px;
  opacity: 0;
  animation: streak 5s ease-in-out infinite;
}
.speed-lines span:nth-child(1) { top: 24%; width: 200px; animation-delay: 0s;   }
.speed-lines span:nth-child(2) { top: 34%; width: 130px; animation-delay: 1.1s; }
.speed-lines span:nth-child(3) { top: 68%; width: 230px; animation-delay: 0.5s; }
.speed-lines span:nth-child(4) { top: 78%; width: 110px; animation-delay: 2.0s; }
.speed-lines span:nth-child(5) { top: 86%; width: 170px; animation-delay: 1.4s; }

@keyframes streak {
  0%   { transform: translateX(-30px); opacity: 0; }
  40%  { opacity: 0.45; }
  75%  { transform: translateX(90px); opacity: 0; }
  100% { opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-text {
  flex: 1 1 540px;
  max-width: 580px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 20px 0 22px;
}
.hero-title .accent {
  color: var(--red);
  display: inline-block;
}

.hero-body {
  font-size: 1.22rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.92rem;
  color: var(--text-dim);
}
.hero-note b { color: var(--text-muted); font-weight: 600; }

/* phones */
.hero-phones {
  flex: 0 0 auto;
  position: relative;
  width: 420px;
  height: 560px;
  animation: fadeUp 1s ease 0.15s both;
}
.hero-phones .phone {
  position: absolute;
  height: auto;
}
.phone--front {
  width: 300px;
  left: 0;
  bottom: 0;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}
.phone--back {
  width: 270px;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0.85;
  filter: brightness(0.82) drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite 0.8s;
}
/* red seam glow puck behind phones */
.hero-phones::before {
  content: '';
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(circle at 60% 45%, var(--red-glow), transparent 68%);
  filter: blur(30px);
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-cue span {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--red), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  padding: 32px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.strip-item:first-child { border-left: none; }
.strip-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.strip-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding-block: 130px;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 90px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 16px 0 18px;
}
.section-head p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: 150px;
}
.feature:last-child { margin-bottom: 0; }
.feature--flip .feature-text { order: 2; }

.feature-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.feature-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.03;
  margin-bottom: 20px;
}
.feature-text p {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}
.feature-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  flex: 0 0 auto;
  margin-top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

/* device showcase: black screenshot canvas sits on an intentional dark panel */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* The screenshots are transparent PNG/WebP cut-outs of the device, so they need
   no frame — a drop-shadow follows the phone's real silhouette, and a soft brand
   glow behind it lifts the dark screen off the dark page. */
.device {
  position: relative;
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: center;
}
.device::after {
  content: '';
  position: absolute;
  inset: 10% 0%;
  z-index: 0;
  background: radial-gradient(ellipse 62% 55% at 50% 45%, var(--red-glow), transparent 72%);
  filter: blur(55px);
  opacity: 0.75;
  pointer-events: none;
}
.device img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter:
    drop-shadow(0 34px 46px rgba(0, 0, 0, 0.62))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
/* dual shots, layered one over the other like the hero pair */
.device--stack {
  display: block;
  aspect-ratio: 430 / 700;
}
.device--stack img {
  position: absolute;
  width: 68%;
}
/* front plate — offset down and to the left, sits over the back one */
.device--stack img:first-child {
  bottom: 0;
  left: 0;
  z-index: 2;
}
/* back plate — offset up and to the right, pushed back with dimming */
.device--stack img:last-child {
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.9;
  filter:
    brightness(0.78)
    drop-shadow(0 26px 38px rgba(0, 0, 0, 0.55));
}

/* ============================================================
   PRO SECTION
   ============================================================ */
.pro {
  padding-block: 40px 130px;
}
.pro-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--red-line);
  background:
    radial-gradient(ellipse 60% 90% at 82% 50%, rgba(210, 17, 58, 0.20) 0%, transparent 62%),
    linear-gradient(135deg, #1a0c12 0%, #12161c 55%);
  padding: clamp(48px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.pro-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.pro-text { position: relative; z-index: 1; }
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px -6px var(--red-glow);
}
.pro-badge::before { content: '★'; font-size: 0.72rem; }
.pro-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 18px;
}
.pro-title span { color: var(--red); }
.pro-copy {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 30px;
}

.pro-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pro-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}
.pro-item:hover {
  border-color: var(--red-line);
  background: rgba(210, 17, 58, 0.06);
  transform: translateX(5px);
}
.pro-ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  color: var(--red-bright);
}
.pro-ico svg { width: 22px; height: 22px; }
.pro-item h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.pro-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   MORE GRID
   ============================================================ */
.more {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 110%, rgba(210, 17, 58, 0.10), transparent 70%);
  pointer-events: none;
}
.more-inner { position: relative; z-index: 1; }
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.more-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}
.more-card:hover {
  border-color: var(--red-line);
  transform: translateY(-5px);
  background: var(--bg-4);
}
.more-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red-soft);
  border: 1px solid var(--red-line);
  color: var(--red-bright);
  margin-bottom: 20px;
}
.more-ico svg { width: 24px; height: 24px; }
.more-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.more-card p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(210, 17, 58, 0.16), transparent 65%);
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 18px;
}
.cta h2 span { color: var(--red); }
.cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 34px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  background: var(--bg-2);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-logo { width: 38px; height: 38px; }
.footer-brand .brand-name { font-size: 1.35rem; }
.footer-tagline {
  color: var(--text-muted);
  max-width: 320px;
  font-size: 0.98rem;
}
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--red-bright); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner { flex-direction: column; text-align: center; gap: 56px; }
  .hero-text { max-width: 640px; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-phones { width: 340px; height: 470px; }
  .phone--front { width: 250px; }
  .phone--back  { width: 220px; }

  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: none; }
  .strip-item:nth-child(1), .strip-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .feature { grid-template-columns: 1fr; gap: 40px; margin-bottom: 96px; }
  .feature--flip .feature-text { order: 0; }
  .feature-visual { order: -1; }
  .feature-tag, .feature-text { text-align: left; }
  .feature-list { align-items: flex-start; }

  .pro-banner { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .brand-name { font-size: 1.4rem; }
  .hero { padding-top: calc(var(--nav-h) + 20px); }
  .hero-phones { width: 290px; height: 400px; }
  .phone--front { width: 210px; }
  .phone--back  { width: 185px; }
  .features, .more, .cta { padding-block: 84px; }
  .feature { margin-bottom: 72px; }
  .appstore img { height: 48px; }
  .footer-cols { gap: 36px; }
  .scroll-cue { display: none; }
}

/* ============================================================
   LEGAL PAGES (privacy / terms / support / success)
   ============================================================ */
.legal {
  padding: calc(var(--nav-h) + 56px) 0 100px;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.legal-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-inner h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 56px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red-line);
}
.legal-inner h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 36px 0 12px;
}
.legal-inner h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--red-bright);
  margin: 24px 0 8px;
  letter-spacing: 0.02em;
}
.legal-inner p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
}
.legal-inner a { color: var(--red-bright); text-decoration: underline; }
.legal-inner ul { list-style: none; margin: 0 0 20px; padding: 0; }
.legal-inner li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.legal-inner i, .legal-inner em { font-style: italic; color: var(--text); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 56px 0; }

/* Simple centered page (help & support) */
.center-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.center-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 45%, rgba(210, 17, 58, 0.16), transparent 65%);
  pointer-events: none;
}
.center-card { position: relative; z-index: 1; }
.center-card .brand-logo { width: 84px; height: 84px; margin: 0 auto 28px; border-radius: 20px; }
.center-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 14px;
}
.center-card h1 span { color: var(--red); }
.center-card p { color: var(--text-muted); font-size: 1.1rem; max-width: 420px; margin: 0 auto 14px; }
.center-card a.mail {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 0.02em;
}
.center-card a.mail:hover { color: var(--red); }
