/* ==========================================================================
   Port Pal Pro — "Deep Sea" design system
   A dark, editorial, glass-and-glow direction. Standalone. No dependencies.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Abyss palette */
  --abyss-900: #04080f;
  --abyss-800: #070d1a;
  --abyss-700: #0b1526;
  --abyss-600: #101f36;
  --abyss-500: #16294a;

  /* Accents */
  --aqua: #35e0d0;
  --aqua-soft: #7ff2e6;
  --aqua-deep: #10a89c;
  --amber: #ffb44d;
  --amber-deep: #e0862b;
  --coral: #ff7a6b;

  /* Text */
  --ink: #f2f7ff;
  --ink-soft: #b9c8dd;
  --ink-mute: #7e8fa8;

  /* Surfaces */
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px -12px rgba(53, 224, 208, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--abyss-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient deep-sea light shafts */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(58rem 42rem at 12% -8%, rgba(53, 224, 208, 0.16), transparent 62%),
    radial-gradient(46rem 34rem at 92% 6%, rgba(90, 130, 255, 0.16), transparent 60%),
    radial-gradient(60rem 40rem at 50% 108%, rgba(255, 180, 77, 0.09), transparent 65%),
    linear-gradient(180deg, var(--abyss-900) 0%, var(--abyss-800) 40%, var(--abyss-700) 100%);
  background-attachment: fixed;
}
/* Faint plankton grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

img, svg, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 0.5em; line-height: 1.1; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--aqua); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--aqua-soft); }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--aqua);
  color: var(--abyss-900);
  padding: 10px 18px;
  font-weight: 600;
  z-index: 999;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.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;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 68px 0; }
.center { text-align: center; }

/* ---------- Type utilities ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua));
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.center .lede { margin-inline: auto; }
.grad {
  background: linear-gradient(100deg, var(--aqua-soft) 0%, var(--aqua) 40%, var(--amber) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(120deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: #02201e;
  box-shadow: 0 14px 34px -14px rgba(53, 224, 208, 0.75);
}
.btn--primary:hover { color: #02201e; box-shadow: 0 20px 44px -14px rgba(53, 224, 208, 0.9); }

.btn--ghost {
  background: var(--glass);
  border-color: var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--glass-2); border-color: var(--aqua); color: var(--ink); }

.btn--amber {
  background: linear-gradient(120deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #2a1600;
  box-shadow: 0 14px 34px -14px rgba(255, 180, 77, 0.7);
}
.btn--amber:hover { color: #2a1600; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Store badges (custom, no external images) ---------- */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.center .stores { justify-content: center; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 24px 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.store--soon { cursor: default; }
.store--soon:hover {
  transform: none;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.store:hover {
  transform: translateY(-3px);
  border-color: var(--aqua);
  background: rgba(53, 224, 208, 0.1);
  color: var(--ink);
  box-shadow: 0 16px 36px -18px rgba(53, 224, 208, 0.65);
}
.store svg { width: 26px; height: 26px; flex: none; fill: currentColor; }
.store-txt { display: block; text-align: left; }
.store-txt > span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.store-txt > b {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: currentColor;
}

/* ---------- Header / Nav ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck {
  background: rgba(6, 12, 24, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand:hover { color: inherit; }
.brand img {
  width: 42px; height: 42px; border-radius: 13px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.8);
}
.brand-txt { line-height: 1.1; }
.brand-txt b {
  display: block; color: var(--ink); font-weight: 600;
  font-size: 1.08rem; letter-spacing: -0.01em; font-family: var(--font-display);
}
.brand-txt span {
  display: block; font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--aqua);
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--glass); }
.nav-links a[aria-current="page"] { color: var(--aqua); background: rgba(53, 224, 208, 0.1); }
.nav-cta { margin-left: 8px; padding: 12px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block; position: relative; width: 18px; height: 2px;
  background: currentColor; border-radius: 2px; transition: 0.25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: currentColor; border-radius: 2px; transition: 0.25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(8, 15, 28, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s var(--ease);
  }
  .nav-links.is-open { opacity: 1; transform: translateY(6px); pointer-events: auto; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta { margin: 6px 0 0; }
  .site-head { position: sticky; }
  .nav { position: relative; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 108px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.2vw, 4.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero .lede { font-size: 1.19rem; margin-bottom: 32px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.pill b { color: var(--aqua); font-weight: 600; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 0 rgba(53, 224, 208, 0.7);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(53, 224, 208, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(53, 224, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 224, 208, 0); }
}

.hero-note {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.hero-note i { font-style: normal; color: var(--aqua); }

/* Hero device cluster */
.hero-art { position: relative; display: grid; place-items: center; min-height: 520px; }
.hero-art::before {
  content: "";
  position: absolute;
  width: 118%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 224, 208, 0.22), transparent 62%);
  filter: blur(10px);
}
.hero-art .phone { position: relative; z-index: 2; }
.hero-art .phone--back {
  position: absolute;
  z-index: 1;
  width: 60%;
  transform: translate(-58%, 8%) rotate(-9deg);
  opacity: 0.72;
}
.hero-art .phone--back2 {
  position: absolute;
  z-index: 1;
  width: 60%;
  transform: translate(58%, 8%) rotate(9deg);
  opacity: 0.72;
}

/* Phone frame */
.phone {
  width: 292px;
  max-width: 100%;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.3));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.phone-screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--abyss-700);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
}
.phone-screen img { width: 100%; height: auto; }
.phone-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 20px;
  border-radius: 999px;
  background: rgba(2, 5, 10, 0.9);
  z-index: 2;
}
.phone--sm { width: 230px; border-radius: 34px; padding: 9px; }
.phone--sm .phone-screen { border-radius: 26px; }

.floaty { animation: floaty 7s ease-in-out infinite; }
.floaty--slow { animation: floaty 9s ease-in-out infinite reverse; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .hero .lede { margin-inline: auto; }
  .hero .btn-row, .hero .stores, .hero-note { justify-content: center; }
  .hero-art { min-height: 460px; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 76px; }
  .phone { width: 240px; }
  .hero-art .phone--back, .hero-art .phone--back2 { display: none; }
  .hero-art::before { width: 150%; }
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: slide 46s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track ul {
  display: flex; align-items: center; gap: 44px;
  list-style: none; margin: 0; padding: 0 22px;
}
.ticker-track li {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.ticker-track li::before { content: "◆ "; color: var(--aqua); opacity: 0.8; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0.5;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 0.86rem; color: var(--ink-mute); display: block; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: -60%; left: -20%;
  width: 70%; height: 160%;
  background: radial-gradient(circle at 50% 50%, rgba(53, 224, 208, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
}
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 0.95rem; margin: 0; color: var(--ink-soft); }
.card-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 15px;
  margin-bottom: 20px;
  background: rgba(53, 224, 208, 0.12);
  border: 1px solid rgba(53, 224, 208, 0.3);
  color: var(--aqua);
}
.card-ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.card--amber .card-ico {
  background: rgba(255, 180, 77, 0.12);
  border-color: rgba(255, 180, 77, 0.3);
  color: var(--amber);
}
.card--wide { grid-column: span 2; }
@media (max-width: 700px) { .card--wide { grid-column: span 1; } }

/* ---------- Split showcase rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
}
.split + .split { margin-top: 108px; }
.split--flip .split-art { order: -1; }
.split-art { display: grid; place-items: center; position: relative; }
.split-art::before {
  content: "";
  position: absolute;
  width: 88%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 224, 208, 0.16), transparent 60%);
}
.split--amber .split-art::before {
  background: radial-gradient(circle, rgba(255, 180, 77, 0.16), transparent 60%);
}
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.checks { list-style: none; padding: 0; margin: 26px 0 0; }
.checks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  font-size: 0.98rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: rgba(53, 224, 208, 0.14);
  border: 1px solid rgba(53, 224, 208, 0.4);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 7px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 46px; }
  .split--flip .split-art { order: 0; }
  .split + .split { margin-top: 76px; }
}

/* ---------- Screenshot rail ---------- */
.rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.rail-btn:hover { background: rgba(53, 224, 208, 0.14); border-color: var(--aqua); color: var(--aqua); }
.rail-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.rail {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 24px 30px;
  margin: 0 -24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.18); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb:hover { background: rgba(53, 224, 208, 0.5); }

.shot { flex: 0 0 auto; scroll-snap-align: center; width: 258px; }
.shot .phone { width: 100%; }
.shot figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.shot figcaption b { display: block; color: var(--ink); font-size: 0.97rem; font-weight: 600; margin-bottom: 2px; }

/* ---------- Pricing ---------- */
.price-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 840px;
  margin: 0 auto;
}
.price {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  position: relative;
  text-align: center;
}
.price--hero {
  border-color: rgba(53, 224, 208, 0.42);
  box-shadow: 0 30px 70px -34px rgba(53, 224, 208, 0.6);
  background: linear-gradient(170deg, rgba(53, 224, 208, 0.12), rgba(255, 255, 255, 0.02));
}
.price-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--aqua);
  color: #02201e;
  font-weight: 700;
  white-space: nowrap;
}
.price h3 { font-size: 1.06rem; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.02em; }
.price .amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 10px 0 4px;
}
.price .amount small { font-size: 0.95rem; color: var(--ink-mute); font-family: var(--font-sans); }
.price .sub { font-size: 0.88rem; color: var(--ink-mute); margin-bottom: 22px; }
.price ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price ul li {
  font-size: 0.93rem;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.price ul li:last-child { border-bottom: 0; }
.price ul li::before {
  content: "→";
  position: absolute; left: 0; top: 10px;
  color: var(--aqua);
}
@media (max-width: 720px) { .price-wrap { grid-template-columns: 1fr; } }

/* ---------- Quote ---------- */
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}
.quote blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.quote .who { font-size: 0.9rem; color: var(--ink-mute); }
.quote .who b { color: var(--aqua); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--aqua);
  opacity: 0.35;
  display: block;
  margin-bottom: 14px;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 96px 0; }
.cta-inner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 66px 44px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(46rem 26rem at 20% -20%, rgba(53, 224, 208, 0.22), transparent 60%),
    radial-gradient(40rem 24rem at 85% 120%, rgba(255, 180, 77, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.cta-inner .lede { margin: 0 auto 32px; }
.cta-icon {
  width: 78px; height: 78px;
  border-radius: 22px;
  margin: 0 auto 26px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 44px -20px rgba(0, 0, 0, 0.9);
}
@media (max-width: 560px) {
  .cta-inner { padding: 46px 22px; }
  .section { padding: 68px 0; }
  .store { flex: 1 1 100%; justify-content: center; }
  .store-txt { text-align: left; }
}

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 14, 0.6);
  padding: 66px 0 30px;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 46px;
}
.foot-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { margin-bottom: 10px; }
.foot-grid a { color: var(--ink-soft); }
.foot-grid a:hover { color: var(--aqua); }
.foot-about p { font-size: 0.9rem; color: var(--ink-mute); max-width: 34ch; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: 0.25s var(--ease);
}
.socials a:hover {
  color: var(--aqua);
  border-color: var(--aqua);
  background: rgba(53, 224, 208, 0.1);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: 0.84rem;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Page header (subpages) ---------- */
.page-head { padding: 74px 0 46px; text-align: center; position: relative; }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-head .lede { margin: 0 auto; }
.crumb {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.crumb a { color: var(--aqua); }

/* ---------- Prose ---------- */
.prose {
  padding: 40px 0 96px;
  font-size: 1.02rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 2.2em 0 0.5em;
  letter-spacing: -0.015em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 1.8em 0 0.4em; }
.prose .panel {
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  margin: 28px 0;
}
.prose .panel p:last-child { margin-bottom: 0; }
.prose .pull {
  border-left: 2px solid var(--aqua);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
}
.prose .meta { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-mute); letter-spacing: 0.08em; }

/* ---------- FAQ accordion ---------- */
.faq-groups { display: grid; gap: 46px; padding-bottom: 90px; }
.faq-group h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
details.qa {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--glass);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
details.qa[open] { border-color: rgba(53, 224, 208, 0.35); background: rgba(53, 224, 208, 0.05); }
details.qa summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  position: relative;
  list-style: none;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
details.qa[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
details.qa summary:hover { color: var(--aqua-soft); }
.qa-body { padding: 0 22px 20px; font-size: 0.97rem; }
.qa-body p:last-child, .qa-body ul:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 96px;
}
.form-card {
  padding: 36px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(2, 6, 14, 0.5);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: 0.75; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  background: rgba(2, 6, 14, 0.75);
  box-shadow: 0 0 0 3px rgba(53, 224, 208, 0.16);
}
.field select { appearance: none; cursor: pointer; }
.form-note { font-size: 0.82rem; color: var(--ink-mute); margin: 14px 0 0; }
.form-msg {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.form-msg.is-on { display: block; }
.form-msg--ok { background: rgba(53, 224, 208, 0.12); border: 1px solid rgba(53, 224, 208, 0.4); color: var(--aqua-soft); }
.form-msg--err { background: rgba(255, 122, 107, 0.12); border: 1px solid rgba(255, 122, 107, 0.4); color: #ffb3aa; }

.info-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.info-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.info-card p { font-size: 0.93rem; margin-bottom: 0; color: var(--ink-soft); }
.info-card + .info-card { margin-top: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Team / bio ---------- */
.bio-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
  padding: 10px 0 40px;
}
.bio-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 700px) {
  .bio-hero { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .bio-hero img { max-width: 190px; margin: 0 auto; }
}

/* ---------- Reveal on scroll ----------
   Only hidden when JS is available (html.js), so a JS failure or a
   no-script browser still shows all content. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  body { background: #fff; color: #000; }
  body::before, body::after, .site-head, .site-foot, .cta-band { display: none; }
}
