/* ============================================================
   Zoomoff — Coming Soon landing page styles
   Built on the Zoomoff design tokens (colors_and_type.css).
   ============================================================ */

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

html { scroll-behavior: smooth; }

body.zo {
  background: var(--zo-white);
  color: var(--zo-ink-950);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--zo-font-body); font-weight: 700; font-size: 15px;
  border: 0; border-radius: var(--zo-radius-pill); cursor: pointer;
  padding: 13px 22px; transition: transform .14s var(--zo-ease-out), box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--zo-purple-700); color: #fff; box-shadow: var(--zo-shadow-brand); }
.btn-primary:hover { background: var(--zo-purple-600); transform: translateY(-1px); }
.btn-glass { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.22); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-light { background: #fff; color: var(--zo-purple-800); box-shadow: var(--zo-shadow-md); }
.btn-light:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--zo-ink-800); }
.btn-ghost:hover { background: var(--zo-ink-50); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Eyebrow / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--zo-radius-pill);
  font-family: var(--zo-font-body); font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.pill-glass { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.pill-soft  { background: var(--zo-purple-100); color: var(--zo-purple-800); }
.pill-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--zo-success-500); box-shadow: 0 0 0 0 rgba(31,175,101,0.7); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,175,101,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(31,175,101,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,175,101,0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--zo-z-nav);
  transition: background .25s, box-shadow .25s, padding .25s;
  padding: 18px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--zo-ink-100);
  padding: 12px 0;
}
.nav-logo { height: 30px; transition: filter .25s; }
.nav.at-top .nav-logo { filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--zo-font-body); font-weight: 600; font-size: 14.5px;
  color: rgba(255,255,255,0.85); transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--zo-ink-600); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--zo-purple-700); }
/* Keep the CTA button readable in both nav states (white text on purple). */
.nav .nav-links a.nav-cta,
.nav.scrolled .nav-links a.nav-cta,
.nav.scrolled .nav-links a.nav-cta:hover { color: #fff; }
.nav-cta { font-size: 14px; padding: 10px 18px; }
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--zo-grad-brand-h);
  color: #fff;
  padding: 168px 0 120px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--zo-white) 100%);
  pointer-events: none;
}
/* Motion streaks */
.streaks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.streak { position: absolute; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.5); animation: zoom 3.2s linear infinite; }
@keyframes zoom {
  0%   { transform: translateX(-120%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(220%); opacity: 0; }
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 {
  font-family: var(--zo-font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.03em;
  margin: 22px 0 0;
}
.hero h1 .accent { color: #e7d4f3; font-style: italic; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: rgba(255,255,255,0.85); margin-top: 20px; max-width: 520px; }

/* Email capture */
.capture { margin-top: 30px; max-width: 480px; }
.capture-row { display: flex; gap: 10px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--zo-radius-pill); padding: 6px; backdrop-filter: blur(8px); }
.capture-row input {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
  color: #fff; font-family: var(--zo-font-body); font-size: 15px; padding: 0 16px;
}
.capture-row input::placeholder { color: rgba(255,255,255,0.6); }
.capture-note { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.capture.done .capture-row { background: rgba(31,175,101,0.18); border-color: rgba(31,175,101,0.5); }

.hero-meta { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta .m-num { font-family: var(--zo-font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; }
.hero-meta .m-lbl { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* Hero visual — a real app screen in a phone, with floating context cards */
.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: flex-end; }
.hero-phone {
  position: relative; z-index: 1;
  width: 230px; height: 478px; flex-shrink: 0;
  background: #0d0a18; border-radius: 38px; padding: 9px;
  box-shadow: 0 36px 70px rgba(0,0,0,0.34), 0 0 0 1.5px rgba(255,255,255,0.10);
}
.hero-phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 23px; background: #0d0a18; border-radius: 0 0 14px 14px; z-index: 3;
}
.hero-phone-screen { width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #fff; }
.hero-phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.float-card {
  position: absolute; z-index: 4; background: #fff; color: var(--zo-ink-950);
  border-radius: var(--zo-radius-lg); box-shadow: var(--zo-shadow-xl);
  padding: 16px 18px; width: 220px;
  animation: bob 5s ease-in-out infinite;
}
.float-card .fc-row { display: flex; align-items: center; gap: 12px; }
.fc-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-title { font-family: var(--zo-font-body); font-weight: 700; font-size: 14px; }
.fc-sub { font-size: 12px; color: var(--zo-ink-500); margin-top: 1px; }
.fc-2 { top: 40px; left: 0; animation-delay: .8s; z-index: 4; }
.fc-3 { bottom: 36px; left: 0; animation-delay: 1.6s; z-index: 4; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fc-big { font-family: var(--zo-font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(183,133,221,0.55) 0%, rgba(183,133,221,0) 70%); top: 70px; left: 60px; filter: blur(8px); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 140px 0 90px; }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 {
  font-family: var(--zo-font-display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1.08; letter-spacing: -0.025em;
  margin-top: 14px; color: var(--zo-ink-950);
}
.section-head p { font-size: 17px; line-height: 1.6; color: var(--zo-ink-500); margin-top: 16px; }
.eyebrow {
  font-family: var(--zo-font-body); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--zo-purple-700);
}

/* ============================================================
   AUDIENCE TOGGLE + BENEFITS
   ============================================================ */
.aud { background: var(--zo-purple-50); }
.toggle {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--zo-radius-pill);
  background: #fff; box-shadow: var(--zo-shadow-sm); margin: 0 auto 44px; border: 1px solid var(--zo-ink-100);
}
.toggle button {
  border: 0; cursor: pointer; background: transparent;
  font-family: var(--zo-font-body); font-weight: 700; font-size: 15px; color: var(--zo-ink-600);
  padding: 11px 24px; border-radius: var(--zo-radius-pill); transition: all .2s var(--zo-ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.toggle button.active { background: var(--zo-purple-700); color: #fff; box-shadow: var(--zo-shadow-brand); }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard {
  background: #fff; border: 1px solid var(--zo-ink-100); border-radius: var(--zo-radius-xl);
  padding: 28px; transition: transform .2s var(--zo-ease-out), box-shadow .2s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--zo-shadow-lg); }
.bcard .b-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--zo-purple-100); color: var(--zo-purple-700); margin-bottom: 18px; }
.bcard h3 { font-family: var(--zo-font-body); font-weight: 700; font-size: 19px; color: var(--zo-ink-950); }
.bcard p { font-size: 14.5px; line-height: 1.6; color: var(--zo-ink-500); margin-top: 8px; }
.bcard.wide { grid-column: span 3; display: flex; align-items: center; gap: 24px; padding: 24px 28px; background: var(--zo-grad-brand-h); color: #fff; border: 0; }
.bcard.wide .b-ico { background: rgba(255,255,255,0.16); color: #fff; margin: 0; flex-shrink: 0; }
.bcard.wide h3 { color: #fff; }
.bcard.wide p { color: rgba(255,255,255,0.82); margin-top: 4px; }
@media (max-width: 880px) { .benefits { grid-template-columns: 1fr; } .bcard.wide { grid-column: span 1; flex-direction: column; align-items: flex-start; } }

.audpane { display: none; }
.audpane.show { display: block; animation: fade .35s var(--zo-ease-out); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SHOWCASE (app screenshots in phone frames)
   ============================================================ */
.showcase { background: linear-gradient(180deg, var(--zo-purple-50) 0%, #ffffff 100%); }
.phones {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin: 48px 0 30px; flex-wrap: wrap;
}
.phone {
  position: relative; flex-shrink: 0;
  width: 248px; height: 512px;
  background: #0d0a18; border-radius: 40px;
  padding: 10px;
  box-shadow: var(--zo-shadow-xl), 0 0 0 1.5px rgba(0,0,0,0.12);
}
.phone-center { width: 270px; height: 556px; z-index: 2; }
.phone-side { transform: translateY(18px); opacity: 0.96; }
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0d0a18; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: var(--zo-ink-100); position: relative;
}
.phone-screen image-slot {
  --image-slot-bg: var(--zo-purple-50);
  --image-slot-border: 1.5px dashed var(--zo-purple-300);
  --image-slot-color: var(--zo-purple-700);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.phone-tag {
  position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  white-space: nowrap; font-family: var(--zo-font-body); font-weight: 700;
  font-size: 12.5px; color: var(--zo-ink-600);
}
.showcase-hint {
  text-align: center; margin-top: 30px;
  font-size: 13.5px; color: var(--zo-ink-500); font-weight: 600;
}
@media (max-width: 880px) {
  .phone-side { display: none; }
  .phone-center { width: 260px; height: 536px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-copy p { font-size: 16.5px; line-height: 1.7; color: var(--zo-ink-600); margin-top: 18px; }
.about-copy p strong { color: var(--zo-ink-950); font-weight: 700; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value {
  background: var(--zo-ink-50); border-radius: var(--zo-radius-lg); padding: 22px;
  border: 1px solid var(--zo-ink-100);
}
.value .v-ico { width: 40px; height: 40px; border-radius: 11px; background: #fff; color: var(--zo-purple-700); display: flex; align-items: center; justify-content: center; box-shadow: var(--zo-shadow-sm); margin-bottom: 14px; }
.value h4 { font-family: var(--zo-font-body); font-weight: 700; font-size: 16px; color: var(--zo-ink-950); }
.value p { font-size: 13.5px; line-height: 1.55; color: var(--zo-ink-500); margin-top: 6px; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--zo-ink-950); color: #fff; position: relative; overflow: hidden; }
.contact .streaks .streak { background: rgba(183,133,221,0.4); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact h2 { font-family: var(--zo-font-display); font-weight: 800; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.08; letter-spacing: -0.025em; margin-top: 14px; }
.contact .eyebrow { color: var(--zo-purple-300); }
.contact-lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-top: 18px; }
.contact-email {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 20px; border-radius: var(--zo-radius-lg); transition: background .2s;
}
.contact-email:hover { background: rgba(255,255,255,0.12); }
.contact-email .ce-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--zo-purple-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-email .ce-lbl { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.contact-email .ce-val { font-family: var(--zo-font-body); font-weight: 700; font-size: 18px; margin-top: 2px; }
.contact-socials { display: flex; gap: 12px; margin-top: 26px; }
.soc { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: all .2s; }
.soc:hover { background: var(--zo-purple-700); color: #fff; transform: translateY(-2px); }

/* Contact form */
.cform { background: #fff; border-radius: var(--zo-radius-2xl); padding: 32px; color: var(--zo-ink-950); box-shadow: var(--zo-shadow-xl); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--zo-font-body); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--zo-ink-500); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--zo-ink-150); border-radius: var(--zo-radius-md);
  padding: 13px 15px; font-family: var(--zo-font-body); font-size: 15px; color: var(--zo-ink-950);
  outline: 0; transition: border .18s, box-shadow .18s; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--zo-purple-700); box-shadow: 0 0 0 4px rgba(95,33,135,0.1); }
.field textarea { resize: vertical; min-height: 110px; }
.cform .btn { width: 100%; margin-top: 6px; }
.cform-ok { display: none; text-align: center; padding: 30px 10px; }
.cform-ok.show { display: block; }
.cform-ok .ok-ico { width: 64px; height: 64px; border-radius: 999px; background: var(--zo-success-100); color: var(--zo-success-700); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--zo-ink-950); color: rgba(255,255,255,0.6); padding: 40px 0 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer img { height: 26px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Icons */
.ic { width: 22px; height: 22px; stroke-width: 2; }
