/* ─────────────────────────────────────────
   CueMini — styles.css  v3
   Palette: Snow + Light Blue + Ink
───────────────────────────────────────── */

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

:root {
  --snow:     #FAFBFC;
  --snow-1:   #F2F4F6;
  --snow-2:   #E8ECF0;
  --snow-3:   #D0D6DD;
  --lb:       #ADD8E6;
  --lb-mid:   #7BBDD4;
  --lb-dark:  #3A8DAA;
  --lb-pale:  #EAF5FB;
  --lb-pale2: #D6EEF8;
  --ink:      #0E1117;
  --ink-2:    #2D3340;
  --ink-3:    #5A6070;
  --ink-4:    #8A919E;
  --wa:       #25D366;
  --r:        12px;
  --r-lg:     18px;
  --r-xl:     24px;
  --px:       clamp(20px, 5vw, 72px);
  --py:       clamp(3rem, 5vw, 4.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--snow);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Familjen Grotesk', sans-serif; }

/* ── SHARED ───────────────────────────── */
.section { padding: var(--py) var(--px); }

.s-eye {
  display: block;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--lb-dark); margin-bottom: .6rem;
}
.s-title {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.08; margin-bottom: .85rem;
}
.s-sub {
  font-size: 1rem; color: var(--ink-3);
  line-height: 1.7; max-width: 480px;
}

/* ── BUTTONS ──────────────────────────── */
.btn-ink {
  background: var(--ink); color: var(--snow);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: .9375rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ink:hover { background: var(--lb-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--ink);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: .9375rem; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--snow-3); cursor: pointer;
  transition: border-color .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--lb-dark); transform: translateY(-2px); }

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  /* starts transparent */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.nav.filled {
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--lb-pale2);
  box-shadow: 0 1px 24px rgba(58, 141, 170, .07);
}

.logo {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.5px;
}
.logo em { font-style: normal; color: var(--lb-dark); }

/* hero has dark bg rings so logo needs to stay readable; we keep ink color always */
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--lb-dark); }

.nav-order {
  background: var(--ink); color: var(--snow) !important;
  padding: .42rem 1.1rem; border-radius: 50px;
  font-size: .85rem !important; font-weight: 600 !important;
  font-family: 'Familjen Grotesk', sans-serif;
  transition: background .2s, transform .15s;
}
.nav-order:hover { background: var(--lb-dark) !important; transform: translateY(-1px); }

.hbg {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hbg span { width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; display: block; }

/* ── MOBILE MENU ──────────────────────── */
.mmenu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--snow);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 clamp(24px, 8vw, 60px); gap: 1.75rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}
.mmenu.open { transform: translateX(0); }
.mmenu a {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: -1px; transition: color .2s;
}
.mmenu a:hover { color: var(--lb-dark); }
.mmclose {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--ink-3);
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 700;
}

/* ── HERO ─────────────────────────────── */
.hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(90px, 14vh, 130px) var(--px) clamp(40px, 6vh, 56px);
  position: relative; overflow: hidden;
  background: var(--snow); text-align: center;
}
.hero-ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid var(--snow-2); pointer-events: none;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--lb-dark);
  border: 1px solid var(--lb-mid); background: var(--lb-pale);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 1.75rem; position: relative; z-index: 1;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--lb-dark); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:.2 } }

.hero-title-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 920px; margin-bottom: .4rem;
}
.hero-title-top {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700; line-height: .95; letter-spacing: -3px; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 2vw, 36px); flex-wrap: wrap;
}
.hero-product-frame {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(76px, 11vw, 130px); height: clamp(76px, 11vw, 130px);
  border-radius: 50%;
  background: var(--lb-pale); border: 1.5px solid var(--lb-mid); flex-shrink: 0;
}
.hero-product-frame span { font-size: clamp(2rem, 5vw, 3.75rem); }

.hero-title-bottom {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700; line-height: .95; letter-spacing: -3px; color: var(--ink); margin-top: 6px;
}
.hero-title-bottom em { font-style: normal; color: var(--lb-dark); }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: var(--ink-3); line-height: 1.7;
  max-width: 420px; margin: .6rem auto 1.75rem; position: relative; z-index: 1;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero-specs {
  display: flex; gap: clamp(.75rem, 2.5vw, 2rem);
  flex-wrap: wrap; justify-content: center;
  margin-top: 2rem; position: relative; z-index: 1;
}
.spec { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--ink-3); }
.spec-dot { width: 5px; height: 5px; background: var(--lb-dark); border-radius: 50%; flex-shrink: 0; }

/* scroll-cue removed */

/* ticker removed */

/* ── HOW IT WORKS ─────────────────────── */
.how-section { background: var(--snow-1); }
.how-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start; max-width: 1020px; margin: 0 auto;
}
.how-left { padding-right: clamp(16px, 4vw, 56px); }

.how-steps { display: flex; flex-direction: column; }
.how-step {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--snow-2);
  opacity: .22; transition: opacity .35s;
}
.how-step:last-child { border-bottom: none; }
.how-step.active { opacity: 1; }

.step-n {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; color: var(--snow-2);
  line-height: 1; letter-spacing: -2px; margin-bottom: .4rem; transition: color .35s;
}
.how-step.active .step-n { color: var(--lb); }
.how-step h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; letter-spacing: -.3px; margin-bottom: .4rem; }
.how-step p  { font-size: 1rem; color: var(--ink-3); line-height: 1.65; max-width: 340px; }

.how-right {
  position: sticky; top: 80px;
  height: calc(100vh - 100px);
  display: flex; align-items: center; justify-content: center;
  padding-left: clamp(16px, 3vw, 36px);
}
.how-frame {
  width: 100%; max-width: 340px; aspect-ratio: 1;
  border-radius: var(--r-xl); background: var(--lb-pale); border: 1.5px solid var(--lb-pale2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; text-align: center; padding: 2rem;
}
.how-icon { font-size: clamp(2.75rem, 6vw, 4rem); display: block; transition: opacity .25s, transform .25s; }
.how-lbl  { font-family: 'Familjen Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--lb-dark); }

/* ── CONVINCE BAND ────────────────────── */
.convince {
  margin: 0 var(--px);
  background: var(--ink); border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cv-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700; color: var(--snow); letter-spacing: -.8px; line-height: 1.2;
}
.cv-text p { font-size: .95rem; color: rgba(250,251,252,.4); margin-top: .4rem; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: .85rem 1.6rem; border-radius: 50px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600; font-size: .9375rem;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: transform .2s, filter .2s;
}
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.1); }
.wa-ico { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ── FEATURES — SPOTLIGHT ─────────────── */
.features-section { background: var(--snow); }

.feat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.feat-tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 12px; border-radius: var(--r);
  border: 1.5px solid var(--snow-2); background: var(--snow-1);
  cursor: pointer; flex: 1; min-width: 72px;
  transition: background .2s, border-color .2s;
}
.feat-tab:hover  { background: var(--lb-pale); border-color: var(--lb); }
.feat-tab.active { background: var(--lb-pale); border-color: var(--lb-mid); }
.feat-tab-ico  { font-size: 1.4rem; line-height: 1; }
.feat-tab-lbl  { font-size: .75rem; font-weight: 600; color: var(--ink-3); text-align: center; white-space: nowrap; }
.feat-tab.active .feat-tab-lbl { color: var(--lb-dark); }

.feat-spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl); border: 1.5px solid var(--snow-2);
  overflow: hidden; background: var(--snow-1); min-height: 260px;
}
.feat-text {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.feat-pill {
  display: inline-block;
  background: var(--lb-pale2); color: var(--lb-dark);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px; border: 1px solid var(--lb); width: fit-content;
}
.feat-title { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; letter-spacing: -.4px; line-height: 1.2; }
.feat-desc  { font-size: 1rem; color: var(--ink-3); line-height: 1.65; }

.feat-visual {
  background: var(--lb-pale); border-left: 1.5px solid var(--lb-pale2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 1.75rem; text-align: center;
}
.feat-visual-ico  { font-size: clamp(3rem, 6vw, 4.5rem); display: block; transition: opacity .25s, transform .25s; }
.feat-visual-note { font-size: .8rem; font-weight: 600; color: var(--lb-dark); letter-spacing: .5px; text-transform: uppercase; }

/* language cycling panel */
.feat-visual-lang { gap: 8px; }
.lang-char {
  font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(4rem, 10vw, 6.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  transition: opacity .35s ease, transform .35s ease;
}
.lang-welcome {
  font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
  transition: opacity .35s ease, transform .35s ease;
}
.lang-welcome.fade { opacity: 0; transform: scale(.9); }
.lang-name {
  font-size: .82rem; font-weight: 600;
  color: var(--lb-dark); letter-spacing: .5px;
  text-transform: uppercase;
  transition: opacity .35s ease;
}
.lang-name.fade { opacity: 0; }
.lang-dots {
  display: flex; gap: 6px; align-items: center;
  justify-content: center; margin-top: 4px;
}
.lang-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--snow-3); transition: background .3s;
  cursor: pointer;
}
.lang-dot.active { background: var(--lb-dark); }

/* ── PRICING ──────────────────────────── */
.pricing-section { background: var(--lb-pale); }
.pricing-inner   { max-width: 740px; margin: 0 auto; text-align: center; }
.p-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px; margin-top: 2rem;
}
.p-card {
  background: var(--snow); border-radius: var(--r-lg);
  border: 1.5px solid var(--snow-2); padding: 1.75rem; text-align: left;
  transition: border-color .25s, transform .25s;
}
.p-card:hover { border-color: var(--lb-mid); transform: translateY(-3px); }
.p-card.dark  { background: var(--ink); border-color: var(--ink); }

.p-tag  { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem; }
.p-tag.blue { background: var(--lb-pale2); color: var(--lb-dark); }
.p-tag.dim  { background: rgba(255,255,255,.1); color: rgba(250,251,252,.55); }

.p-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -.4px; margin-bottom: .4rem; }
.p-card.dark .p-name { color: var(--snow); }
.p-desc { font-size: .95rem; color: var(--ink-3); line-height: 1.6; margin: .5rem 0 1.25rem; }
.p-card.dark .p-desc { color: rgba(250,251,252,.45); }

.p-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.p-list li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: var(--ink-3); }
.p-card.dark .p-list li { color: rgba(250,251,252,.6); }
.p-chk { color: var(--lb-dark); font-size: .9rem; flex-shrink: 0; }
.p-card.dark .p-chk { color: var(--lb); }

.btn-enq {
  display: block; text-align: center; padding: .75rem; border-radius: 50px;
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: transform .15s;
}
.btn-enq:hover { transform: translateY(-2px); }
.enq-light { background: var(--ink); color: var(--snow); }
.enq-dark  { background: var(--snow); color: var(--ink); }
.p-note { margin-top: 1.25rem; font-size: .875rem; color: var(--ink-4); line-height: 1.6; }
.p-note a { color: var(--lb-dark); }

/* ── FAQ ──────────────────────────────── */
#faq { background: var(--snow-1); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 0;
}

/* left sticky panel */
.faq-left { position: sticky; top: 80px; }
.faq-left .s-eye  { margin-bottom: .6rem; }
.faq-left .s-title { margin-bottom: .75rem; }
.faq-left .s-sub   { margin-bottom: 1.75rem; font-size: .95rem; }

.faq-wa-nudge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--snow);
  padding: .75rem 1.4rem; border-radius: 50px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600; font-size: .875rem;
  text-decoration: none; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.faq-wa-nudge:hover { background: var(--wa); transform: translateY(-2px); }
.faq-wa-nudge svg  { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* right accordion */
.faq-wrap  { margin-top: 0; }
.faq-item  { border-bottom: 1px solid var(--snow-2); }
.faq-item:first-child { border-top: 1px solid var(--snow-2); }
.faq-btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink);
  transition: color .2s;
}
.faq-btn:hover { color: var(--lb-dark); }
.faq-ico {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.faq-ico::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--lb-dark);
  border-bottom: 2px solid var(--lb-dark);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: border-color .2s;
}
.faq-btn:hover .faq-ico::before { border-color: var(--ink); }
.faq-item.open .faq-ico { transform: rotate(-180deg); }
.faq-ans {
  max-height: 0; overflow: hidden;
  font-size: 1rem; color: var(--ink-3); line-height: 1.7;
  transition: max-height .35s ease, padding-bottom .3s;
}
.faq-item.open .faq-ans { max-height: 220px; padding-bottom: 1.1rem; }

/* collapse to single col on tablet/mobile */
@media (max-width: 760px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-left   { position: static; }
}

/* ── FORM ─────────────────────────────── */
.form-section { background: var(--lb-pale); }
.form-inner   { max-width: 600px; margin: 0 auto; text-align: center; }
.f-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--snow);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 1.1rem;
}
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-top: 1.75rem; }
.f-full { grid-column: 1 / -1; }
.fl { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; color: var(--ink-3); margin-bottom: .35rem; display: block; }
.fi {
  width: 100%; background: var(--snow); color: var(--ink);
  border: 1.5px solid var(--snow-2); border-radius: var(--r);
  padding: .75rem 1rem; font-size: 1rem;
  font-family: 'Instrument Sans', sans-serif;
  outline: none; transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.fi:focus { border-color: var(--lb-dark); }
.fi::placeholder { color: var(--ink-4); }
.fi-ta { resize: vertical; min-height: 90px; }

.pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: .35rem; }
.pill {
  padding: .38rem .85rem; border-radius: 50px;
  border: 1.5px solid var(--snow-2); background: var(--snow);
  font-size: .9rem; font-weight: 500; cursor: pointer; color: var(--ink-2);
  transition: .2s; font-family: 'Instrument Sans', sans-serif;
}
.pill.on, .pill:hover { background: var(--ink); color: var(--snow); border-color: var(--ink); }

.f-row { margin-top: 1.25rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.btn-sub {
  background: var(--ink); color: var(--snow);
  padding: .85rem 2.25rem; border-radius: 50px; border: none;
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-sub:hover { background: var(--lb-dark); transform: translateY(-2px); }
.f-fine { font-size: .85rem; color: var(--ink-4); }
.f-ok {
  display: none; background: var(--lb-pale2); border: 1px solid var(--lb);
  border-radius: var(--r); padding: .875rem 1.5rem;
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 600;
  color: var(--lb-dark); margin-top: 1rem; font-size: 1rem;
}

/* ── FOOTER ───────────────────────────── */
footer { background: var(--ink); padding: clamp(2.5rem, 4.5vw, 4rem) var(--px) clamp(1.25rem, 2.5vw, 2rem); }
.ft-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo { font-family: 'Familjen Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--snow); text-decoration: none; letter-spacing: -.5px; }
.ft-logo em { font-style: normal; color: var(--lb); }
.ft-brand p { font-size: .9rem; color: rgba(250,251,252,.4); line-height: 1.65; margin: .85rem 0 1.25rem; max-width: 220px; }

.ecap {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; overflow: hidden; padding: 3px 3px 3px 14px; max-width: 270px;
}
.ecap input {
  background: none; border: none; outline: none;
  color: var(--snow); font-family: 'Instrument Sans', sans-serif;
  font-size: .9rem; flex: 1; min-width: 0; padding: .3rem 0;
}
.ecap input::placeholder { color: rgba(250,251,252,.28); }
.ecap button {
  background: var(--lb-dark); color: var(--snow);
  border: none; border-radius: 50px; padding: .5rem .9rem;
  font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; font-size: .78rem;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.ecap button:hover { background: var(--lb-mid); }

.ft-col h5 {
  font-family: 'Familjen Grotesk', sans-serif; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(250,251,252,.3); margin-bottom: 1rem;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.ft-col a  { color: rgba(250,251,252,.55); font-size: .9rem; text-decoration: none; transition: color .2s; }
.ft-col a:hover { color: var(--lb); }
.ft-muted  { color: rgba(250,251,252,.22) !important; cursor: default !important; pointer-events: none; }

.ft-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.ft-bot p { font-size: .85rem; color: rgba(250,251,252,.25); }
.soc { display: flex; gap: .6rem; }
.soc a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,251,252,.4); text-decoration: none;
  font-size: .72rem; font-family: 'Familjen Grotesk', sans-serif; font-weight: 700; transition: .2s;
}
.soc a:hover { border-color: var(--lb); color: var(--lb); }

/* ── SCROLL REVEAL ────────────────────── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hbg       { display: flex; }
  .how-wrap  { grid-template-columns: 1fr; }
  .how-right { display: none; }
  .how-step  { opacity: 1; }
  .ft-grid   { grid-template-columns: 1fr 1fr; }
  .feat-spotlight { grid-template-columns: 1fr; }
  .feat-visual { border-left: none; border-top: 1.5px solid var(--lb-pale2); min-height: 160px; }
}
@media (max-width: 560px) {
  .hero-title-top    { font-size: clamp(2.3rem, 11vw, 3rem); letter-spacing: -2px; gap: 8px; }
  .hero-title-bottom { font-size: clamp(2.3rem, 11vw, 3rem); letter-spacing: -2px; }
  .hero-product-frame { width: 68px; height: 68px; }
  .hero-product-frame span { font-size: 1.85rem; }
  .feat-tabs  { gap: 5px; }
  .feat-tab   { min-width: 58px; padding: 8px 6px; }
  .feat-tab-lbl { font-size: .68rem; }
  .f-grid     { grid-template-columns: 1fr; }
  .ft-grid    { grid-template-columns: 1fr; }
  .convince   { margin: 0 var(--px); flex-direction: column; text-align: center; }
  .p-grid     { grid-template-columns: 1fr; }
  .hero-specs { gap: .6rem; }
}