/* =========================================================================
   PowerPlanner — landing page
   Appentium · powerplanner.appentium.com
   ========================================================================= */

/* ---------- tokens ---------------------------------------------------- */
:root {
  --void:      #0A0814;
  --ink:       #120F26;
  --ink-2:     #1A1440;
  --ink-3:     #241C55;
  --indigo:    #393281;
  --plum:      #633C8C;
  --violet:    #7A5AF0;
  --violet-lo: #B9A8FF;
  --solar:     #FFB524;
  --solar-lo:  #FFD86B;
  --spark:     #E8489C;
  --sky:       #5B8CFF;
  --mint:      #2FC59B;

  --paper:     #F6F2E9;
  --paper-2:   #EDE7D9;
  --paper-3:   #E1D9C6;
  --graphite:  #18142C;
  --graphite-2:#4A4363;

  --on-dark:   #FFFFFF;
  --on-dark-2: #C7BEE8;
  --on-dark-3: #8E85B8;

  --rule-dark: rgba(185, 168, 255, .18);
  --rule-light: rgba(24, 20, 44, .13);

  --shell: min(1200px, 100% - 2.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 34px;

  --font-display: "Bricolage Grotesque", "Trebuchet MS", Georgia, sans-serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.22, .68, .34, 1);
}

/* grain + grid, reused across dark sections */
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 1;
}

/* ---------- reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.028em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--solar);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--solar);
  color: var(--graphite);
  padding: .7rem 1.2rem;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- shared type ----------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--solar);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

.h-xl { font-size: clamp(2.6rem, 7.2vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.6;
  color: var(--on-dark-2);
}

.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section-head { max-width: 46rem; }
.section-head .h-lg { margin: 1.1rem 0 1rem; }

/* light sections */
.paper {
  background: var(--paper);
  color: var(--graphite);
}
.paper .lede { color: #4B455E; }
.paper .eyebrow { color: #8A5A00; }

/* ---------- buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-solar {
  background: linear-gradient(140deg, var(--solar-lo), var(--solar));
  color: #2A1B00;
  box-shadow: 0 10px 30px -12px rgba(255, 181, 36, .8);
}
.btn-solar:hover { box-shadow: 0 16px 38px -12px rgba(255, 181, 36, .95); }

.btn-ghost {
  border-color: rgba(185, 168, 255, .32);
  color: var(--on-dark);
  background: rgba(122, 90, 240, .1);
}
.btn-ghost:hover { border-color: var(--violet-lo); background: rgba(122, 90, 240, .2); }

.paper .btn-ghost {
  border-color: rgba(24, 20, 44, .22);
  color: var(--graphite);
  background: transparent;
}
.paper .btn-ghost:hover { background: rgba(24, 20, 44, .06); border-color: var(--graphite); }

/* store buttons */
.stores { display: flex; flex-wrap: wrap; gap: .85rem; }

.store {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .72rem 1.35rem .72rem 1.1rem;
  border-radius: 14px;
  background: #FFFFFF;
  color: #131022;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, .9);
}
.store:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(0, 0, 0, .95); }
.store svg { flex: none; }
.store span { display: block; }
.store .store-top {
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: #5A5470;
  line-height: 1.4;
}
.store .store-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
/* ---------- header ---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 8, 20, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--rule-dark);
  background: rgba(10, 8, 20, .92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.03em;
}
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  margin-top: -2px;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .93rem;
  color: var(--on-dark-2);
  transition: color .2s var(--ease);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--solar);
  transition: right .3s var(--ease);
}
.nav a:hover { color: var(--on-dark); }
.nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-cta .btn { padding: .7rem 1.25rem; font-size: .9rem; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  width: 42px; height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--on-dark);
  position: relative;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: var(--on-dark);
  transition: transform .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top:  6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(255, 181, 36, .3) 0%, transparent 55%),
    radial-gradient(90% 80% at 8% 8%, rgba(122, 90, 240, .38) 0%, transparent 60%),
    radial-gradient(120% 120% at 50% 120%, rgba(232, 72, 156, .16) 0%, transparent 55%),
    linear-gradient(180deg, #150F33 0%, #0A0814 78%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-dark) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(80% 70% at 50% 20%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 20%, #000 0%, transparent 78%);
  opacity: .45;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.55rem, 5.6vw, 4.15rem);
  margin: 1.4rem 0 1.35rem;
}
.hero h1 .glow {
  background: linear-gradient(96deg, var(--solar-lo) 10%, var(--solar) 55%, var(--spark) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { max-width: 34rem; }
.hero .stores { margin: 2rem 0 1.4rem; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.5rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--on-dark-3);
}
.trust li { display: flex; align-items: center; gap: .45rem; }
.trust li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

/* launch note */
.ping {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .8rem;
  margin-bottom: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(185, 168, 255, .3);
  background: rgba(122, 90, 240, .14);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .02em;
  color: var(--on-dark-2);
  transition: border-color .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease);
}
.ping:hover {
  border-color: var(--solar);
  background: rgba(255, 181, 36, .14);
  color: #FFF;
  transform: translateY(-2px);
}
.ping svg { opacity: .7; }
.ping-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(47, 197, 155, .6);
  animation: ping 2.4s var(--ease) infinite;
  flex: none;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(47, 197, 155, .55); }
  70%  { box-shadow: 0 0 0 7px rgba(47, 197, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 197, 155, 0); }
}

/* hero device */
.hero-device {
  position: relative;
  justify-self: center;
  width: min(340px, 82vw);
  filter: drop-shadow(0 46px 70px rgba(0, 0, 0, .68));
}
.hero-device img { width: 100%; border-radius: 30px; }

.hero-device::after {
  content: "";
  position: absolute;
  inset: -14% -22% -8%;
  background: radial-gradient(50% 40% at 50% 42%, rgba(122, 90, 240, .5), transparent 70%);
  z-index: -1;
  filter: blur(30px);
}

.readout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .62rem .9rem;
  border-radius: 14px;
  background: rgba(18, 15, 38, .82);
  border: 1px solid var(--rule-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px -22px #000;
  font-family: var(--font-mono);
  font-size: .74rem;
  white-space: nowrap;
}
.readout b {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.readout small {
  display: block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.readout .dot {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
}
.readout-1 { top: 11%;  left: -27%; }
.readout-1 .dot { background: rgba(255, 181, 36, .18); color: var(--solar); }
.readout-1 b { color: var(--solar); }
.readout-2 { top: 45%;  right: -26%; }
.readout-2 .dot { background: rgba(47, 197, 155, .18); color: var(--mint); }
.readout-2 b { color: var(--mint); }
.readout-3 { bottom: 14%; left: -22%; }
.readout-3 .dot { background: rgba(91, 140, 255, .18); color: var(--sky); }
.readout-3 b { color: var(--sky); }

/* hero stats bar */
.metrics {
  position: relative;
  z-index: 2;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metrics div {
  padding: 1.5rem 1.2rem;
  border-left: 1px solid var(--rule-dark);
}
.metrics div:first-child { border-left: 0; }
.metrics b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  background: linear-gradient(150deg, #FFF 20%, var(--violet-lo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metrics span {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

/* ---------- answers (question cards) ---------------------------------- */
.answers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.answer {
  background: var(--paper);
  padding: 2rem 1.7rem 1.9rem;
  position: relative;
  transition: background-color .3s var(--ease);
}
.answer:hover { background: #FFFDF7; }
.answer .q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  display: block;
}
.answer p { font-size: .95rem; color: #4B455E; }
.answer .num {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  color: #A79776;
  display: block;
  margin-bottom: 1.1rem;
}

/* ---------- feature rows ---------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--rule-light);
}
.feature:nth-child(even) .feature-copy { order: 2; }
.feature h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin: .9rem 0 1rem;
}
.feature p { color: #4B455E; font-size: 1.04rem; }
.feature ul {
  margin-top: 1.6rem;
  display: grid;
  gap: .72rem;
}
.feature ul li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .97rem;
  color: #38334C;
}
.feature ul li svg { flex: none; margin-top: .32rem; color: #B07500; }

.feature-shot {
  justify-self: center;
  width: min(300px, 78vw);
  position: relative;
}
.feature-shot img {
  width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 32px 46px rgba(24, 20, 44, .32));
}
.feature-shot::before {
  content: "";
  position: absolute;
  inset: 8% -14% -6%;
  border-radius: 40px;
  background: radial-gradient(60% 50% at 50% 50%, rgba(122, 90, 240, .2), transparent 72%);
  z-index: -1;
}

/* ---------- tool directory -------------------------------------------- */
.tools {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(122, 90, 240, .24), transparent 60%),
    radial-gradient(70% 60% at 5% 100%, rgba(255, 181, 36, .12), transparent 60%),
    var(--ink);
  position: relative;
  overflow: hidden;
}
.tool-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3.4rem;
}
.tool-group {
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  background: linear-gradient(170deg, rgba(122, 90, 240, .12), rgba(10, 8, 20, .3));
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.tool-group:hover { border-color: rgba(185, 168, 255, .42); transform: translateY(-3px); }
.tool-group h3 {
  font-size: 1.16rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .35rem;
}
.tool-group h3 svg { color: var(--solar); flex: none; }
.tool-group > p {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  margin-bottom: 1.35rem;
}
.tool-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.tool-group li {
  font-size: .82rem;
  padding: .34rem .7rem;
  border-radius: 8px;
  background: rgba(185, 168, 255, .08);
  border: 1px solid rgba(185, 168, 255, .13);
  color: var(--on-dark-2);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.tool-group li:hover { background: rgba(255, 181, 36, .16); color: #FFF; }

/* ---------- gallery ---------------------------------------------------- */
.gallery-rail {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 3rem 0 2rem;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(2.5vw, calc(50vw - var(--shell) / 2));
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-rail figure {
  margin: 0;
  flex: none;
  width: 232px;
  scroll-snap-align: center;
}
.gallery-rail img {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .55));
  transition: transform .4s var(--ease);
}
.gallery-rail figure:hover img { transform: translateY(-8px); }
.gallery-rail figcaption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .07em;
  color: var(--on-dark-3);
  text-align: center;
}
.rail-hint {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* ---------- steps ------------------------------------------------------ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
  margin-top: 3.4rem;
}
.step {
  position: relative;
  padding: 2.2rem 1.7rem 1.8rem;
  border-radius: var(--r-lg);
  background: #FFFFFF;
  border: 1px solid var(--rule-light);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  color: #B07500;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.24rem; margin-bottom: .6rem; }
.step p { font-size: .96rem; color: #4B455E; }

/* ---------- audience --------------------------------------------------- */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.aud {
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  background: rgba(185, 168, 255, .05);
}
.aud h3 { font-size: 1.06rem; margin-bottom: .5rem; }
.aud p { font-size: .92rem; color: var(--on-dark-3); }

.langs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.langs li {
  font-family: var(--font-mono);
  font-size: .82rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--rule-dark);
  color: var(--on-dark-2);
}
.langs li span { color: var(--on-dark-3); font-size: .72rem; margin-left: .4rem; }

/* ---------- pricing ---------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 3.2rem;
}
.plan {
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--rule-light);
  background: #FFFFFF;
}
.plan.is-pro {
  background: linear-gradient(165deg, var(--ink-2), var(--void));
  border-color: rgba(255, 181, 36, .35);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.plan.is-pro::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  right: -90px; top: -110px;
  background: radial-gradient(circle, rgba(255, 181, 36, .3), transparent 68%);
}
.plan h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.plan .plan-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A79776;
  display: block;
  margin-bottom: 1.2rem;
}
.plan.is-pro .plan-tag { color: var(--solar); }
.plan ul { margin-top: 1.5rem; display: grid; gap: .68rem; }
.plan li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .95rem;
  color: #4B455E;
}
.plan.is-pro li { color: var(--on-dark-2); }
.plan li svg { flex: none; margin-top: .3rem; color: #B07500; }
.plan.is-pro li svg { color: var(--solar); }
.plan .plan-note {
  margin-top: 1.6rem;
  font-size: .82rem;
  color: #7A7391;
}
.plan.is-pro .plan-note { color: var(--on-dark-2); opacity: .8; position: relative; }

/* ---------- faq -------------------------------------------------------- */
.faq { max-width: 52rem; margin-top: 3rem; }
.faq details {
  border-bottom: 1px solid var(--rule-light);
  padding: 1.35rem 0;
}
.faq details[open] summary { color: #7A4C00; }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  letter-spacing: -.02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: #B07500;
  transition: transform .3s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: .9rem;
  font-size: .99rem;
  color: #4B455E;
  max-width: 44rem;
}
.faq details p + p { margin-top: .7rem; }
.faq a { color: #7A4C00; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- cta -------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(255, 181, 36, .22), transparent 60%),
    radial-gradient(90% 90% at 50% 110%, rgba(122, 90, 240, .35), transparent 60%),
    var(--void);
}
.cta .stores { justify-content: center; margin-top: 2.2rem; }
.cta .h-lg { margin: 1.2rem auto 1.1rem; max-width: 20ch; }
.cta .lede { max-width: 40rem; margin-inline: auto; }
.cta-sun {
  position: absolute;
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255, 216, 107, .3), rgba(255, 181, 36, .06) 45%, transparent 70%);
  pointer-events: none;
}

/* ---------- footer ----------------------------------------------------- */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--rule-dark);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  margin-bottom: 1.1rem;
}
.footer-grid ul { display: grid; gap: .6rem; }
.footer-grid li a {
  font-size: .93rem;
  color: var(--on-dark-2);
  transition: color .2s var(--ease);
}
.footer-grid li a:hover { color: var(--solar); }
.footer-about p {
  font-size: .92rem;
  color: var(--on-dark-3);
  max-width: 30rem;
  margin-top: 1.1rem;
}
.footer-about a.ext,
.footer-bottom a.ext {
  color: var(--on-dark-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(185, 168, 255, .45);
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.footer-about a.ext:hover,
.footer-bottom a.ext:hover {
  color: var(--solar);
  text-decoration-color: var(--solar);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--on-dark-3);
}

/* ---------- reveal animation ------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

.js .hero .reveal { transition-delay: var(--d, 0s); }

/* ---------- responsive -------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-device { margin-top: 1rem; }
  .readout-3 { bottom: 18%; }
  .answers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics div:nth-child(3) { border-left: 0; }
  .metrics div:nth-child(n+3) { border-top: 1px solid var(--rule-dark); }
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-copy { order: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--void);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 40px -18px rgba(0, 0, 0, .9);
    border-bottom: 1px solid var(--rule-dark);
    padding: .5rem 1.25rem 1.5rem;
    transform: translateY(-130%);
    transition: transform .38s var(--ease);
    z-index: 55;
  }
  .nav.is-open { transform: none; }
  .nav a {
    padding: .95rem .25rem;
    border-bottom: 1px solid var(--rule-dark);
    font-size: 1rem;
    color: var(--on-dark);
  }
  .nav a::after { display: none; }
  .burger { display: inline-flex; }
  .header-cta .btn { display: none; }
  .readout { font-size: .68rem; padding: .5rem .7rem; }
  .readout-1 { left: -2%; top: 8%; }
  .readout-2 { right: -2%; }
  .readout-3 { display: none; }
}

@media (max-width: 560px) {
  :root { --shell: min(1200px, 100% - 1.8rem); }
  .ping { font-size: .67rem; gap: .45rem; padding: .42rem .78rem .42rem .62rem; }
  .ping-long { display: none; }
  .answers { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metrics div { border-left: 0; border-top: 1px solid var(--rule-dark); }
  .metrics div:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stores { flex-direction: column; align-items: stretch; }
  .store { justify-content: flex-start; }
}

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

@media print {
  .site-header, .cta, .gallery-rail { display: none; }
  body { background: #fff; color: #000; }
}
