/* ─────────────────────────────────────────────────────────────
   Petiht Investor Deck — brand palette (no purple, per brand
   guidelines): deep ocean navy, emerald, and warm gold.
   ───────────────────────────────────────────────────────────── */
:root {
  --bg: #071118;
  --bg-2: #0b1a24;
  --panel: #0f2230;
  --panel-2: #12293a;
  --line: rgba(52, 211, 153, 0.14);
  --text: #eef6f3;
  --muted: #9db4ad;
  --accent: #34d399;      /* emerald — matches the app accent  */
  --accent-2: #14b8a6;    /* teal                              */
  --gold: #f5b942;        /* warm gold for premium touches     */
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(20, 184, 166, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(245, 185, 66, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Progress bar ── */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255, 255, 255, 0.06); z-index: 60;
}
.progress__fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--gold));
  transition: width 0.15s ease-out;
}

/* ── Top bar ── */
.topbar {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(180deg, rgba(7, 17, 24, 0.92), rgba(7, 17, 24, 0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #04231a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 18px rgba(52, 211, 153, 0.35);
}
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.3px; }
.brand__tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px; margin-left: 6px;
}
.topbar__links { display: flex; gap: 10px; }
.storelink {
  color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  background: rgba(15, 34, 48, 0.6);
  transition: border-color 0.2s, transform 0.2s;
}
.storelink:hover { border-color: var(--accent); transform: translateY(-1px); }

/* ── Deck & slides ── */
.deck { width: 100%; }
.slide {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 110px 7vw 90px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}
.slide:nth-child(even) { background: linear-gradient(180deg, transparent, rgba(18, 41, 58, 0.35), transparent); }
.slide__inner { width: min(1120px, 100%); }

/* reveal animation */
.slide__inner > * { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide.is-visible .slide__inner > * { opacity: 1; transform: none; }
.slide.is-visible .slide__inner > *:nth-child(2) { transition-delay: 0.1s; }
.slide.is-visible .slide__inner > *:nth-child(3) { transition-delay: 0.2s; }
.slide.is-visible .slide__inner > *:nth-child(4) { transition-delay: 0.3s; }
.slide.is-visible .slide__inner > *:nth-child(5) { transition-delay: 0.4s; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; margin-bottom: 38px; letter-spacing: -0.5px; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p  { color: var(--muted); font-size: 15px; }
.accent { color: var(--accent); }
.center { text-align: center; }
.lead { font-size: 17px; color: var(--text); margin-bottom: 22px; }

.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--line); background: rgba(52, 211, 153, 0.06);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.kicker--center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }

.footnote {
  margin-top: 34px; font-size: 14px; color: var(--muted);
  border-left: 3px solid var(--gold); padding-left: 14px;
}

/* ── Cover ── */
.slide--cover { text-align: center; }
.cover__badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.6px;
  color: var(--gold); border: 1px solid rgba(245, 185, 66, 0.35);
  background: rgba(245, 185, 66, 0.07);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 30px;
}
.cover__title {
  font-size: clamp(64px, 11vw, 138px); font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(120deg, #ffffff 20%, var(--accent) 65%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cover__subtitle { font-family: var(--font-display); font-size: clamp(20px, 3vw, 32px); font-weight: 600; color: var(--text); margin-top: 6px; }
.cover__lede { max-width: 620px; margin: 22px auto 0; font-size: 17px; }
.cover__cta { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.cover__note { margin-top: 34px; font-size: 13.5px; }

.btn {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; border-radius: 14px; padding: 15px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn--primary {
  color: #04231a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(52, 211, 153, 0.5); }
.btn--ghost { color: var(--text); border: 1.5px solid var(--line); background: rgba(15, 34, 48, 0.5); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

.boltlink { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px dashed rgba(245, 185, 66, 0.5); }
.boltlink:hover { border-bottom-style: solid; }

/* ── Grids & cards ── */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(52, 211, 153, 0.4); }
.card--tight { padding: 20px 18px; }
.card--tight p { font-size: 13.5px; }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 21px; margin-bottom: 16px;
  background: rgba(52, 211, 153, 0.1); border: 1px solid var(--line);
}

/* ── Stats ── */
.stat {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
}
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 40px);
  background: linear-gradient(120deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-weight: 600; font-size: 14px; margin: 6px 0 10px; color: var(--text); }
.stat p { font-size: 13.5px; }
.stat--big .stat__num { font-size: clamp(36px, 4.6vw, 56px); }

/* ── Split layout & phone mock ── */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

.checklist { list-style: none; }
.checklist li {
  position: relative; padding: 12px 0 12px 38px; color: var(--muted); font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.checklist li:last-child { border-bottom: none; }
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 11px;
  width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: #04231a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.checklist--small li { font-size: 14px; padding: 9px 0 9px 34px; }
.checklist--small li::before { top: 8px; width: 21px; height: 21px; font-size: 11px; }

.phone {
  width: 250px; margin: 0 auto; border-radius: 38px; padding: 12px;
  background: linear-gradient(160deg, #12303f, #0a1c27);
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(52, 211, 153, 0.08);
  position: relative;
}
.phone__notch {
  width: 90px; height: 22px; border-radius: 12px; margin: 2px auto 10px;
  background: #04121b;
}
.phone__screen { border-radius: 26px; overflow: hidden; background: #06141d; padding: 14px 12px 18px; }
.phone__row--title { font-family: var(--font-display); font-weight: 700; font-size: 13px; margin-bottom: 12px; color: var(--text); }
.phone__post { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.phone__avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex: none; }
.phone__avatar--b { background: linear-gradient(135deg, var(--gold), #e8912d); }
.phone__lines { flex: 1; }
.phone__lines i { display: block; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); margin: 4px 0; }
.phone__lines i:last-child { width: 60%; }
.phone__media {
  height: 150px; border-radius: 14px; margin: 4px 0 10px;
  background:
    radial-gradient(90px 70px at 30% 35%, rgba(52, 211, 153, 0.55), transparent 70%),
    radial-gradient(110px 80px at 75% 70%, rgba(245, 185, 66, 0.4), transparent 70%),
    linear-gradient(150deg, #0d2b3c, #0a2130);
}
.phone__actions { display: flex; gap: 16px; font-size: 15px; margin-bottom: 14px; }

/* ── Stack card (tech slide) ── */
.stackcard {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 10px;
}
.stackcard__row {
  display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted);
  padding: 15px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stackcard__row:last-child { border-bottom: none; }
.pill {
  flex: none; min-width: 108px; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--accent);
  border: 1px solid var(--line); background: rgba(52, 211, 153, 0.07);
  padding: 7px 12px; border-radius: 999px;
}
.pill--gold { color: var(--gold); border-color: rgba(245, 185, 66, 0.35); background: rgba(245, 185, 66, 0.08); }

/* ── Timeline ── */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 9px; left: 4%; right: 4%; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--gold));
  opacity: 0.35;
}
.timeline__item { position: relative; padding-top: 30px; }
.timeline__item strong { font-family: var(--font-display); font-size: 15px; }
.timeline__item p { font-size: 13.5px; margin-top: 4px; }
.timeline__dot {
  position: absolute; top: 0; left: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

/* ── Roadmap ── */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roadmap__col {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
}
.roadmap__col h3 { color: var(--gold); font-size: 15px; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 14px; }

/* ── Store badges ── */
.storebadges { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  background: #0c1f2c; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 12px 22px; color: var(--text);
  transition: transform 0.2s, border-color 0.2s;
}
.badge:hover { transform: translateY(-2px); border-color: var(--accent); }
.badge__icon { font-size: 26px; }
.badge__text { display: flex; flex-direction: column; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.2; }
.badge__text small { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--muted); letter-spacing: 0.4px; }

/* ── Slide navigation ── */
.deidenav {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 50;
  display: flex; align-items: center; gap: 14px;
  background: rgba(9, 22, 31, 0.85); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px; backdrop-filter: blur(10px);
}
.navbtn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--text); font-size: 15px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.navbtn:hover { background: rgba(52, 211, 153, 0.12); border-color: var(--accent); }
.dots { display: flex; gap: 7px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.18); transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.dot.is-active { background: var(--accent); transform: scale(1.35); }

.slidecount {
  position: fixed; bottom: 30px; right: 26px; z-index: 50;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--muted);
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .roadmap, .timeline, .grid--3 { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 620px) {
  .slide { padding: 100px 6vw 110px; }
  .grid--4 { grid-template-columns: 1fr; }
  .topbar__links { display: none; }
  .slidecount { display: none; }
}
