/* ============================================================
   Secure It Fresh — section styles
   ============================================================ */

/* ---------------- SCROLL PATH ---------------- */
.scroll-path-wrap {
  position: fixed;
  right: 22px;
  top: 0;
  width: 32px;
  height: 100vh;
  z-index: 40;
  pointer-events: none;
}
.scroll-path-wrap svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scroll-lock-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 28px var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .scroll-path-wrap { display: none; }
}

/* ---------------- SECUREBAG SHOWCASE ---------------- */
.sbag-section { overflow: visible; }
.sbag-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.sbag-text { display: flex; flex-direction: column; }
.sbag-feats { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 34px; }
.sbag-feat { display: flex; align-items: flex-start; gap: 14px; }
.sbag-ico {
  width: 42px; height: 42px; flex: none;
  background: var(--accent-soft); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); display: grid; place-items: center;
  color: var(--accent);
}
.sbag-ico svg { width: 20px; height: 20px; }
.sbag-feat strong { display: block; font-weight: 700; font-size: 15px; margin-bottom: 3px; color: var(--text); }
.sbag-feat span { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* 3D card stage */
.sbag-visual { display: flex; align-items: center; justify-content: center; }
.sbag-parallax-wrap { width: 100%; max-width: 500px; position: relative; }
.sbag-card3d {
  position: relative;
  border-radius: var(--r-xl);
  transform-style: preserve-3d;
  perspective: 900px;
  cursor: pointer;
  will-change: transform;
  box-shadow: var(--card-shadow);
}
.sbag-video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 560px;
  border-radius: var(--r-xl);
  display: block;
  object-fit: cover;
}
.sbag-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--glass-bg); backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: 12.5px; font-weight: 600; color: var(--text);
  white-space: nowrap; pointer-events: none;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.18);
  transform-style: preserve-3d;
}
.sbag-chip svg { color: var(--accent); flex: none; }
.sbag-chip-1 { top: 22px; left: -28px; }
.sbag-chip-2 { top: 50%; right: -28px; transform: translateY(-50%) translateZ(65px); }
.sbag-chip-3 { bottom: 28px; left: -12px; }

@media (max-width: 860px) {
  .sbag-split { grid-template-columns: 1fr; }
  .sbag-parallax-wrap { max-width: 100%; }
  .sbag-video { aspect-ratio: 16/9; max-height: 320px; }
  .sbag-chip-1 { left: 10px; }
  .sbag-chip-2 { right: 10px; transform: translateY(-50%); }
  .sbag-chip-3 { left: 10px; }
}

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand .lockmark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--lime); color: #0c1207;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px rgba(166,200,40,.6);
}
.brand .lockmark svg { width: 18px; height: 18px; }
.brand b { color: var(--accent); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--text-dim); font-weight: 500; transition: color .18s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 10px; width: 44px; height: 44px; color: var(--text); place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.theme-toggle {
  width: 44px; height: 44px; flex: none; border-radius: var(--r-pill);
  background: var(--chip-bg); border: 1px solid var(--line-2); color: var(--text);
  display: grid; place-items: center; transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 19px; height: 19px; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: grid; }
}

/* ---------------- HERO ---------------- */
.hero { padding-top: 104px; padding-bottom: 16px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 16px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-note { margin-top: 12px; font-size: 13.5px; color: var(--text-faint); display: flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--text-dim); font-weight: 600; }

/* hero visual — the secure bag (bleeds to the right edge of the screen) */
.bag-stage {
  position: relative;
  --bleed: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  width: calc(100% + var(--bleed));
  height: clamp(420px, 56vh, 660px);
  margin-left: 0;
}
.bag-slot { position: absolute; inset: 0; border-radius: var(--r-xl) 0 0 var(--r-xl); overflow: hidden; }
img.bag-slot, video.bag-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
video.bag-slot { background: var(--bg-2); animation: bagFade 1s ease both; }
@keyframes bagFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { video.bag-slot { animation: none; } }
.bag-frame {
  position: absolute; inset: 0; border-radius: var(--r-xl) 0 0 var(--r-xl);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), var(--card-shadow);
  pointer-events: none;
}
.bag-stage::before {
  content: ""; position: absolute; inset: -8%;
  background: radial-gradient(closest-side, rgba(198,250,75,.22), transparent 70%);
  filter: blur(20px); z-index: -1;
}
/* floating OTP chip over bag */
.otp-chip {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.otp-chip .lock-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--signal-soft); color: var(--signal);
  display: grid; place-items: center;
}
.otp-chip .lock-ico svg { width: 20px; height: 20px; }
.otp-chip .meta { flex: 1; min-width: 0; }
.otp-chip .meta .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }
.otp-digits { display: flex; gap: 6px; margin-top: 4px; }
.otp-digits span {
  font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); flex: none; }

/* status pill top-left on bag */
.bag-tag {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  padding: 8px 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--text);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { overflow: hidden; }
  .bag-stage {
    margin: 8px calc(-1 * var(--gutter)) 0;
    width: calc(100% + 2 * var(--gutter));
    height: clamp(260px, 56vw, 460px);
  }
  .bag-slot, .bag-frame { border-radius: var(--r-lg); }
}

/* ---------------- COUNTDOWN STRIP ---------------- */
.countbar {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  padding: 14px clamp(16px, 3vw, 28px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.countbar .label { font-size: 14px; color: var(--text-dim); }
.countbar .label b { color: var(--text); font-weight: 700; font-family: var(--font-display); }
.count-units { display: flex; gap: 12px; }
.count-unit { text-align: center; min-width: 66px; }
.count-unit .num {
  font-family: var(--font-mono); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums;
}
.count-unit .u { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin-top: 7px; }

/* ---------------- SECTION HEADER ---------------- */
.sec-head { max-width: 720px; margin-bottom: clamp(18px, 3vw, 32px); }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---------------- HOW IT WORKS ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { padding: 16px 18px 18px; position: relative; overflow: hidden; }
.step .n {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; color: var(--accent);
  border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 5px 12px; display: inline-block;
}
.step .ico {
  width: 48px; height: 48px; border-radius: 14px; margin: 16px 0 14px;
  background: var(--accent-soft); color: var(--accent); display: grid; place-items: center;
}
.step .ico svg { width: 26px; height: 26px; }
.step h3 { margin-bottom: 9px; }
.step p { color: var(--text-dim); font-size: 15px; margin: 0; }
.step .thread { position: absolute; top: 44px; right: -10px; color: var(--line-2); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- SECURITY / OTP DEMO ---------------- */
.sec-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
@media (max-width: 880px) { .sec-split { grid-template-columns: 1fr; } }
.feat-list { display: grid; gap: 12px; margin-top: 22px; }
.feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(255,255,255,.015);
}
.feat .fi { width: 38px; height: 38px; border-radius: 11px; flex: none; background: var(--signal-soft); color: var(--signal); display: grid; place-items: center; }
.feat .fi svg { width: 19px; height: 19px; }
.feat h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 3px; }
.feat p { margin: 0; font-size: 14px; color: var(--text-dim); }

/* OTP unlock demo widget */
.otp-demo {
  padding: 22px clamp(16px,3vw,26px) 26px;
  position: relative; overflow: hidden;
}
.otp-demo .demo-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.otp-demo .demo-head .t { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.baglock {
  margin: 0 auto 24px; width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  border: 1px solid var(--line-2);
  background: radial-gradient(closest-side, rgba(255,176,74,.10), transparent);
  transition: background .5s ease, border-color .5s ease;
}
.baglock svg { width: 46px; height: 46px; color: var(--signal); transition: color .4s ease; transform: translateZ(0); }
.baglock.open { border-color: var(--accent); background: radial-gradient(closest-side, rgba(198,250,75,.18), transparent); }
.baglock.open svg { color: var(--accent); }
.baglock .ring { position: absolute; inset: -7px; border-radius: 50%; border: 2px solid transparent; }
.baglock.open .ring { border-color: rgba(198,250,75,.4); animation: ringpulse 1.1s ease-out; }
@keyframes ringpulse { 0%{ transform: scale(.85); opacity: 1; } 100%{ transform: scale(1.25); opacity: 0; } }

.otp-cells { display: flex; gap: 10px; justify-content: center; }
.otp-cell {
  width: 46px; height: 58px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: var(--text);
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
}
.otp-cell.active { border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.otp-cell.filled { color: var(--accent); border-color: var(--accent); }
.otp-cell.shake { animation: cellshake .4s; border-color:#ff6b6b; color:#ff8585; }
@keyframes cellshake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
.demo-hint { text-align: center; font-size: 13px; color: var(--text-faint); margin-top: 18px; min-height: 18px; }
.demo-hint b { color: var(--accent); }
.demo-keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 22px; max-width: 280px; margin-left:auto; margin-right:auto; }
.key {
  height: 50px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2);
  color: var(--text); font-family: var(--font-mono); font-size: 19px; font-weight: 700;
  transition: background .14s ease, transform .1s ease, border-color .14s ease;
}
.key:hover { background: var(--surface-3); border-color: var(--line-2); }
.key:active { transform: scale(.94); }
.key.fn { font-size: 13px; color: var(--text-dim); font-family: var(--font-body); }

/* ---------------- PRICING ---------------- */
.price-wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 880px) { .price-wrap { grid-template-columns: 1fr; } }
.price-card { padding: 20px clamp(18px,3vw,28px) 22px; position: relative; overflow: hidden; }
.price-card.promo { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-soft), var(--card-shadow); }
.price-card.promo::after {
  content: ""; position: absolute; top: -120px; right: -80px; width: 320px; height: 320px;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%); pointer-events: none;
}
.promo-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: #0c1207; font-family: var(--font-mono); font-weight: 700;
  font-size: 11.5px; letter-spacing: .08em; padding: 7px 13px; border-radius: var(--r-pill);
}
.price-now { display: flex; align-items: flex-end; gap: 12px; margin: 14px 0 4px; }
.price-now .amt { font-family: var(--font-display); font-weight: 700; font-size: clamp(54px, 8vw, 82px); line-height: .85; letter-spacing: -0.04em; }
.price-now .per { color: var(--text-dim); font-size: 16px; padding-bottom: 8px; }
.price-sub { color: var(--text-dim); font-size: 15px; }
.price-strike { color: var(--text-faint); text-decoration: line-through; }
.price-feats { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 11px; }
.price-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.price-feats li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 1px; }
.price-card.std { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.price-card.std .price-now .amt { font-size: clamp(40px, 6vw, 58px); }
.savebar { margin-top: 16px; font-family: var(--font-mono); font-size: 12.5px; color: var(--signal); letter-spacing: .04em; }

/* ---------------- TESTIMONIALS ---------------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }
.quote { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.quote .stars { display: flex; gap: 3px; color: var(--accent); }
.quote .stars svg { width: 16px; height: 16px; }
.quote p { margin: 0; font-size: 16px; line-height: 1.55; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who image-slot, .quote .who .av { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.quote .who img.av { object-fit: cover; }
.quote .who .nm { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.quote .who .rl { font-size: 12.5px; color: var(--text-faint); }

/* ---------------- ABOUT / MISSION ---------------- */
.mission { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,52px); align-items: center; }
@media (max-width: 880px) { .mission { grid-template-columns: 1fr; } }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 22px; }
.stat .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,4vw,46px); color: var(--accent); letter-spacing: -0.03em; }
.stat .k { font-size: 13.5px; color: var(--text-dim); margin-top: 4px; }
.mission-app {
  position: relative; display: grid; place-items: center;
  padding: clamp(22px, 3vw, 40px) 0;
}
.mission-app::before {
  content: ""; position: absolute; inset: 6% 12%;
  background: radial-gradient(closest-side, rgba(198,250,75,.20), transparent 72%);
  filter: blur(26px); z-index: 0;
}

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: clamp(16px,1.6vw,19px);
}
.faq-q .pm { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .3s ease, border-color .2s; color: var(--text-dim); }
.faq-item.open .faq-q .pm { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 4px 26px; color: var(--text-dim); font-size: 15.5px; max-width: 64ch; }

/* ---------------- WAITLIST BAND ---------------- */
.band {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    radial-gradient(700px 380px at 80% -30%, rgba(198,250,75,.12), transparent 65%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  padding: clamp(22px, 4vw, 40px);
  text-align: center; position: relative; overflow: hidden;
}
.band-form { display: flex; gap: 12px; max-width: 520px; margin: 22px auto 0; }
.band-form .input { flex: 1; }
@media (max-width: 560px) { .band-form { flex-direction: column; } }
.joined-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  background: var(--accent-soft); border: 1px solid var(--accent); color: var(--accent);
  padding: 12px 20px; border-radius: var(--r-pill); font-family: var(--font-mono); font-size: 14px;
}
.joined-pill svg { width: 18px; height: 18px; }
.spots { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); margin-top: 16px; }
.spots b { color: var(--accent); }

/* ---------------- NEWSLETTER + FOOTER ---------------- */
.footer { border-top: 1px solid var(--line); padding: clamp(28px,4vw,48px) 0 28px; position: relative; z-index: 1; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 760px){ .foot-top { grid-template-columns: 1fr; } }
.news-form { display: flex; gap: 10px; margin-top: 18px; max-width: 420px; flex-wrap: wrap; }
.news-form .input { flex: 1; min-width: 180px; }
.news-form .btn { flex-shrink: 0; }
.foot-cols { display: flex; gap: 32px; flex-wrap: wrap; justify-content: flex-end; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 14px; }
.foot-col a { display: block; color: var(--text-dim); font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: clamp(24px,4vw,44px); padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: 13px; }
@media (max-width: 760px) {
  .foot-cols { gap: 20px; justify-content: flex-start; }
  .news-form { max-width: 100%; }
  .news-form .input { min-width: 0; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .foot-bottom .mono { font-size: 11px; }
}
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--lime); color: #0c1207; font-weight: 700; font-family: var(--font-display);
  padding: 14px 22px; border-radius: var(--r-pill); box-shadow: 0 18px 44px -16px rgba(166,200,40,.7);
  opacity: 0; transition: opacity .3s ease, transform .3s ease; z-index: 200; font-size: 15px;
  display: flex; align-items: center; gap: 10px; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; }

/* spinner + success badge for checkout */
.spinner {
  width: 46px; height: 46px; margin: 0 auto; border-radius: 50%;
  border: 3px solid var(--line-2); border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step-ico-ok {
  width: 72px; height: 72px; margin: 0 auto; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(198,250,75,.4);
  display: grid; place-items: center;
  animation: pop .4s cubic-bezier(.2,.8,.2,1);
}

/* mobile menu sheet */
.msheet { position: fixed; inset: 0; z-index: 70; background: var(--sheet-bg); backdrop-filter: blur(10px); padding: 90px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px; }
.msheet a { font-family: var(--font-display); font-weight: 600; font-size: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.msheet .btn { margin-top: 20px; }
.mclose { position: absolute; top: 22px; right: var(--gutter); width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--text); }

/* ---------------- IN-APP UNLOCK PHONE (mission art) ---------------- */
.phone {
  position: relative; z-index: 1;
  width: min(300px, 82%); aspect-ratio: 300 / 600;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(24,50,28,.5), inset 0 0 0 1px rgba(255,255,255,.04);
}
.phone-screen {
  position: relative; height: 100%;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-radius: 32px;
  padding: 30px 16px 16px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.phone-screen::before {
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 6px; border-radius: 6px; background: var(--line-2);
}
.phone-status { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--text-faint); }
.phone-status .brandmini { color: var(--text-dim); font-weight: 700; }
.phone-status .ps-live { display: inline-flex; align-items: center; gap: 6px; color: var(--signal); }
.phone-status .ps-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 9px var(--signal); }
.phone-card {
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--surface);
}
.phone-bag {
  height: 132px; background-size: cover; background-position: center; position: relative;
}
.phone-bag .phone-seal {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--glass-bg); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  padding: 5px 11px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; color: var(--text);
}
.phone-bag .phone-seal svg { width: 13px; height: 13px; }
.phone-meta { padding: 12px 14px 14px; }
.phone-meta .pm-k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.phone-meta .pm-t { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-top: 5px; letter-spacing: -0.01em; }
.phone-code {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px dashed var(--line-2); border-radius: var(--r-sm);
  padding: 11px 14px; background: var(--chip-bg);
}
.phone-code .pc-k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.phone-code .pc-digits { display: flex; gap: 7px; }
.phone-code .pc-digits span { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent); }
.phone-btn {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--ink);
  border: 0; border-radius: var(--r-pill);
  padding: 15px; font-family: var(--font-display); font-weight: 700; font-size: 16px;
  box-shadow: 0 14px 30px -12px rgba(30,140,66,.6);
  animation: phonePulse 2.4s ease-in-out infinite;
}
.phone-btn svg { width: 19px; height: 19px; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes phonePulse {
    0%, 100% { box-shadow: 0 14px 30px -12px rgba(30,140,66,.6), 0 0 0 0 var(--accent-soft); }
    50%      { box-shadow: 0 14px 30px -12px rgba(30,140,66,.6), 0 0 0 10px transparent; }
  }
}
.phone-foot { text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: var(--text-faint); padding-top: 2px; }

@media (max-width: 480px) {
  .hero { padding-top: 88px; padding-bottom: 10px; }
  .hero-badges { margin: 10px 0 12px; gap: 6px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; max-width: 100%; }
  .countbar { padding: 12px 16px; gap: 14px; flex-direction: column; align-items: flex-start; }
  .band { padding: 22px 20px; }
  .band-form { margin-top: 14px; }
  .foot-cols { gap: 20px; }
  .foot-top { gap: 24px; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; justify-content: center; }
  .quote-grid, .steps, .price-wrap { gap: 14px; }
  .sec-split { gap: 24px; }
  .price-now .amt { font-size: 44px; }
  .msheet a { font-size: 20px; }
}
