/* ==========================================================================
   Redfish — site vitrine
   Design system repris de l'app mobile (src/theme/colors.ts, tokens.ts).
   ========================================================================== */
@font-face {
  font-family: 'Shrikhand';
  src: url('/assets/fonts/shrikhand.986697b85b.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --coral: #ff7777;
  --coral-deep: #c43e48;
  --ink-on-coral: #3b0d12;
  --bg: #0f1419;
  --bg-deep: #0c0d10;
  --surface: #1a2332;
  --surface-2: #141c28;
  --border: #2d3a4f;
  --text: #e8edf4;
  --muted: #8b9cb3;
  --accent: var(--coral);
  --accent-ink: var(--coral);
  --accent-soft: rgba(255, 119, 119, 0.16);
  --accent-border: rgba(255, 119, 119, 0.24);
  --glass: rgba(26, 35, 50, 0.55);
  --glass-strong: rgba(20, 28, 40, 0.78);
  --glass-edge: rgba(255, 255, 255, 0.08);
  --sheen: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  --glow-a: 0.18;
  --glow-b: 0.09;
  --grain-opacity: 0.07;
  --font-brand: 'Shrikhand', 'Georgia', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-dock: 34px;
  --r-pill: 999px;
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}
:root[data-theme='light'] {
  --bg: #fafafa;
  --bg-deep: #f3f1f0;
  --surface: #ffffff;
  --surface-2: #f6f4f4;
  --border: #ebebeb;
  --text: #1c2430;
  --muted: #5d6b80;
  --accent-ink: var(--coral-deep);
  --accent-soft: rgba(255, 119, 119, 0.12);
  --accent-border: rgba(255, 119, 119, 0.3);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --glass-edge: rgba(28, 36, 48, 0.08);
  --sheen: rgba(255, 255, 255, 0.5);
  --shadow: 0 24px 60px -28px rgba(28, 36, 48, 0.28);
  --glow-a: 0.14;
  --glow-b: 0.08;
  --grain-opacity: 0.045;
  color-scheme: light;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']):not([data-theme='light']) {
    --bg: #fafafa;
    --bg-deep: #f3f1f0;
    --surface: #ffffff;
    --surface-2: #f6f4f4;
    --border: #ebebeb;
    --text: #1c2430;
    --muted: #5d6b80;
    --accent-ink: var(--coral-deep);
    --accent-soft: rgba(255, 119, 119, 0.12);
    --accent-border: rgba(255, 119, 119, 0.3);
    --glass: rgba(255, 255, 255, 0.62);
    --glass-strong: rgba(255, 255, 255, 0.85);
    --glass-edge: rgba(28, 36, 48, 0.08);
    --sheen: rgba(255, 255, 255, 0.5);
    --shadow: 0 24px 60px -28px rgba(28, 36, 48, 0.28);
    --glow-a: 0.14;
    --glow-b: 0.08;
    --grain-opacity: 0.045;
    color-scheme: light;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
button {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--coral);
  color: #1c0a0c;
}
:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}
.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--coral);
  color: #1c0a0c;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: none;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}
.halo {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.h-display,
.h-section {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}
.h-display {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h-section {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.script {
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--accent);
}
.lead {
  margin: 20px 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  text-wrap: pretty;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .lead {
  margin-inline: auto;
}
.slogan {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 15px;
  letter-spacing: 2.4px;
  text-transform: lowercase;
}
.slogan b {
  font-weight: 800;
}
.slogan::after {
  content: '';
  width: 36px;
  height: 1.5px;
  background: currentColor;
}
.btn {
  --btn-bg: var(--coral);
  --btn-fg: #1c0a0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px -6px rgba(255, 119, 119, 0.55);
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(255, 119, 119, 0.6);
}
.btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}
.btn svg {
  width: 22px;
  height: 22px;
  flex: none;
}
.btn-ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover {
  box-shadow: none;
  border-color: var(--accent-border);
}
.store {
  position: relative;
  min-width: 212px;
  justify-content: flex-start;
  padding: 10px 20px 10px 16px;
  text-align: left;
  line-height: 1.15;
  cursor: default;
}
.store:hover {
  transform: none;
}
.store small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.75;
}
.store span {
  font-size: 17px;
}
.store svg {
  width: 26px;
  height: 26px;
}
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--accent-border);
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 119, 119, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 119, 119, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 119, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 119, 119, 0); }
}
.site-header {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 50;
  pointer-events: none;
}
.site-header .bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(var(--container) - 2 * var(--gutter));
  width: calc(100% - 2 * var(--gutter));
  margin-inline: auto;
  padding: 8px 8px 8px 18px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.is-scrolled .site-header .bar,
.nav-open .site-header .bar {
  background: var(--glass-strong);
  border-color: var(--glass-edge);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand .fish {
  width: 44px;
  height: 26px;
  color: var(--coral);
}
.brand .word {
  font-family: var(--font-brand);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}
.tools {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-pill);
  background: var(--glass);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, border-color 0.2s ease, color 0.2s ease;
}
.icon-btn:hover {
  border-color: var(--accent-border);
  color: var(--accent-ink);
}
.icon-btn:active {
  transform: scale(0.94);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}
.theme-toggle .i-sun,
.theme-toggle .i-moon,
.theme-toggle .i-auto {
  display: none;
}
.theme-toggle[data-mode='light'] .i-sun,
.theme-toggle[data-mode='dark'] .i-moon,
.theme-toggle[data-mode='auto'] .i-auto {
  display: block;
}
.menu-toggle {
  display: none;
}
.menu-toggle .bars {
  position: relative;
  width: 18px;
  height: 12px;
}
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out);
}
.menu-toggle .bars::before { top: 1px; }
.menu-toggle .bars::after { top: 9px; }
.nav-open .menu-toggle .bars::before { top: 5px; transform: rotate(45deg); }
.nav-open .menu-toggle .bars::after { top: 5px; transform: rotate(-45deg); }
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-grid;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--glass-edge);
    border-radius: var(--r-xl);
    background: var(--glass-strong);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    backdrop-filter: blur(22px) saturate(1.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out), visibility 0s linear 0.35s;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 16px;
    font-size: 17px;
    color: var(--text);
  }
  .nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
  }
  .tools {
    margin-left: auto;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 16vh, 170px) 0 clamp(64px, 9vw, 110px);
  background: var(--bg-deep);
  transition: background-color 0.4s ease;
}
.hero .halo-a {
  top: -38vw;
  left: 30%;
  width: 90vw;
  height: 90vw;
  max-width: 1100px;
  max-height: 1100px;
  opacity: var(--glow-a);
}
.hero .halo-b {
  bottom: -30vw;
  left: -22vw;
  width: 60vw;
  height: 60vw;
  opacity: var(--glow-b);
}
.hero-fish {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -6%;
  width: min(1100px, 110vw);
  color: var(--coral);
  opacity: 0.07;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.hero-copy .pill {
  margin-bottom: 26px;
}
.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}
.rococo {
  position: absolute;
  z-index: 2;
  bottom: 12%;
  left: -12%;
  width: min(250px, 46%);
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(-12deg);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  animation: float 7s ease-in-out infinite;
}
.rococo img {
  width: 100%;
  height: auto;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .lead {
    margin-inline: auto;
  }
  .stores {
    justify-content: center;
  }
  .hero-visual {
    min-height: 0;
    padding-top: 12px;
  }
  .rococo {
    top: 6%;
    bottom: auto;
    left: max(0px, calc(50% - 250px));
    width: min(170px, 36vw);
  }
}
.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 78vw);
  aspect-ratio: 9 / 19.2;
  padding: 11px;
  border-radius: 52px;
  background: linear-gradient(145deg, #2a3140, #0b0e13 40%, #1f2531);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.08) inset,
    0 50px 90px -30px rgba(0, 0, 0, 0.7),
    0 0 120px -20px rgba(255, 119, 119, 0.35);
  transform: translate3d(calc(var(--px, 0px) * -0.4), calc(var(--py, 0px) * -0.4), 0) rotate(3deg);
  transition: transform 0.2s linear;
}
.phone::before {
  content: '';
  position: absolute;
  top: 22%;
  right: -3px;
  width: 3px;
  height: 64px;
  border-radius: 0 3px 3px 0;
  background: #262c38;
}
.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #0f1419;
  color: #e8edf4;
  isolation: isolate;
}
.screen .halo {
  filter: blur(40px);
}
.screen .halo-a {
  top: -30%;
  left: -20%;
  width: 140%;
  height: 70%;
  opacity: 0.2;
}
.screen .halo-b {
  bottom: -10%;
  left: -40%;
  width: 90%;
  height: 45%;
  opacity: 0.1;
}
.island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  width: 92px;
  height: 27px;
  border-radius: 20px;
  background: #000;
  transform: translateX(-50%);
}
.statusbar {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 0;
  font-size: 13px;
  font-weight: 700;
}
.statusbar .sys {
  display: flex;
  gap: 5px;
  align-items: center;
}
.statusbar .sys i {
  display: block;
  width: 16px;
  height: 9px;
  border-radius: 2px;
  background: #e8edf4;
}
.statusbar .sys i:first-child {
  width: 14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.app {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100% - 30px);
  padding: 22px 16px 96px;
}
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.glass-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #e8edf4;
}
.glass-btn svg {
  width: 18px;
  height: 18px;
}
.chip {
  padding: 5px 12px;
  border-radius: 10px;
  background: rgba(255, 119, 119, 0.16);
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.device {
  position: relative;
  width: 78%;
  margin: auto 0 9%;
  color: var(--coral);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  padding: 0;
  background: none;
  transition: transform 0.25s var(--ease-spring);
}
.device:active,
.device.is-shot {
  transform: scale(0.95);
}
.device svg {
  width: 100%;
  height: auto;
}
.flash {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.flash.is-on {
  animation: flash 0.6s ease-out;
}
@keyframes flash {
  0% { opacity: 0; }
  12% { opacity: 0.85; }
  100% { opacity: 0; }
}
.app-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.app-meta .count {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}
.app-meta .count b {
  display: inline-block;
  min-width: 1.3em;
  text-align: right;
}
.app-meta .count.tick b {
  animation: tick 0.45s var(--ease-spring);
}
@keyframes tick {
  0% { transform: translateY(-8px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.app-meta .chip.small {
  font-size: 12px;
  font-weight: 700;
}
.app-dots {
  display: flex;
  gap: 6px;
  margin: 16px 0 auto;
}
.app-dots i {
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(232, 237, 244, 0.28);
}
.app-dots i:first-child {
  width: 22px;
  background: var(--coral);
}
.developing {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  background: rgba(12, 14, 18, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.developing.is-on {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease;
}
.developing strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.developing span {
  color: #8b9cb3;
  font-size: 13px;
}
.developing .bar {
  width: 150px;
  height: 4px;
  margin: 6px auto 0;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.developing .bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--coral);
}
.developing.is-on .bar::after {
  animation: fill 2.4s var(--ease-out) forwards;
}
@keyframes fill {
  to { width: 100%; }
}
.dock {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 62px;
  padding: 0 6px;
  border-radius: var(--r-dock);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  backdrop-filter: blur(18px) saturate(1.8);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.dock span {
  position: relative;
  display: grid;
  place-items: center;
  height: 48px;
  color: rgba(232, 237, 244, 0.62);
}
.dock span.on {
  color: var(--coral);
}
.dock span.on::before {
  content: '';
  position: absolute;
  inset: 0 2px;
  border-radius: 26px;
  background: rgba(255, 119, 119, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.dock svg {
  position: relative;
  width: 22px;
  height: 22px;
}
.section {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
}
.section.tight {
  padding-top: 0;
}
.card {
  position: relative;
  border: 1px solid var(--accent-border);
  border-radius: var(--r-xl);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.orb {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.orb svg {
  width: 30px;
  height: 30px;
}
.film-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.film-section .section-head {
  margin-bottom: 40px;
}
.strip {
  position: relative;
  padding: 26px 0;
  background: #120d0b;
  transform: rotate(-2deg);
  width: 108%;
  margin-left: -4%;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.strip::before,
.strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image: radial-gradient(circle at 50% 50%, transparent 0, transparent 0),
    linear-gradient(90deg, rgba(255, 244, 230, 0.85) 0 12px, transparent 12px 28px);
  background-size: 28px 12px;
  -webkit-mask: linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0);
  border-radius: 2px;
  opacity: 0.9;
}
.strip::before { top: 8px; }
.strip::after { bottom: 8px; }
.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.strip-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
.strip:hover .strip-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.frame {
  position: relative;
  flex: none;
  width: clamp(200px, 24vw, 290px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
}
.frame .scene {
  position: absolute;
  inset: 0;
  filter: invert(1) hue-rotate(180deg) sepia(0.6) saturate(1.6) brightness(0.8);
  transition: filter 2.2s var(--ease-out);
}
.is-developed .frame .scene {
  filter: sepia(0.18) saturate(1.15) contrast(1.05);
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(20, 8, 0, 0.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.frame time {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  color: #ff9a3c;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(255, 120, 30, 0.9);
  opacity: 0;
  transition: opacity 1s ease 1.4s;
}
.is-developed .frame time {
  opacity: 1;
}
.s-sunset {
  background:
    radial-gradient(circle at 62% 58%, #fff4c9 0 9%, #ffc37a 10%, transparent 26%),
    linear-gradient(180deg, #ff8e72 0%, #ffb27d 42%, #ffd6a0 58%, #2e6f8e 60%, #1c4861 100%);
}
.s-sunset::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 64%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255, 220, 160, 0.8) 0 18px, transparent 18px 34px);
  box-shadow: 0 10px 0 -1px rgba(255, 220, 160, 0.4), 0 22px 0 -1px rgba(255, 220, 160, 0.2);
}
.s-party {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 119, 119, 0.95) 0 5%, transparent 12%),
    radial-gradient(circle at 70% 22%, rgba(255, 214, 102, 0.9) 0 4%, transparent 11%),
    radial-gradient(circle at 45% 65%, rgba(120, 180, 255, 0.8) 0 6%, transparent 14%),
    radial-gradient(circle at 85% 70%, rgba(255, 150, 220, 0.85) 0 5%, transparent 12%),
    radial-gradient(circle at 10% 80%, rgba(255, 214, 102, 0.7) 0 4%, transparent 10%),
    linear-gradient(160deg, #2a1640, #120a1f);
}
.s-mountain {
  background: linear-gradient(180deg, #8cc5e8, #d9eef7 60%, #f4f1e8);
}
.s-mountain::before,
.s-mountain::after {
  content: '';
  position: absolute;
  inset: 0;
}
.s-mountain::before {
  background: #5a7d8f;
  clip-path: polygon(0 100%, 0 62%, 22% 34%, 38% 52%, 56% 22%, 78% 56%, 100% 38%, 100% 100%);
}
.s-mountain::after {
  background: #2f5140;
  clip-path: polygon(0 100%, 0 78%, 30% 62%, 55% 80%, 80% 64%, 100% 76%, 100% 100%);
}
.s-beach {
  background: linear-gradient(180deg, #7fd0e6 0 48%, #3fb0c9 48% 62%, #f4d9a8 62% 100%);
}
.s-beach::before {
  content: '';
  position: absolute;
  left: 30%;
  top: 30%;
  width: 40%;
  aspect-ratio: 2 / 1;
  border-radius: 200px 200px 0 0;
  background: repeating-conic-gradient(from 270deg at 50% 100%, #ff7777 0 22.5deg, #fff6ea 22.5deg 45deg);
}
.s-beach::after {
  content: '';
  position: absolute;
  left: calc(50% - 2px);
  top: 50%;
  width: 4px;
  height: 36%;
  background: #6b4a2f;
}
.s-cake {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 200, 100, 0.85) 0 6%, rgba(255, 140, 60, 0.3) 18%, transparent 40%),
    linear-gradient(180deg, #2b1a12, #1a0f0a);
}
.s-cake::before {
  content: '';
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 14%;
  height: 32%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #fff1e6 0 22%, #ff9a9a 22% 40%, #fff1e6 40% 100%);
}
.s-cake::after {
  content: '';
  position: absolute;
  left: calc(50% - 3px);
  bottom: 46%;
  width: 6px;
  height: 16%;
  border-radius: 3px;
  background: #ffd1dc;
}
.s-city {
  background:
    radial-gradient(circle at 80% 20%, #ffe9c4 0 5%, transparent 6%),
    linear-gradient(180deg, #ff9f8a 0%, #c86b8a 55%, #3b2c4f 100%);
}
.s-city::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1f1830;
  clip-path: polygon(0 100%, 0 60%, 10% 60%, 10% 45%, 20% 45%, 20% 66%, 30% 66%, 30% 30%, 40% 30%, 40% 55%, 52% 55%, 52% 40%, 60% 40%, 60% 70%, 70% 70%, 70% 50%, 82% 50%, 82% 62%, 92% 62%, 92% 48%, 100% 48%, 100% 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 30px 28px 32px;
  overflow: hidden;
}
.step .num {
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: var(--font-brand);
  font-size: 84px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-border);
}
.step h3 {
  margin: 24px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.step p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    'roll roll look'
    'events onetake code'
    'events friends widget';
  gap: 20px;
}
.tile {
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 119, 0.45);
}
.tile h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.tile .kicker {
  margin-bottom: 10px;
  font-size: 11px;
}
.tile .viz {
  margin-top: auto;
  padding-top: 26px;
}
.t-roll { grid-area: roll; }
.t-look { grid-area: look; }
.t-events { grid-area: events; }
.t-events .viz {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.t-events .map {
  flex: 1;
}
.t-onetake { grid-area: onetake; }
.t-code { grid-area: code; }
.t-friends { grid-area: friends; }
.t-widget { grid-area: widget; }
@media (max-width: 960px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'roll roll'
      'look events'
      'onetake events'
      'code friends'
      'widget widget';
  }
}
@media (max-width: 620px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: 'roll' 'look' 'events' 'onetake' 'code' 'friends' 'widget';
  }
}
.shots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  max-width: 560px;
}
.shots i {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  transition: background-color 0.35s ease, transform 0.35s var(--ease-spring), border-color 0.35s ease;
}
.shots i.used {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(0.82);
}
.shots-legend {
  display: flex;
  justify-content: space-between;
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.shots-legend b {
  color: var(--accent-ink);
}
.look {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
}
.look .scene {
  position: absolute;
  inset: 0;
}
.look .after {
  filter: sepia(0.35) saturate(1.35) contrast(1.08) brightness(1.02) hue-rotate(-8deg);
  clip-path: inset(0 0 0 50%);
  animation: sweep 6s ease-in-out infinite;
}
.look .after::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 190, 90, 0.12) 30%, rgba(40, 15, 0, 0.55) 100%);
}
@keyframes sweep {
  0%, 100% { clip-path: inset(0 0 0 70%); }
  50% { clip-path: inset(0 0 0 22%); }
}
.look .tag {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(12, 14, 18, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.look .tag.l { left: 10px; }
.look .tag.r { right: 10px; background: var(--coral); color: #1c0a0c; }
.map {
  position: relative;
  min-height: 260px;
  height: 100%;
  overflow: hidden;
  border-radius: var(--r-md);
  background:
    linear-gradient(90deg, transparent 49.4%, var(--border) 49.4% 50.6%, transparent 50.6%) 0 0 / 70px 70px,
    linear-gradient(0deg, transparent 49.4%, var(--border) 49.4% 50.6%, transparent 50.6%) 0 0 / 70px 70px,
    var(--surface-2);
}
.map::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 30% 90% at 30% 50%, transparent 60%, rgba(120, 170, 220, 0.22) 61% 70%, transparent 71%);
  transform: rotate(-25deg);
}
.map::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 58%;
  height: 10px;
  background: var(--accent-soft);
  transform: rotate(-12deg);
}
.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.pin::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  animation: ping 2.4s var(--ease-out) infinite;
}
.pin.p1 { left: 28%; top: 30%; }
.pin.p2 { left: 66%; top: 44%; }
.pin.p3 { left: 44%; top: 74%; }
.pin.p2::after { animation-delay: 0.8s; }
.pin.p3::after { animation-delay: 1.6s; }
@keyframes ping {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}
.map .you {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 56%;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #4f8cff;
  box-shadow: 0 0 0 10px rgba(79, 140, 255, 0.18);
}
.map .bubble {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 14%;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.map .bubble small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}
.booth {
  display: flex;
  justify-content: center;
}
.booth .print {
  position: relative;
  width: 124px;
  padding: 10px 10px 30px;
  background: #fffaf2;
  border-radius: 4px;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
  transition: transform 0.5s var(--ease-spring);
}
.tile:hover .booth .print {
  transform: rotate(3deg) translateY(-4px);
}
.booth .face {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 50% 40%, #f2c7a5 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 100%, #ff7777 0 38%, transparent 39%),
    linear-gradient(180deg, #d9d2c7, #b9aea1);
  filter: sepia(0.25) contrast(1.05);
}
.booth .print span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  color: #3b2a22;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
.code {
  display: flex;
  justify-content: center;
}
.qr {
  position: relative;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 3px;
  width: 132px;
  padding: 12px;
  border-radius: var(--r-md);
  background: #fff;
}
.qr i {
  aspect-ratio: 1;
  border-radius: 2px;
}
.qr i.on {
  background: #1c2430;
}
.qr .mark {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px #fff;
}
.qr .mark svg {
  width: 32px;
  height: auto;
}
.qr::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  top: 12%;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  box-shadow: 0 0 12px 2px rgba(255, 119, 119, 0.7);
  animation: scan 2.8s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 10%; }
  50% { top: 88%; }
}
.friends {
  display: flex;
  align-items: center;
}
.friends i {
  width: 52px;
  height: 52px;
  margin-left: -12px;
  border: 3px solid var(--surface);
  border-radius: 50%;
}
.friends i:first-child { margin-left: 0; background: linear-gradient(135deg, #ffb199, #ff7777); }
.friends i:nth-child(2) { background: linear-gradient(135deg, #a1c4fd, #5a7dff); }
.friends i:nth-child(3) { background: linear-gradient(135deg, #f6d365, #fda085); }
.friends i:nth-child(4) { background: linear-gradient(135deg, #84fab0, #3d9970); }
.friends span {
  margin-left: 14px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
}
.widget-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.widget {
  display: grid;
  place-items: center;
  flex: none;
  width: 118px;
  height: 118px;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a2332, #0f1419);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  color: var(--coral);
}
.widget svg {
  width: 64px;
}
.apps {
  display: grid;
  grid-template-columns: repeat(2, 50px);
  gap: 14px;
}
.apps i {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--coral);
  color: var(--ink-on-coral);
}
.manifesto .halo {
  background: #fff;
  opacity: 0.22;
}
.manifesto .halo-a {
  top: -40%;
  right: -10%;
  width: 60vw;
  height: 60vw;
}
.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.manifesto .kicker {
  color: var(--ink-on-coral);
}
.manifesto h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(160, 30, 40, 0.25);
}
.rules {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rules li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 17px;
  line-height: 1.45;
}
.rules li b {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.rules .emoji {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--coral-deep);
}
.rules .emoji svg {
  width: 22px;
  height: 22px;
}
.ticker {
  position: relative;
  z-index: 1;
  margin-top: clamp(60px, 8vw, 100px);
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.2;
}
.ticker div {
  display: inline-flex;
  gap: 0.6em;
  animation: marquee 40s linear infinite;
}
.ticker span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}
@media (max-width: 860px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.privacy-grid .card {
  padding: 26px 24px;
}
.privacy-grid h3 {
  margin: 20px 0 8px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.privacy-grid .orb {
  width: 52px;
  height: 52px;
}
.privacy-grid .orb svg {
  width: 24px;
  height: 24px;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: none;
}
.more svg {
  width: 18px;
  transition: transform 0.25s var(--ease-out);
}
.more:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 0.25s ease, background-color 0.4s ease;
}
.faq details[open] {
  border-color: var(--accent-border);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(var(--accent-ink), var(--accent-ink)) center / 12px 2px no-repeat,
    linear-gradient(var(--accent-ink), var(--accent-ink)) center / 2px 12px no-repeat,
    var(--accent-soft);
  transition: transform 0.35s var(--ease-spring);
}
.faq details[open] summary::after {
  transform: rotate(135deg);
}
.faq .answer {
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq .answer p {
  margin: 0;
}
.cta {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  border-radius: var(--r-dock);
  background: var(--coral);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.cta .halo {
  background: #fff;
  opacity: 0.25;
  z-index: -1;
}
.cta .halo-a { top: -60%; left: 20%; width: 70%; height: 120%; }
.cta .fish {
  width: min(240px, 60vw);
  color: #fff;
}
.cta .word {
  margin: 6px 0 0;
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
}
.cta .slogan {
  margin-top: 18px;
  color: #fff;
  align-items: center;
}
.cta p.cta-text {
  max-width: 30em;
  margin: 24px 0 0;
  color: var(--ink-on-coral);
  font-size: 18px;
  font-weight: 600;
}
.cta .stores {
  justify-content: center;
}
.cta .store {
  --btn-bg: #fff;
  --btn-fg: var(--coral-deep);
  border-color: transparent;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}
.site-footer {
  position: relative;
  padding: 72px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  transition: background-color 0.4s ease;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-grid p {
  max-width: 26em;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.footer-grid h2 {
  margin: 4px 0 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-grid ul a {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-grid ul a:hover {
  color: var(--accent-ink);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom .made {
  color: var(--accent-ink);
  font-weight: 700;
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 60px;
  background: var(--bg-deep);
}
.page-hero .halo-a {
  top: -50vw;
  right: -10vw;
  width: 80vw;
  height: 80vw;
  opacity: var(--glow-a);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .h-section {
  max-width: 16em;
}
.page-hero .meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.doc {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 110px;
}
.toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.toc h2 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.toc ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.toc a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}
.toc a:hover {
  color: var(--text);
  background: var(--accent-soft);
}
.prose {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.7;
}
.prose > :first-child {
  margin-top: 0;
}
.prose h2 {
  margin: 2.4em 0 0.6em;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  scroll-margin-top: 100px;
}
.prose h3 {
  margin: 1.8em 0 0.4em;
  font-size: 19px;
  font-weight: 800;
}
.prose p,
.prose ul,
.prose ol {
  margin: 0 0 1em;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
}
.prose ul {
  padding-left: 1.2em;
}
.prose li {
  margin: 0.35em 0;
}
.prose li::marker {
  color: var(--coral);
}
.prose a {
  color: var(--accent-ink);
  font-weight: 700;
}
.prose strong {
  color: var(--text);
}
.prose .note {
  padding: 18px 20px;
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  background: var(--accent-soft);
  font-size: 15px;
}
.prose .todo {
  padding: 1px 8px;
  border-radius: 6px;
  background: rgba(255, 196, 0, 0.18);
  color: var(--text);
  font-weight: 700;
}
.table-wrap {
  margin: 0 0 1.2em;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.prose table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}
.prose th,
.prose td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.prose th {
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.prose tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 900px) {
  .doc {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.help-grid .card {
  padding: 26px;
}
.help-grid h2 {
  margin: 20px 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.help-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.help-grid .path {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 700;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: clamp(28px, 4vw, 44px);
}
.contact h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.contact p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 900px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}
.lost {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
  text-align: center;
  background: var(--bg-deep);
}
.lost .halo-a {
  top: -30vw;
  left: 10vw;
  width: 80vw;
  height: 80vw;
  opacity: var(--glow-a);
}
.lost .inner {
  position: relative;
  z-index: 1;
}
.lost .big {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(110px, 22vw, 240px);
  line-height: 1;
  color: var(--coral);
}
.lost .fish {
  width: 180px;
  margin: 0 auto 10px;
  color: var(--coral);
  animation: swim 4s ease-in-out infinite;
}
@keyframes swim {
  0%, 100% { transform: translateX(-12px) rotate(-3deg); }
  50% { transform: translateX(12px) rotate(3deg); }
}
.lost .lead {
  margin-inline: auto;
}
.lost .stores {
  justify-content: center;
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}
.js .reveal.d1 { transition-delay: 0.08s; }
.js .reveal.d2 { transition-delay: 0.16s; }
.js .reveal.d3 { transition-delay: 0.24s; }
.draw path {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.js .draw path {
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.6s var(--ease-out);
}
.js .draw.is-in path {
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }
  .grain {
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .strip-track,
  .ticker div {
    animation: none;
  }
}
.doc-support {
  padding-top: 56px;
}
