/* ==========================================================
   BICON · brand stylesheet
   Refined fintech · navy + cyan · serif/sans tension
   ========================================================== */

:root {
  /* navys */
  --navy-deepest: #050D1A;
  --navy-deep:    #0A1628;
  --navy:         #0F1F36;
  --navy-soft:    #1A2D4A;
  --navy-line:    rgba(255,255,255,.08);
  --navy-line-strong: rgba(255,255,255,.14);

  /* cyans + mint */
  --cyan:         #1FE3F0;
  --cyan-bright:  #5BEEF7;
  --cyan-dim:     #0FB8C7;
  --mint:         #5DD9C4;
  --mint-soft:    #A8E6D0;

  /* light */
  --paper:        #FAFAF7;
  --paper-warm:   #F2EFE8;
  --ink:          #0A1628;
  --ink-soft:     #2A3B52;
  --ink-mute:     #5D6F87;
  --line-light:   rgba(10,22,40,.10);
  --line-soft:    rgba(10,22,40,.06);

  /* type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--cyan); color: var(--navy-deep); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============== SCROLL BEACON =============== */
.scroll-beacon {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan-bright), var(--cyan));
  z-index: 100;
  transition: width .08s linear;
  box-shadow: 0 0 12px var(--cyan);
}

/* ============== NAV ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  color: var(--paper);
}
.nav.scrolled {
  background: rgba(10,22,40,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding-top: 14px;
  padding-bottom: 14px;
  border-color: var(--navy-line);
}
.page-install .nav,
.nav.light {
  color: var(--ink);
}
.page-install .nav.scrolled,
.nav.light.scrolled {
  background: rgba(250,250,247,.85);
  border-color: var(--line-light);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: inherit;
}
.brand-glyph {
  width: 38px;
  height: 20px;
  color: var(--mint);
  transition: transform .3s ease;
}
.nav-brand:hover .brand-glyph { transform: scale(1.08); }
.brand-word { color: inherit; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  opacity: .82;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px; width: 0;
  background: var(--cyan);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform .3s ease, opacity .2s ease;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 0;
    padding: 24px var(--gutter);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid var(--navy-line);
    color: var(--paper);
  }
  .page-install .nav-links {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line-light);
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--navy-line);
    font-size: 18px;
  }
  .page-install .nav-links a {
    border-color: var(--line-light);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
  box-shadow: 0 0 0 0 var(--cyan), 0 6px 24px -10px rgba(31,227,240,.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--cyan-bright);
  box-shadow: 0 0 0 4px rgba(31,227,240,.15), 0 12px 32px -10px rgba(31,227,240,.7);
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: .9;
}
.btn-ghost:hover {
  opacity: 1;
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}
.page-install .btn-ghost,
.btn-ghost.dark {
  border-color: var(--line-light);
  color: var(--ink);
}
.page-install .btn-ghost:hover,
.btn-ghost.dark:hover {
  background: rgba(10,22,40,.04);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 16.5px; }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ============== HERO ======================== */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--paper);
  padding: 140px var(--gutter) 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: .35;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: -150px; right: -150px;
  opacity: .35;
  animation: glow-drift 22s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4F7DF7 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: .25;
  animation: glow-drift 28s ease-in-out infinite reverse;
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .18;
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--navy-line-strong);
  border-radius: 100px;
  background: rgba(31,227,240,.06);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 96px);
  line-height: .96;
  letter-spacing: -.025em;
  margin-bottom: 28px;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan);
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(250,250,247,.72);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--paper);
}
.trust-label {
  font-size: 12.5px;
  color: rgba(250,250,247,.5);
  letter-spacing: .01em;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--navy-line-strong);
}

/* ============== PHONE MOCKUP ================ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #1a1a1f, #0d0d12);
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.08),
    inset 0 0 0 1.5px rgba(255,255,255,.05),
    0 50px 80px -30px rgba(0,0,0,.6),
    0 0 60px -10px rgba(31,227,240,.3);
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.hero-visual:hover .phone { transform: rotate(0deg); }
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0F1F36 0%, #0A1628 40%, #050D1A 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  color: var(--paper);
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 0;
  font-size: 13px;
  font-weight: 600;
  height: 44px;
}
.phone-status-right { display: flex; gap: 6px; opacity: .9; }
.phone-status-right svg { width: 14px; height: 9px; }

.phone-content {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: calc(100% - 44px);
}
.phone-appbar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-logo { width: 30px; height: 16px; color: var(--mint); }
.phone-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.005em;
}
.phone-greeting {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.phone-greeting-eyebrow {
  font-size: 11px;
  color: rgba(250,250,247,.55);
  letter-spacing: .03em;
}
.phone-greeting-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.phone-card {
  background: linear-gradient(160deg, rgba(31,227,240,.10), rgba(31,227,240,.02));
  border: 1px solid rgba(31,227,240,.18);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.phone-card-label {
  font-size: 11px;
  color: rgba(250,250,247,.6);
  letter-spacing: .02em;
}
.phone-card-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.phone-card-cents {
  font-size: 18px;
  color: rgba(250,250,247,.55);
}
.phone-card-delta {
  font-size: 11px;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.phone-card-delta svg { width: 10px; height: 10px; }
.phone-chart {
  width: 100%;
  height: 40px;
  margin-top: 4px;
}
.phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.phone-mini {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-mini-label {
  font-size: 10.5px;
  color: rgba(250,250,247,.55);
  letter-spacing: .02em;
}
.phone-mini-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.phone-fab {
  margin-top: auto;
  background: var(--cyan);
  color: var(--navy-deep);
  border-radius: 100px;
  padding: 12px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 18px -6px rgba(31,227,240,.7);
}
.phone-fab svg { width: 14px; height: 14px; }

.phone-shadow {
  position: absolute;
  width: 260px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,.4), transparent 70%);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(8px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(250,250,247,.55);
  z-index: 2;
}
.hero-scroll svg {
  width: 12px; height: 20px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 980px) {
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; padding: 0; }
  .phone { width: 240px; height: 500px; transform: rotate(-1.5deg); }
  .hero-scroll { display: none; }
}
@media (max-width: 540px) {
  .phone { width: 220px; height: 460px; }
  .hero-trust { gap: 18px; }
  .trust-divider { display: none; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}

/* ============== SECTION HEADS =============== */
.section-head {
  margin-bottom: 60px;
  max-width: 720px;
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.label-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--cyan-dim);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 540px;
}
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }
.section-head-center .section-label { justify-content: center; }

/* ============== POSITIONING ================= */
.positioning {
  padding: 120px var(--gutter);
  background: var(--paper);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  align-items: start;
}
.positioning-left .section-label { margin-bottom: 0; }
.positioning-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.positioning-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-dim);
}
.positioning-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px;
}
.positioning-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  max-width: 640px;
}
.positioning-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 54px);
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-mute);
}
@media (max-width: 880px) {
  .positioning { padding: 80px var(--gutter); }
  .positioning-grid { grid-template-columns: 1fr; gap: 30px; }
  .positioning-stats { grid-template-columns: 1fr; gap: 22px; }
}

/* ============== FEATURES ==================== */
.features {
  padding: 120px var(--gutter);
  background: var(--paper-warm);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--line-light);
  box-shadow: 0 24px 50px -28px rgba(10,22,40,.18);
}
.feature:hover::before { opacity: 1; }
.feature-lg {
  grid-column: 1 / -1;
  padding: 44px 48px;
}
.feature-lg h3 {
  font-size: 30px;
  max-width: 720px;
}
.feature-lg p {
  max-width: 640px;
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy-deep);
  color: var(--cyan);
  margin-bottom: 24px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.feature p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-column: 1 / -1; padding: 36px 32px; }
}
@media (max-width: 640px) {
  .features { padding: 80px var(--gutter); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-lg, .feature { grid-column: span 1; padding: 32px 28px; }
}

/* ============== SPOTLIGHT =================== */
.spotlight {
  position: relative;
  padding: 130px var(--gutter);
  background: var(--navy-deep);
  color: var(--paper);
  overflow: hidden;
}
.spotlight-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.spotlight-bg .hero-grid {
  opacity: .25;
}
.spotlight-bg .hero-glow-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  opacity: .22;
}
.spotlight-bg .hero-glow-2 {
  width: 450px; height: 450px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, #25D366 0%, transparent 70%);
  opacity: .15;
}
.spotlight-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.spotlight-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone-spotlight {
  transform: rotate(-3deg);
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.spotlight-visual:hover .phone-spotlight {
  transform: rotate(-1deg) translateY(-4px);
}
.spotlight-badge {
  position: absolute;
  bottom: 80px;
  right: 6%;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.15),
    0 16px 36px -8px rgba(37,211,102,.55),
    0 0 40px -10px rgba(37,211,102,.6);
  transform: rotate(5deg);
  z-index: 3;
  animation: badge-float 4s ease-in-out infinite;
}
.spotlight-badge svg {
  width: 16px;
  height: 16px;
}
@keyframes badge-float {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-6px); }
}

.spotlight-label {
  color: rgba(250,250,247,.55) !important;
}
.spotlight-label .label-num {
  color: var(--mint);
}
.spotlight-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--paper);
  margin: 4px 0 28px;
}
.spotlight-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--mint);
}
.spotlight-text p {
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(250,250,247,.75);
  margin-bottom: 40px;
  max-width: 520px;
}
.spotlight-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-line-strong);
  max-width: 460px;
}
.spotlight-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spotlight-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -.015em;
  color: var(--paper);
  line-height: 1;
}
.spotlight-stats .stat-label {
  font-size: 13px;
  color: rgba(250,250,247,.55);
}

@media (max-width: 980px) {
  .spotlight { padding: 90px var(--gutter); }
  .spotlight-grid { grid-template-columns: 1fr; gap: 60px; }
  .spotlight-visual { order: -1; min-height: 540px; }
  .phone-spotlight { width: 240px; height: 500px; }
  .spotlight-badge { bottom: 60px; right: 10%; }
}
@media (max-width: 540px) {
  .phone-spotlight { width: 220px; height: 460px; }
  .spotlight-badge { bottom: 40px; right: 5%; padding: 10px 14px; font-size: 12.5px; }
  .spotlight-stats { gap: 28px; }
}

/* ============== HOW IT WORKS ================ */
.how {
  padding: 120px var(--gutter);
  background: var(--paper);
}
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 900px;
}
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
  position: relative;
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: var(--cyan-dim);
  letter-spacing: -.02em;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}
.step-body p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
}
@media (max-width: 640px) {
  .how { padding: 80px var(--gutter); }
  .step { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .step-num { font-size: 40px; }
}

/* ============== SHOWCASE ==================== */
.showcase {
  padding: 120px var(--gutter);
  background: var(--paper-warm);
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 4px 0 24px;
  color: var(--ink);
}
.showcase-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.showcase-visual {
  position: relative;
  height: 520px;
}
.brand-phone {
  position: absolute;
  width: 200px;
  height: 420px;
  background: linear-gradient(160deg, #1a1a1f, #0d0d12);
  border-radius: 30px;
  padding: 5px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 30px 60px -20px rgba(10,22,40,.5),
    0 0 40px -10px rgba(31,227,240,.15);
  transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.brand-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: var(--navy-deep);
}
.brand-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.brand-phone-1 {
  top: 40px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 3;
}
.brand-phone-2 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  z-index: 2;
}
.brand-phone-3 {
  top: 60px;
  right: 0;
  transform: rotate(-2deg);
  z-index: 1;
}
.showcase-visual:hover .brand-phone-1 {
  transform: rotate(-8deg) translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 70px -20px rgba(10,22,40,.6),
    0 0 60px -10px rgba(93,217,196,.25);
}
.showcase-visual:hover .brand-phone-2 {
  transform: translateX(-50%) rotate(4deg) translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 70px -20px rgba(10,22,40,.6),
    0 0 60px -10px rgba(93,217,196,.25);
}
.showcase-visual:hover .brand-phone-3 {
  transform: rotate(-3deg) translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 70px -20px rgba(10,22,40,.6),
    0 0 60px -10px rgba(93,217,196,.25);
}
@media (max-width: 880px) {
  .showcase { padding: 80px var(--gutter); }
  .showcase-grid { grid-template-columns: 1fr; gap: 60px; }
  .showcase-visual { height: 440px; }
  .brand-phone { width: 165px; height: 345px; border-radius: 24px; padding: 4px; }
  .brand-phone-screen { border-radius: 21px; }
}
@media (max-width: 420px) {
  .brand-phone { width: 150px; height: 315px; }
}

/* ============== PRICING ===================== */
.pricing {
  padding: 140px var(--gutter);
  background: var(--navy-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.pricing-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pricing-bg .hero-glow-1 {
  width: 700px; height: 700px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  opacity: .2;
}
.pricing .section-title { color: var(--paper); }
.pricing .section-label { color: rgba(250,250,247,.55); }
.pricing .section-sub { color: rgba(250,250,247,.65); }

.pricing-tiers {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--navy-line-strong);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .4s cubic-bezier(.4,0,.2,1), border-color .3s ease, box-shadow .4s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(93,217,196,.10), rgba(31,227,240,.03) 60%, rgba(255,255,255,.01));
  border: 1px solid rgba(93,217,196,.32);
  box-shadow:
    0 30px 80px -25px rgba(0,0,0,.45),
    0 0 0 1px rgba(93,217,196,.06),
    0 0 60px -10px rgba(93,217,196,.15),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.pricing-card-featured:hover {
  border-color: rgba(93,217,196,.5);
  box-shadow:
    0 30px 80px -25px rgba(0,0,0,.45),
    0 0 0 1px rgba(93,217,196,.1),
    0 0 80px -10px rgba(93,217,196,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.pricing-recommend {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--navy-deepest);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(93,217,196,.5);
}

.pricing-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
  padding: 7px 14px;
  background: rgba(31,227,240,.08);
  border: 1px solid rgba(31,227,240,.2);
  border-radius: 100px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.pricing-tag-mint {
  color: var(--mint);
  background: rgba(93,217,196,.10);
  border-color: rgba(93,217,196,.28);
}

.pricing-tier-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  color: rgba(250,250,247,.7);
  letter-spacing: -.01em;
  margin-bottom: 18px;
  line-height: 1.3;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.pricing-currency {
  font-size: 36px;
  font-weight: 300;
  color: rgba(250,250,247,.75);
  transform: translateY(-14px);
}
.pricing-amount {
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--paper);
}
.pricing-card-featured .pricing-amount {
  background: linear-gradient(135deg, var(--paper) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-period {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(250,250,247,.5);
  margin-left: 6px;
  font-weight: 500;
  letter-spacing: .01em;
}

.pricing-pitch {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250,250,247,.7);
  margin-bottom: 4px;
}

.pricing-divider {
  height: 1px;
  background: var(--navy-line);
  margin: 24px 0 22px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(250,250,247,.85);
}
.pricing-features svg {
  width: 15px; height: 15px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card-featured .pricing-features svg {
  color: var(--mint);
}
.pricing-feature-highlight {
  color: var(--paper) !important;
  font-weight: 500;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pricing-feature-highlight strong {
  font-weight: 600;
}

.btn-pricing {
  margin-top: auto;
}

.pricing-meta {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.pricing-secondary {
  display: inline-block;
  font-size: 14.5px;
  color: rgba(250,250,247,.7);
  border-bottom: 1px solid rgba(250,250,247,.2);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.pricing-secondary:hover {
  color: var(--mint);
  border-color: var(--mint);
}
.pricing-note {
  font-size: 14px;
  color: rgba(250,250,247,.5);
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 780px) {
  .pricing { padding: 100px var(--gutter); }
  .pricing-tiers { grid-template-columns: 1fr; gap: 20px; max-width: 460px; }
  .pricing-card { padding: 36px 28px; }
  .pricing-amount { font-size: 60px; }
  .pricing-currency { font-size: 30px; transform: translateY(-12px); }
}
@media (max-width: 420px) {
  .pricing-card { padding: 32px 24px; }
}

/* ============== FAQ ========================= */
.faq {
  padding: 120px var(--gutter);
  background: var(--paper);
}
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line-light);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-light); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -.012em;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cyan-dim); }
.faq-plus {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-plus::before { width: 14px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 14px; transition: transform .35s ease; }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 0 28px;
  max-width: 680px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-answer a { color: var(--cyan-dim); border-bottom: 1px solid currentColor; }

/* ============== FINAL CTA =================== */
.final-cta {
  padding: 140px var(--gutter);
  background: var(--navy-deepest);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.final-bg .hero-glow-1 {
  width: 800px; height: 800px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  opacity: .25;
}
.final-bg .hero-glow-2 {
  width: 600px; height: 600px;
  bottom: -200px; right: -100px;
  opacity: .15;
}
.final-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.final-glyph {
  width: 80px; height: 42px;
  color: var(--mint);
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 24px rgba(93,217,196,.5));
}
.final-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--paper);
  margin-bottom: 22px;
}
.final-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(250,250,247,.7);
  margin-bottom: 40px;
}
.final-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.final-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: rgba(31,227,240,.6);
  letter-spacing: .04em;
}
@media (max-width: 540px) {
  .final-cta { padding: 90px var(--gutter); }
  .final-ctas .btn { flex: 1; justify-content: center; }
}

/* ============== FOOTER ====================== */
.footer {
  background: var(--navy-deepest);
  color: rgba(250,250,247,.7);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--navy-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-brand { color: var(--paper); margin-bottom: 14px; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(250,250,247,.55);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,250,247,.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  color: rgba(250,250,247,.75);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250,250,247,.45);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 640px;
}
.footer-legal-sub {
  font-size: 12px;
  color: rgba(250,250,247,.32);
  font-style: italic;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cyan-dim);
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============== REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,0,.2,1), transform .9s cubic-bezier(.2,0,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============== INSTALL PAGE ================ */
.page-install { background: var(--paper); }
.install-hero {
  padding: 160px var(--gutter) 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}
.install-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.install-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 18px 0 24px;
}
.install-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-dim);
}
.install-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
}
.install-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.install-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  font-size: 14px;
  color: var(--ink-mute);
}
.install-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.install-meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.install-steps {
  padding: 100px var(--gutter);
  background: var(--paper-warm);
}
.install-steps-inner {
  max-width: 920px;
  margin: 0 auto;
}
.install-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line-light);
  align-items: start;
}
.install-step:last-child { border-bottom: 1px solid var(--line-light); }
.install-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  color: var(--cyan-dim);
  line-height: 1;
}
.install-step-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.install-step-body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.install-step-body p:last-child { margin-bottom: 0; }
.install-step-body strong { color: var(--ink); font-weight: 600; }
.install-step-body code {
  background: rgba(10,22,40,.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.install-step-visual {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line-light);
  padding: 18px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
}
.install-step-visual.dark {
  background: var(--navy-deep);
  color: rgba(250,250,247,.65);
  border-color: var(--navy-line);
}
.install-mock-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  width: 100%;
  font-size: 13px;
  color: rgba(250,250,247,.85);
}
.install-mock-toggle {
  width: 32px; height: 18px;
  background: var(--cyan);
  border-radius: 100px;
  position: relative;
  margin-left: auto;
  box-shadow: 0 0 12px rgba(31,227,240,.5);
}
.install-mock-toggle::after {
  content: "";
  position: absolute;
  right: 2px; top: 2px;
  width: 14px; height: 14px;
  background: var(--navy-deep);
  border-radius: 50%;
}
.install-mock-btn {
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}
.install-mock-icon-app {
  width: 64px; height: 64px;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(31,227,240,.4);
}
.install-mock-icon-app svg { width: 36px; height: 20px; }
.install-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  padding: 8px 12px;
  background: rgba(10,22,40,.04);
  border-radius: 8px;
  border-left: 3px solid var(--cyan);
}

@media (max-width: 780px) {
  .install-step { grid-template-columns: 1fr; gap: 20px; }
  .install-step-num { font-size: 36px; }
  .install-step-visual { min-height: 120px; }
}

.troubleshoot {
  padding: 100px var(--gutter);
  background: var(--paper);
}
.troubleshoot-inner { max-width: 820px; margin: 0 auto; }

/* ============== LEGAL PAGES ================= */
.legal-hero {
  padding: 160px var(--gutter) 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}
.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 18px 0 24px;
}
.legal-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-dim);
}
.legal-hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 0;
}
.legal-meta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .01em;
}
.legal-content {
  padding: 80px var(--gutter) 120px;
  background: var(--paper);
}
.legal-content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  margin: 28px 0 12px;
  color: var(--ink);
}
.legal-section p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-section em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.legal-section li {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.legal-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cyan-dim);
  font-weight: 400;
}
.legal-section a {
  color: var(--cyan-dim);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.legal-section a:hover {
  color: var(--ink);
}
.legal-callout {
  background: var(--paper-warm);
  border-left: 3px solid var(--mint);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 0 0 56px;
}
.legal-callout p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .legal-hero { padding: 130px var(--gutter) 50px; }
  .legal-content { padding: 60px var(--gutter) 90px; }
  .legal-meta { flex-direction: column; gap: 4px; }
  .legal-meta > span:nth-child(2) { display: none; }
}
