/* Tonaura home — cinematic, Plus Jakarta Sans, logo gold/teal accents */
:root {
  --bg: #050508;
  --bg-elev: #0c0c12;
  --ink: #0a0a0f;
  --text: #F3EEE4;
  --text-2: #A8A3B5;
  --text-3: #6E6A7A;
  --gold: #C9A24B;
  --gold-soft: rgba(201,162,75,0.14);
  --teal: #4FB3A9;
  --line: rgba(243,238,228,0.1);
  --radius: 20px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
em { font-style: normal; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3 { margin: 0; font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
p { margin: 0; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; background: var(--gold); color: #1a1608; padding: 8px 12px; z-index: 100; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(5,5,8,0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 168px; height: auto;
  filter: saturate(1.18) contrast(1.05) brightness(1.04);
}
.nav-links {
  justify-self: center;
  display: flex; align-items: center; gap: 22px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
}
.nav-links a:hover { color: var(--text); }
.nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  background: var(--gold); color: #1a1608 !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 600;
  white-space: nowrap;
}
.nav-ghost {
  border: 1px solid var(--line); padding: 9px 14px; border-radius: 999px;
}
.nav-burger {
  display: none; background: none; border: 0; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 6px; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 820px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    justify-self: stretch;
    flex-direction: column; align-items: stretch;
    background: rgba(5,5,8,0.96); padding: 16px 24px 24px;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .35s ease, opacity .25s ease;
    gap: 0;
  }
  body.menu-open .nav-links {
    max-height: 70vh; opacity: 1; pointer-events: auto;
  }
  body.menu-open .nav-links a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }
}

/* Hero — brand only, no device */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 88px;
  position: relative;
  max-width: none;
  margin: 0;
}
.hero-atmosphere {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 20%, rgba(79,179,169,0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 20% 70%, rgba(201,162,75,0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 40%, rgba(79,179,169,0.06), transparent 50%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.hero-mark {
  width: 88px; height: 88px; margin: 0 auto 22px;
  filter: saturate(1.25) contrast(1.06);
}
.hero-brand {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 68px);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--text-2);
  max-width: 440px; margin: 0 auto 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: #1a1608; }
.btn-gold:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: rgba(243,238,228,0.28); }

/* Story */
.story {
  padding: 100px 28px 64px;
  text-align: center;
}
.story-inner { max-width: 720px; margin: 0 auto; }
.eyebrow {
  color: var(--teal); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px;
}
.story h2, .session h2, .tones h2, .honest-block h2, .pricing h2, .early h2, .about-hero h1, .inside-wrap h2 {
  font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px;
}
.lede, .honest-block p, .about-prose p {
  font-size: 18px; line-height: 1.6; color: var(--text-2);
}

/* Session steps — no phones */
.session {
  padding: 40px 28px 80px;
  max-width: var(--max);
  margin: 0 auto;
}
.session .story-inner { text-align: center; margin-bottom: 48px; }
.session-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.session-steps li {
  padding: 36px 28px 8px 0;
  border-right: 1px solid var(--line);
}
.session-steps li:last-child { border-right: 0; padding-right: 0; }
.session-steps li:first-child { padding-left: 0; }
.step-num {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--gold); margin-bottom: 16px;
}
.session-steps h3 {
  font-size: 22px; margin-bottom: 10px;
}
.session-steps p {
  color: var(--text-2); font-size: 15px; line-height: 1.55; max-width: 28ch;
}
@media (max-width: 800px) {
  .session-steps { grid-template-columns: 1fr; }
  .session-steps li {
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .session-steps li:last-child { border-bottom: 0; }
  .session-steps p { max-width: none; }
}

/* Tone strip */
.tones {
  padding: 72px 28px 88px;
  background:
    linear-gradient(180deg, transparent, rgba(12,12,18,0.7)),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,162,75,0.07), transparent 60%);
  text-align: center;
}
.tones-inner { max-width: 960px; margin: 0 auto; }
.tones .lede { margin: 0 auto 40px; max-width: 40ch; }
.tone-strip {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}
.tone-strip li {
  padding: 18px 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tone-strip strong {
  display: block;
  font-size: clamp(16px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.tone-strip span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (max-width: 700px) {
  .tone-strip { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .tone-strip li { border: 1px solid var(--line); margin: -1px 0 0 -1px; }
}

/* Promise band */
.promise {
  text-align: center;
  padding: 56px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise-line {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}
.promise-sub { color: var(--text-3); font-size: 14px; }

/* Phone frame + 4-up showcase (only phone block on page) */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 0 auto 16px;
  border-radius: 28px;
  padding: 7px;
  background: linear-gradient(160deg, #1a1a24 0%, #0a0a10 55%, #14141c 100%);
  border: 1px solid rgba(237,231,217,0.12);
  box-shadow: 0 20px 48px -18px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.04);
  box-sizing: border-box;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 4px;
  border-radius: 999px;
  background: #050508;
  z-index: 4;
  pointer-events: none;
}
.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 21px;
  overflow: hidden;
  background: #0B0C10;
  isolation: isolate;
}
.phone-screen > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transform-origin: center center;
}
.ambient-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ambient-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.ambient-slides img.is-active {
  opacity: 1;
  z-index: 1;
}

.inside-wrap { padding: 88px 20px 120px; }
.inside-wrap .story-inner { margin-bottom: 48px; text-align: center; }
.showcase-pad { max-width: 1000px; margin: 0 auto; }
.showcase--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.phone-card { text-align: center; }
.phone-card h3 {
  font-size: 15px; margin-bottom: 6px; color: var(--text); line-height: 1.25;
}
.phone-card p {
  font-size: 13px; color: var(--text-3); line-height: 1.45;
  max-width: 180px; margin: 0 auto;
}
@media (max-width: 900px) {
  .showcase--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 480px; margin: 0 auto; }
}
@media (max-width: 420px) {
  .showcase--4 { grid-template-columns: 1fr; max-width: 240px; }
}


/* About page */
body.about-page .nav { background: rgba(5,5,8,0.72); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.about-hero {
  padding: 140px 28px 72px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-hero .lede { max-width: 42ch; margin: 0 auto; }
.about-chapter {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.about-chapter .chapter-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 6px;
}
.about-chapter h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 16px;
}
.about-chapter p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.65;
  max-width: 52ch;
}
.about-trust {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding: 48px 28px 100px;
  color: var(--text-3); font-size: 13px; font-weight: 500;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}
.about-trust span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); margin-right: 8px; vertical-align: middle;
}
@media (max-width: 720px) {
  .about-chapter { grid-template-columns: 1fr; gap: 12px; padding: 56px 24px; }
}

/* Honest */
.honest { padding: 100px 28px 120px; background: linear-gradient(180deg, transparent, rgba(12,12,18,0.9)); }
.honest-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 800px) { .honest-grid { grid-template-columns: 1fr; } }

/* Pricing */
.pricing { padding: 80px 28px 100px; text-align: center; }
.price-row {
  max-width: 820px; margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left;
}
.price-tier {
  padding: 32px 28px; border-radius: 24px;
  border: 1px solid var(--line); background: rgba(12,12,18,0.6);
}
.price-tier.featured {
  border-color: rgba(201,162,75,0.45);
  background: linear-gradient(160deg, rgba(201,162,75,0.1), rgba(12,12,18,0.85));
}
.tier-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #1a1608; background: var(--gold);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.price-tier h3 { font-size: 22px; margin-bottom: 8px; }
.price-amt {
  font-size: 40px; font-weight: 700; color: var(--gold); margin-bottom: 8px;
}
.price-amt span { font-size: 15px; color: var(--text-3); font-weight: 500; }
.price-note { color: var(--text-2); font-size: 14px; margin-bottom: 18px; line-height: 1.5; }
.price-tier ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px; color: var(--text-2); font-size: 14px;
}
.price-tier ul li::before { content: "– "; color: var(--teal); }
.price-tier .btn { width: 100%; }
@media (max-width: 700px) { .price-row { grid-template-columns: 1fr; } }

/* Early access */
.early { padding: 40px 28px 140px; }
.early-panel {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 48px 28px; border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(79,179,169,0.14), transparent 60%),
    var(--bg-elev);
  border: 1px solid var(--line);
}
.early-form {
  display: flex; gap: 10px; margin: 28px auto 12px; max-width: 440px;
}
.early-form input {
  flex: 1; min-width: 0; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(0,0,0,0.35); color: var(--text);
  padding: 14px 18px; font: inherit; font-size: 15px;
}
.early-form input:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.early-note { color: var(--text-3); font-size: 13px; }
.form-status { margin-top: 12px; color: var(--teal); font-size: 14px; }
@media (max-width: 560px) {
  .early-form { flex-direction: column; }
}

/* Footer (kept structure) */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 28px 28px;
  background: #040406;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
}
.footer-lockup {
  width: 180px; height: auto; margin-bottom: 12px;
  filter: saturate(1.18) contrast(1.05);
}
.footer-tagline { color: var(--text-2); font-size: 14px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; color: var(--text-3); }
.footer-social a {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid rgba(243,238,228,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover { transform: translateY(-1px); }
.footer-social a.social-linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.footer-social a.social-x:hover { background: #000; border-color: #fff; color: #fff; }
.footer-social a.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #fff;
}
.footer-social a.social-youtube:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-social a.social-tiktok:hover { background: #000; border-color: #000; color: #fff; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px; font-weight: 600;
}
.footer-col a {
  display: block; color: var(--text-2); font-size: 14px; margin-bottom: 10px;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max) !important; margin: 0 auto; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--text-3); font-size: 12px;
}
.footer-bottom a { color: var(--text-2); }
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* Reveal motion — scroll flow across home + about */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.05s cubic-bezier(.22,1,.36,1),
    transform 1.05s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; will-change: auto; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .32s; }
.reveal.delay-4 { transition-delay: .44s; }
.phone-card.reveal {
  transform: translateY(48px) scale(0.97);
}
.phone-card.reveal.is-in {
  transform: none;
}
.session-steps li.reveal {
  transform: translateY(24px);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .phone-card.reveal,
  .session-steps li.reveal {
    opacity: 1; transform: none; transition: none; will-change: auto;
  }
}

/* Cookie */
.cookie-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  display: grid; place-items: center; z-index: 80; padding: 20px;
}
.cookie-backdrop[hidden] { display: none !important; }
.cookie-modal {
  width: min(420px, 100%); background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px;
}
.cookie-modal h2 { font-size: 22px; margin-bottom: 10px; }
.cookie-modal p { color: var(--text-2); font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
.cookie-toggle { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; color: var(--text-2); }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
