/* ============================================================
   Speak To Track — marketing site
   Single-file modern stylesheet. Light, Apple-inspired aesthetic.
   ============================================================ */

:root {
  --blue: #3D7AFE;
  --blue-deep: #2456D6;
  --blue-soft: #EBF1FF;
  --ink: #0A0E1A;
  --ink-2: #1B2030;
  --muted: #5A6478;
  --muted-2: #8A93A6;
  --line: #E5E8F0;
  --bg: #FFFFFF;
  --bg-2: #F7F8FC;
  --bg-3: #F1F3F9;
  --accent-green: #34c759;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.10), 0 6px 12px -8px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.18), 0 18px 36px -18px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 22px 50px -18px rgba(61, 122, 254, 0.55);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1180px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

/* ============================================================ NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(229, 232, 240, 0.7);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 16px -6px rgba(61, 122, 254, 0.45);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.brand-mark.small { width: 28px; height: 28px; border-radius: 7px; }
.brand-mark svg { width: 18px; height: 18px; }
.brand-text { font-size: 16px; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s var(--easing);
}
.nav-links a:hover { color: var(--ink); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background 0.2s var(--easing);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); background: var(--ink-2); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-1px); border-color: #cbd2e0; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 17px; }

/* ============================================================ HERO */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 50%;
}
.blob-a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(61, 122, 254, 0.45) 0%, rgba(61, 122, 254, 0) 70%);
  top: -100px;
  right: -120px;
  animation: float 14s ease-in-out infinite;
}
.blob-b {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(140, 100, 255, 0.35) 0%, rgba(140, 100, 255, 0) 70%);
  bottom: -200px;
  left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}
.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.18);
}

.display {
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
  color: var(--ink);
}
.display-sm { font-size: clamp(36px, 4.5vw, 56px); }

.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 30px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-pill .check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trust-pill .check::after {
  content: '';
  width: 6px; height: 3px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(0px, -1px);
}

/* --- Hero phone stack --- */
.hero-phone-stack {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #fff;
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #0a0e1a,
    0 0 0 11px #1b2030,
    var(--shadow-lg);
}
.phone-dark { background: #000; }
.phone-dark img { background: #000; }
.phone img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}
.phone-front {
  z-index: 2;
  transform: rotate(-3deg) translateX(-10px);
}
.phone-back {
  position: absolute;
  z-index: 1;
  transform: rotate(8deg) translate(110px, 30px);
  opacity: 0.95;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
}
.phone-status .notch {
  width: 90px; height: 24px;
  background: #0a0e1a;
  border-radius: 999px;
  margin-top: 8px;
}
.status-icons { display: inline-flex; align-items: center; gap: 4px; color: var(--ink); }

.demo-screen {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}
.demo-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  background: rgba(255, 59, 48, 0.08);
  color: #ff3b30;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.demo-rec-dot {
  width: 7px; height: 7px;
  background: #ff3b30;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.demo-transcript {
  flex: 1;
  padding: 6px 22px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  min-height: 100px;
}
.demo-transcript .cursor {
  display: inline-block;
  color: var(--blue);
  animation: caret 1s steps(1) infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes caret {
  50% { opacity: 0; }
}
.demo-waveform {
  height: 60px;
  margin: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.wave-bar {
  width: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: height 0.15s ease;
}
.demo-mic {
  position: relative;
  width: 72px; height: 72px;
  margin: 18px auto 30px;
}
.mic-button {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}
.mic-button svg { width: 32px; height: 32px; }
.mic-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.7); opacity: 0; }
}

.parsed-card {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--easing);
  pointer-events: none;
  z-index: 3;
}
.parsed-card.show {
  opacity: 1;
  transform: translateY(0);
}
.parsed-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.parsed-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.parsed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.parsed-row .tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.parsed-row .tick::after {
  content: '';
  width: 6px; height: 3px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(0, -1px);
}

/* ============================================================ EXAMPLES */
.examples {
  padding: 100px 0 60px;
  background: var(--bg);
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 50px;
}
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.kicker-light { color: rgba(255,255,255,0.7); }
.section-title-light { color: white; }
.section-lede-light { color: rgba(255,255,255,0.72); }

.example-grid {
  display: grid;
  gap: 18px;
}
.example {
  display: grid;
  grid-template-columns: 1.1fr 30px 1.2fr;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.example:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: white;
}
.example-quote {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.01em;
}
.example-arrow {
  color: var(--muted-2);
  font-size: 22px;
  font-weight: 300;
  text-align: center;
}
.example-out {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.chip-event {
  background: rgba(61, 122, 254, 0.10);
  color: var(--blue-deep);
}
.chip-scale {
  background: rgba(140, 100, 255, 0.12);
  color: #6b46c1;
}
.chip-numeric {
  background: rgba(52, 199, 89, 0.12);
  color: #1e8c43;
}

/* ============================================================ HOW IT WORKS */
.how {
  padding: 100px 0;
  background: var(--bg);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  padding: 36px 30px;
  background: linear-gradient(180deg, white 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--easing);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}

/* ============================================================ BENTO FEATURES */
.features {
  padding: 100px 0;
  background: var(--bg-2);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.bento-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
  grid-column: span 3;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
}
.bento-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}
.bento-large {
  grid-column: span 6;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 50px 56px;
  max-width: 920px;
  margin: 0 auto;
}
.bento-large h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.bento-large p { font-size: 17px; line-height: 1.6; }
.bento-tall {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.bento-tall .bento-visual {
  margin-top: 20px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.bento-visual img {
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  border: 4px solid #0a0e1a;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--easing);
}
.bento-large:hover .bento-visual img,
.bento-tall:hover .bento-visual img {
  transform: rotate(0deg) scale(1.02);
}
.phone-tilt-r img { transform: rotate(2.5deg); }

.lock-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 13px;
  background: var(--bg-3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
}
.mini-chart {
  margin-top: 18px;
  background: var(--bg-3);
  border-radius: 14px;
  padding: 14px;
}
.mini-chart svg { width: 100%; height: auto; display: block; }

/* ============================================================ PRIVACY */
.privacy {
  padding: 110px 0;
  background: linear-gradient(160deg, #0A0E1A 0%, #14182A 50%, #1B2030 100%);
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 70% 30%, rgba(61, 122, 254, 0.18), transparent);
  pointer-events: none;
}
.privacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.privacy-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.5;
}
.privacy-points li strong { color: white; font-weight: 600; }
.privacy-points svg {
  width: 22px; height: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(61,122,254,0.12);
  border-radius: 50%;
  padding: 4px;
}

.privacy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: white;
}
.lock-big {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, #6B9BFF 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-blue);
}
.lock-big svg { width: 32px; height: 32px; }
.privacy-stat { margin: 18px 0; }
.stat-big {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, white 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}
.privacy-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

/* ============================================================ GALLERY */
.gallery {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}
.gallery-rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 30px 24px 50px;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-phone {
  flex: 0 0 240px;
  scroll-snap-align: center;
  transition: transform 0.3s var(--easing);
}
.gallery-phone:hover { transform: translateY(-6px); }
.phone-caption {
  position: absolute;
  bottom: -36px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================ REQUIREMENTS */
.reqs {
  padding: 80px 0;
  background: var(--bg-2);
  text-align: center;
}
.reqs .section-title { margin-bottom: 50px; }
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.req {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.req:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.req-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.req-icon svg { width: 24px; height: 24px; }
.req h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.req p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

/* ============================================================ FINAL CTA */
.cta-final {
  padding: 130px 0 110px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-soft) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .display { margin-bottom: 14px; }
.cta-final .section-lede {
  margin: 0 auto 40px;
  text-align: center;
}

/* ============================================================ FOOTER */
.footer {
  padding: 60px 0 50px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer .brand { color: white; }
.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 12px 0 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s var(--easing);
}
.footer-links a:hover { color: white; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* ============================================================ SUPPORT PAGE */
.support-hero {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}
.support-hero .display {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 14px;
}
.support-hero .section-lede {
  margin: 0 auto;
  text-align: center;
}
.support-section {
  padding: 60px 0 80px;
  background: var(--bg);
}
.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.support-contact {
  position: sticky;
  top: 100px;
  background: linear-gradient(160deg, white 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.support-contact h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.support-contact p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s var(--easing);
}
.contact-line:hover { transform: translateX(2px); }
.contact-line svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-line span:last-child { color: var(--muted); font-weight: 400; font-size: 14px; margin-left: auto; }

.faq h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-q {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s var(--easing);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  padding-top: 14px;
}
.faq-a a { color: var(--blue); border-bottom: 1px solid currentColor; }

.support-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.support-pill {
  padding: 22px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.support-pill h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}
.support-pill p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-phone-stack { min-height: 560px; margin-top: 20px; }
  .phone-back { display: none; }
  .phone-front { transform: rotate(-2deg); }
  .steps { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-card, .bento-large, .bento-tall { grid-column: span 2; grid-row: auto; }
  .bento-large { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .req-grid { grid-template-columns: 1fr; }
  .example { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .example-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .footer-copy { text-align: left; }
  .nav-links { display: none; }
  .support-grid { grid-template-columns: 1fr; }
  .support-contact { position: static; }
  .support-pill-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .display { font-size: 44px; }
  .lede { font-size: 17px; }
  .section-title { font-size: 30px; }
  .section-lede { font-size: 16px; }
  .container, .nav-inner, .hero-inner { padding-left: 18px; padding-right: 18px; }
  .phone { width: 240px; }
}
