/* ==========================================================================
   CreatorCam — marketing site
   Light, clean, Apple-like. Signature motif: the record dot + mono timecode.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Palette */
  --bg:        #FBFAF8;   /* warm off-white */
  --bg-2:      #FFFFFF;
  --bg-soft:   #F3F1ED;
  --ink:       #14131A;   /* near-black */
  --ink-2:     #44424E;
  --ink-3:     #7A7884;
  --line:      #E7E3DC;
  --line-2:    #EFECE6;

  /* Record red — the brand signal */
  --rec:       #FF3B30;
  --rec-deep:  #E11D12;
  --rec-soft:  #FFE9E7;

  /* Supporting accent (kept subtle) */
  --ink-glass: rgba(20, 19, 26, 0.06);

  /* Type */
  --font-display: 'Bricolage Grotesque', -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(20,19,26,.05), 0 2px 8px rgba(20,19,26,.04);
  --shadow-md: 0 12px 30px -12px rgba(20,19,26,.18), 0 2px 8px rgba(20,19,26,.05);
  --shadow-lg: 0 40px 80px -24px rgba(20,19,26,.28), 0 8px 24px rgba(20,19,26,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Subtle dot-grid texture on the page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(20,19,26,.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

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

/* ---------- Shared atoms ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.rec-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 0 0 rgba(255,59,48,.55);
  animation: recPulse 2s var(--ease) infinite;
  flex: none;
}
@keyframes recPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,48,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 1.12rem;
}
.text-rec { color: var(--rec); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 15px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--bg-2);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .substore { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.btn .substore small { font-size: 10px; font-weight: 500; opacity: .8; letter-spacing: .04em; }
.btn .substore strong { font-size: 16px; font-weight: 700; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(251,250,248,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(251,250,248,.85); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--ink);
  display: grid; place-items: center;
  flex: none;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.brand-mark::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  border: 3px solid #fff;
  -webkit-mask: radial-gradient(circle 6.5px at 50% 50%, transparent 98%, #000 100%);
          mask: radial-gradient(circle 6.5px at 50% 50%, transparent 98%, #000 100%);
  opacity: .9;
}
.brand-mark i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 8px rgba(255,59,48,.7);
}
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.02em; }
.brand-name span { color: var(--rec); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--ink-glass); }
.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--ink); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4.5px auto; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 76px 0 40px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -10%; right: -6%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,59,48,.16), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 22px 0 0;
}
.hero h1 .line { display: block; }
.hero p.lede {
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--ink-2);
  max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: .02em;
}
.hero-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.hero-meta b { color: var(--ink-2); font-weight: 500; }

/* Animated entrance */
.reveal-up { opacity: 0; transform: translateY(18px); animation: revealUp .8s var(--ease) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; }
.d3 { animation-delay: .25s; } .d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* Hero device cluster */
.hero-stage {
  position: relative; display: grid; place-items: center; min-height: 540px;
  animation: stageIn 1s .2s var(--ease) both;
}
@keyframes stageIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-stage .device { position: relative; z-index: 2; animation: floatY 6s ease-in-out infinite; }
.hero-stage .device.peek {
  position: absolute;
  z-index: 1;
  width: 178px;
  filter: drop-shadow(0 30px 50px rgba(20,19,26,.22));
}
.hero-stage .device.peek-l { left: -2%; bottom: 8%; transform: rotate(-9deg); animation: floatY 7s ease-in-out .6s infinite; }
.hero-stage .device.peek-r { right: -2%; top: 6%;  transform: rotate(8deg); animation: floatY 6.5s ease-in-out .3s infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-stage .device.peek-l { animation-name: floatYL; }
.hero-stage .device.peek-r { animation-name: floatYR; }
@keyframes floatYL { 0%,100% { transform: rotate(-9deg) translateY(0);} 50%{ transform: rotate(-9deg) translateY(-12px);} }
@keyframes floatYR { 0%,100% { transform: rotate(8deg) translateY(0);} 50%{ transform: rotate(8deg) translateY(-16px);} }

/* ---------- Device / phone frame ---------- */
.device {
  width: 270px;
  background: #0d0d12;
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
}
.device::after { /* side button hint */
  content: ""; position: absolute; right: -2px; top: 120px; width: 2px; height: 52px;
  background: #2a2a32; border-radius: 2px;
}
.device-screen {
  position: relative;
  border-radius: 31px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #111;
}
.device-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; background: #0d0d12; border-radius: 100px; z-index: 5;
}
.device-screen svg { width: 100%; height: 100%; }

/* ==========================================================================
   Logos / trust strip
   ========================================================================== */
.strip { padding: 26px 0 8px; }
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 34px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.strip-inner b { color: var(--ink-2); font-weight: 500; }
.strip-inner .pipe { color: var(--line); }

/* ==========================================================================
   Modes — the three capture modes (centerpiece)
   ========================================================================== */
.modes { padding: 96px 0 40px; }
.mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
}
.mode + .mode { border-top: 1px solid var(--line-2); }
.mode.flip .mode-media { order: 2; }
.mode-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--rec-deep);
  background: var(--rec-soft);
  padding: 6px 12px; border-radius: 8px;
}
.mode-tag .n { color: var(--ink-3); }
.mode h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 16px 0 14px;
}
.mode p { color: var(--ink-2); font-size: 1.08rem; max-width: 460px; }
.mode-points { margin-top: 22px; display: grid; gap: 12px; }
.mode-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 1rem; }
.mode-points .tick {
  flex: none; margin-top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.mode-points .tick svg { width: 11px; height: 11px; }
.mode-media { display: grid; place-items: center; }
.mode-media .device { width: 252px; }

/* ==========================================================================
   Feature grid
   ========================================================================== */
.features { padding: 96px 0; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #ddd8cf; }
.feat-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  margin-bottom: 18px;
}
.feat-ico svg { width: 23px; height: 23px; }
.feat-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -.02em; }
.feat-card p { margin-top: 9px; color: var(--ink-2); font-size: .99rem; }

/* ==========================================================================
   Teleprompter spotlight
   ========================================================================== */
.spot {
  margin: 40px 0;
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.spot::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,59,48,.34), transparent 60%);
  pointer-events: none;
}
.spot-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.spot .eyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: #d8d6df; }
.spot h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.04; letter-spacing: -.03em;
  margin: 20px 0 16px;
}
.spot p { color: #b9b7c2; font-size: 1.08rem; max-width: 440px; }
.spot-list { margin-top: 26px; display: grid; gap: 16px; }
.spot-list li { display: flex; gap: 14px; align-items: flex-start; }
.spot-list .k {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--rec); border: 1px solid rgba(255,59,48,.4); border-radius: 6px;
  padding: 4px 7px; flex: none; letter-spacing: .06em;
}
.spot-list b { font-weight: 600; }
.spot-list span { color: #b9b7c2; }

/* Teleprompter visual mock */
.tp {
  background: linear-gradient(180deg, #1b1b22, #131318);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.tp-bar { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: #8b8995; letter-spacing: .05em; }
.tp-bar .rec-dot { width: 8px; height: 8px; }
.tp-bar .sp { margin-left: auto; }
.tp-screen { margin-top: 16px; position: relative; height: 230px; overflow: hidden; border-radius: 14px; -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 64%, transparent); mask-image: linear-gradient(180deg, transparent, #000 22%, #000 64%, transparent); }
.tp-scroll { animation: tpScroll 16s linear infinite; }
.tp-line { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; line-height: 1.5; color: #6c6a76; padding: 5px 4px; transition: color .3s; }
.tp-line.read { color: #fff; }
@keyframes tpScroll { from { transform: translateY(40%); } to { transform: translateY(-78%); } }
.tp-guide { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,59,48,.7), transparent); }
.tp-ctrls { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.tp-ctrls .pill { font-family: var(--font-mono); font-size: 11px; color: #b9b7c2; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 6px 12px; }
.tp-ctrls .play { width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.tp-ctrls .play svg { width: 13px; height: 13px; color: #14131a; }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps { padding: 96px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: var(--rec-deep);
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.02em; margin: 14px 0 8px; }
.step p { color: var(--ink-2); font-size: 1rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta { padding: 30px 0 96px; }
.cta-card {
  background: radial-gradient(120% 130% at 80% 10%, #2a1412 0%, #14131a 46%);
  color: #fff;
  border-radius: 34px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 70%);
          mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 70%);
}
.cta-card .inner { position: relative; z-index: 1; }
.cta-card .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: #e7e5ee; margin-bottom: 22px; }
.cta-card h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.02; letter-spacing: -.03em;
}
.cta-card p { color: #b9b7c2; font-size: 1.15rem; margin: 16px auto 0; max-width: 480px; }
.cta-card .hero-actions { justify-content: center; margin-top: 32px; }
.cta-card .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); }
.cta-card .btn-primary { background: #fff; color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--ink-2); font-size: .98rem; margin: 16px 0 20px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--ink-2); font-size: .98rem; transition: color .2s; }
.footer-col a:hover { color: var(--rec); }
.footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: .9rem; color: var(--ink-3);
}
.footer-bottom .made { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .03em; }

/* ==========================================================================
   Legal / support sub-pages
   ========================================================================== */
.page { padding: 64px 0 88px; }
.page-head { max-width: 760px; margin: 0 auto 44px; }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.02; letter-spacing: -.03em;
}
.page-head .updated { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em;
  margin: 40px 0 12px; padding-top: 8px;
}
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin: 24px 0 8px; }
.prose p { color: var(--ink-2); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-2); }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--rec);
}
.prose a { color: var(--rec-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); font-weight: 600; }
.callout {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--rec);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; letter-spacing: -.01em;
  color: var(--ink);
}
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--ink-3); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); color: var(--rec); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 22px; color: var(--ink-2); }
.faq-a-inner a { color: var(--rec-deep); text-decoration: underline; text-underline-offset: 2px; }

/* Support contact cards */
.support-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin: 0 auto 48px; }
.support-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.support-card .feat-ico { margin-bottom: 16px; }
.support-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.support-card p { color: var(--ink-2); margin: 8px 0 14px; font-size: .98rem; }
.support-card a { font-weight: 600; color: var(--rec-deep); }

/* Contact form */
.contact { max-width: 760px; margin: 0 auto 48px; }
.contact-form {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm); position: relative;
}
.contact-form h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; }
.contact-lead { color: var(--ink-2); margin: 8px 0 24px; font-size: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--rec); box-shadow: 0 0 0 3px var(--rec-soft);
}
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-actions { display: flex; align-items: center; gap: 22px; margin-top: 6px; flex-wrap: wrap; }
.contact-faq-link { font-weight: 600; color: var(--rec-deep); }
.form-status { margin: 16px 0 0; font-size: .95rem; min-height: 1.2em; }
.form-status.ok  { color: #176b3c; }
.form-status.err { color: var(--rec-deep); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-stage { min-height: 480px; margin-top: 12px; }
  .mode, .spot-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mode.flip .mode-media { order: 0; }
  .mode-points { max-width: 460px; }
  .feat-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spot, .cta-card { padding: 40px 28px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(251,250,248,.97);
    backdrop-filter: blur(18px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .3s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
  .nav-links .nav-cta { margin: 8px 0 0; justify-content: center; }
  .nav-toggle { display: block; }
  .feat-grid, .steps-grid, .support-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stage .device.peek { display: none; }
  .strip-inner .pipe { display: none; }
}

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