@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/instrument-sans.woff2") format("woff2");
}

:root {
  --night: #07111f;
  --night-2: #0b1930;
  --ink: #0a1424;
  --ink-2: #40506a;
  --muted: #7e8ba0;
  --paper: #ffffff;
  --canvas: #f3f7fb;
  --soft: #eaf3ff;
  --line: rgba(12, 31, 58, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue: #2f86ff;
  --blue-2: #63b3ff;
  --blue-deep: #1766dd;
  --text-blue: #2f86ff;
  --orange: #ff9d2e;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-surface:
    radial-gradient(60% 110% at 50% 0%, rgba(255, 255, 255, 0.96), transparent 68%),
    rgba(237, 244, 252, 0.82);
  --section-border: rgba(255, 255, 255, 0.3);
  --section-shadow: 0 34px 80px -52px rgba(0, 0, 0, 0.72);
  --shadow-sm: 0 1px 2px rgba(8, 25, 52, 0.05), 0 10px 30px -20px rgba(8, 25, 52, 0.28);
  --shadow: 0 2px 5px rgba(8, 25, 52, 0.06), 0 22px 55px -28px rgba(8, 25, 52, 0.38), 0 55px 110px -60px rgba(8, 25, 52, 0.32);
  --shadow-lg: 0 3px 8px rgba(2, 12, 28, 0.12), 0 35px 80px -30px rgba(2, 12, 28, 0.58), 0 80px 160px -70px rgba(2, 12, 28, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--night);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 1000;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(99, 179, 255, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 11px 17px;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue-2), var(--blue), var(--orange));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent);
  content: "";
}

.section-head {
  max-width: 760px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head h2 em {
  color: var(--text-blue);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.section-head > p {
  max-width: 630px;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

.section-head.center > p {
  margin-inline: auto;
}

/* Navigation */
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  pointer-events: none;
  transition: padding 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(7, 17, 31, 0.24);
  box-shadow: none;
  -webkit-backdrop-filter: blur(7px) saturate(190%);
  backdrop-filter: blur(7px) saturate(190%);
  padding: 11px 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 46px;
  margin-inline: auto;
  color: #fff;
  pointer-events: auto;
  transition: color 0.3s;
}

.nav.scrolled .nav-shell {
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(46, 134, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition: color 0.2s, opacity 0.2s;
}

.nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.68);
}

.nav-links a:hover,
.nav.scrolled .nav-links a:hover {
  color: #fff;
}

.nav.scrolled .nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 20px;
  font-size: 13.5px;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
}

.nav.scrolled .nav-cta {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 13px 27px -12px rgba(23, 102, 221, 0.72);
}

/* Hero */
.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background:
    radial-gradient(70% 62% at 88% -12%, rgba(47, 134, 255, 0.15), transparent 72%),
    var(--night);
  color: #fff;
  padding: 158px 0 90px;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--night) 88%);
  content: "";
  pointer-events: none;
}

.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: blur(20px);
}

.aurora i {
  position: absolute;
  border-radius: 50%;
}

.aurora i:nth-child(1) {
  top: -320px;
  right: -140px;
  width: 800px;
  height: 740px;
  background: radial-gradient(closest-side, rgba(48, 140, 255, 0.28), transparent 72%);
}

.aurora i:nth-child(2) {
  bottom: -320px;
  left: -160px;
  width: 760px;
  height: 720px;
  background: radial-gradient(closest-side, rgba(106, 75, 255, 0.19), transparent 72%);
}

.aurora i:nth-child(3) {
  top: 34%;
  right: 15%;
  width: 520px;
  height: 460px;
  background: radial-gradient(closest-side, rgba(255, 157, 46, 0.11), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding-bottom: 40px;
}

.hero .eyebrow {
  border: 1px solid rgba(99, 179, 255, 0.22);
  border-radius: 999px;
  background: rgba(47, 134, 255, 0.1);
  color: var(--text-blue);
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}

.hero .eyebrow::before {
  animation: pulse 2.8s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(99, 179, 255, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(99, 179, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(99, 179, 255, 0); }
}

.hero h1 {
  max-width: 700px;
  margin-top: 26px;
  font-size: clamp(62px, 7.6vw, 106px);
  font-weight: 700;
  letter-spacing: -0.066em;
  line-height: 0.87;
}

.hero h1 em {
  display: inline-block;
  margin-top: 11px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.066em;
  color: var(--text-blue);
}

.hero-sub {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.58;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(99, 179, 255, 0.44);
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(21, 36, 62, 0.94), rgba(5, 13, 29, 0.96));
  color: #fff;
  padding: 10px 20px 10px 15px;
  box-shadow: 0 14px 38px -14px rgba(47, 134, 255, 0.48);
  backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--blue-2);
  box-shadow: 0 22px 50px -12px rgba(47, 134, 255, 0.7);
}

.store-badge:active {
  transform: translateY(0) scale(0.99);
}

.store-badge svg {
  width: 29px;
  height: 29px;
  flex: none;
  fill: currentColor;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
  text-align: left;
}

.store-badge small {
  color: rgba(210, 225, 245, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-badge b {
  color: #f3f7ff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.microproof {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 600;
}

.microproof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.microproof svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-2);
  stroke-width: 2.4;
  fill: none;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  perspective: 1200px;
}

.hero-visual::before {
  position: absolute;
  right: -12%;
  bottom: 3%;
  left: -10%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(61, 145, 255, 0.38), transparent 72%);
  filter: blur(24px);
  content: "";
}

.poster {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #1c6de4;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.poster.a {
  z-index: 1;
  top: 13%;
  left: -2%;
  width: 39%;
  aspect-ratio: 9 / 16;
  transform: rotate(-8deg) translateZ(-70px);
  filter: saturate(0.88) brightness(0.86);
}

.poster.b {
  z-index: 3;
  top: 1%;
  left: 29%;
  width: 43%;
  aspect-ratio: 9 / 16;
  transform: rotate(1.5deg) translateZ(35px);
}

.poster.c {
  z-index: 2;
  top: 13%;
  right: -1%;
  width: 39%;
  aspect-ratio: 9 / 16;
  transform: rotate(9deg) translateZ(-50px);
  filter: saturate(0.9) brightness(0.88);
}

.hero-visual:hover .poster.a {
  transform: rotate(-11deg) translate3d(-16px, -8px, -30px);
  filter: none;
}

.hero-visual:hover .poster.b {
  transform: rotate(0) translate3d(0, -16px, 60px) scale(1.025);
}

.hero-visual:hover .poster.c {
  transform: rotate(12deg) translate3d(16px, -8px, -20px);
  filter: none;
}

/* Main light canvas */
.canvas {
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}

.canvas > section {
  position: relative;
  z-index: 1;
}

.intro::before,
.bento-section::before,
.faq-section::before {
  position: absolute;
  z-index: 0;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 57px, rgba(47, 134, 255, 0.065) 58px 59px);
  content: "";
  mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.78) 48%, transparent 72%);
  pointer-events: none;
}

.intro::before {
  top: -285px;
  right: -330px;
}

.bento-section::before {
  top: 70px;
  left: -380px;
  transform: scale(1.08);
}

.faq-section::before {
  top: -110px;
  right: -410px;
  transform: scale(0.88);
}

.intro .wrap,
.bento-section .wrap,
.faq-section .wrap {
  position: relative;
  z-index: 1;
}

.intro {
  width: min(1040px, calc(100% - 96px));
  overflow: hidden;
  margin: clamp(110px, 9vw, 150px) auto 24px;
  border: 1px solid var(--section-border);
  border-radius: 34px;
  background: var(--section-surface);
  box-shadow: var(--section-shadow);
  padding: clamp(46px, 5vw, 54px) 0 clamp(42px, 4vw, 48px);
}

.intro .wrap {
  width: min(900px, calc(100% - 48px));
}

.intro-quote {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.intro-quote h2 {
  font-family: var(--sans);
  font-size: clamp(44px, 5.2vw, 66px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro-quote h2 span {
  color: var(--text-blue);
  font-style: normal;
}

.intro-quote p {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.62;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 25px auto 0;
  border: 1px solid rgba(12, 31, 58, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 42px -34px rgba(8, 25, 52, 0.32);
  backdrop-filter: blur(12px);
}

.principle {
  position: relative;
  padding: 15px 20px;
  text-align: center;
}

.principle + .principle::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.principle b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
}

.principle span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}

/* Ritual */
.ritual {
  width: min(1440px, calc(100% - 48px));
  overflow: hidden;
  margin: 24px auto;
  border: 1px solid var(--section-border);
  border-radius: 34px;
  background: var(--section-surface);
  box-shadow: var(--section-shadow);
  padding: clamp(58px, 6vw, 80px) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  padding: 27px 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 134, 255, 0.3);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(47, 134, 255, 0.17);
  border-radius: 50%;
  background: var(--soft);
  color: var(--text-blue);
  font-size: 12px;
  font-weight: 850;
}

.step-card h3 {
  margin-top: 54px;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.step-card p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}

.step-mark {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 134, 255, 0.18), rgba(47, 134, 255, 0) 70%);
}

.step-mark svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 31px;
  transform: translate(-50%, -50%);
  stroke: var(--blue-deep);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-line {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.step-line::after {
  display: block;
  width: var(--progress, 25%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  content: "";
}

/* Reveal feature */
.feature-stage {
  padding: 20px 0;
  background: transparent;
}

.reveal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(65% 80% at 76% 42%, rgba(69, 137, 255, 0.26), transparent 66%),
    radial-gradient(55% 80% at 10% 100%, rgba(143, 71, 210, 0.19), transparent 68%),
    #07111f;
  color: #fff;
  padding: 64px clamp(34px, 6vw, 78px);
  box-shadow: var(--shadow-lg);
}

.reveal-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-2), #ac83ff, var(--orange), transparent);
  content: "";
}

.reveal-copy {
  position: relative;
  z-index: 3;
  max-width: 490px;
}

.reveal-copy .eyebrow {
  color: var(--text-blue);
}

.reveal-copy h2 {
  margin-top: 24px;
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.reveal-copy h2 em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--text-blue);
}

.reveal-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.reveal-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.reveal-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  font-weight: 650;
  list-style: none;
}

.reveal-list svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue-2);
  stroke-width: 2.3;
  fill: none;
}

.reveal-art {
  position: relative;
  min-height: 620px;
}

.device {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(280px, 48%);
  transform: translate(-50%, -50%) rotate(3deg);
  border: 8px solid #111b2b;
  border-radius: 40px;
  background: #111b2b;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.16) inset, var(--shadow-lg);
}

.device::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 34%;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #111b2b;
  content: "";
}

.device img {
  width: 100%;
  border-radius: 31px;
}

.polaroid {
  position: absolute;
  z-index: 2;
  width: 175px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
  padding: 9px 9px 34px;
  color: var(--ink);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.polaroid span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.polaroid.p1 {
  top: 9%;
  left: 0;
  transform: rotate(-11deg);
}

.polaroid.p2 {
  right: -4%;
  bottom: 13%;
  transform: rotate(10deg);
}

.polaroid.p3 {
  bottom: 0;
  left: 8%;
  width: 145px;
  transform: rotate(6deg);
}

.art-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.art-orbit::before,
.art-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  content: "";
}

.art-orbit::before { inset: 65px; }
.art-orbit::after { inset: 130px; }

/* Bento */
.bento-section {
  width: min(1440px, calc(100% - 48px));
  overflow: hidden;
  margin: 24px auto;
  border: 1px solid var(--section-border);
  border-radius: 34px;
  background: var(--section-surface);
  box-shadow: var(--section-shadow);
  padding: clamp(64px, 7vw, 90px) 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 245px;
  gap: 16px;
  margin-top: 40px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--canvas);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bento-card h3 {
  position: relative;
  z-index: 4;
  max-width: 360px;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.bento-card p {
  position: relative;
  z-index: 4;
  max-width: 380px;
  margin-top: 9px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.bento-card.wide p {
  max-width: 305px;
}

.bento-card.tall p {
  max-width: 275px;
}

.bento-card.wide {
  grid-column: span 7;
  grid-row: span 2;
  background: linear-gradient(155deg, #e8f4ff, #f7fbff 60%);
}

.bento-card.tall {
  grid-column: span 5;
  grid-row: span 2;
  background: linear-gradient(160deg, #fff4e8, #fffaf4 58%);
}

.bento-card.small {
  grid-column: span 4;
}

.bento-card.dark {
  border-color: transparent;
  background: var(--night);
  color: #fff;
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.6);
}

.wall-preview {
  position: absolute;
  right: 25px;
  bottom: -48px;
  width: 275px;
  transform: rotate(3deg);
  border: 7px solid #142033;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.wall-preview img {
  border-radius: 28px;
}

.award-preview {
  position: absolute;
  right: 24px;
  bottom: -70px;
  width: 220px;
  transform: rotate(-4deg);
  border: 7px solid #23202c;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.award-preview img {
  border-radius: 28px;
}

.mini-icon {
  position: absolute;
  right: 24px;
  bottom: 23px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(47, 134, 255, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-deep);
  box-shadow: inset 0 1px 0 #fff, var(--shadow-sm);
}

.mini-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.dark .mini-icon {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.privacy-dots {
  position: absolute;
  right: -18px;
  bottom: -38px;
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 9px;
  transform: rotate(-8deg);
}

.privacy-dots i {
  width: 40px;
  height: 52px;
  border-radius: 9px;
  background: linear-gradient(160deg, rgba(99, 179, 255, 0.24), rgba(99, 179, 255, 0.05));
}

.privacy-dots i:nth-child(2n) { transform: translateY(16px); }

/* Comparison */
.difference {
  width: min(1440px, calc(100% - 48px));
  overflow: hidden;
  margin: 24px auto;
  border: 1px solid var(--section-border);
  border-radius: 34px;
  background: var(--section-surface);
  box-shadow: var(--section-shadow);
  padding: clamp(60px, 6vw, 82px) 0;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 38px auto 0;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.compare-card.sealed {
  border-color: transparent;
  background: linear-gradient(155deg, #102445, #07111f);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.compare-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sealed .compare-label {
  color: var(--text-blue);
}

.compare-card ul {
  display: grid;
  gap: 18px;
  margin-top: 27px;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

.sealed li {
  color: rgba(255, 255, 255, 0.82);
}

.compare-card svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 1px;
  stroke: var(--muted);
  stroke-width: 2.2;
  fill: none;
}

.sealed svg {
  stroke: var(--blue-2);
}

/* FAQ */
.faq-section {
  width: min(1440px, calc(100% - 48px));
  overflow: hidden;
  margin: 24px auto;
  border: 1px solid var(--section-border);
  border-radius: 34px;
  background: var(--section-surface);
  box-shadow: var(--section-shadow);
  padding: clamp(64px, 7vw, 90px) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 70px;
  align-items: start;
}

.faq-layout .section-head {
  position: sticky;
  top: 130px;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0 22px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

details:hover,
details[open] {
  border-color: rgba(47, 134, 255, 0.24);
  box-shadow: var(--shadow);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 21px 0;
  font-size: 16px;
  font-weight: 750;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--text-blue);
  font-size: 19px;
  transition: transform 0.25s;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 620px;
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

/* Final conversion block */
.closing {
  padding: 20px 0 24px;
  background: transparent;
}

.closing-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(68% 130% at 50% 42%, rgba(47, 134, 255, 0.34), transparent 70%),
    radial-gradient(50% 120% at 10% 120%, rgba(145, 79, 215, 0.18), transparent 72%),
    var(--night);
  color: #fff;
  padding: clamp(44px, 7vw, 80px);
}

.closing-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-2), #a87fff, var(--orange), transparent);
  content: "";
}

.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.closing-copy h2 {
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.closing-copy h2 em {
  display: block;
  margin-top: 10px;
  color: var(--text-blue);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.closing-copy > p {
  max-width: 530px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.55;
}

.closing-copy .store-row {
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--night);
  color: #fff;
  padding: 58px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-copy {
  max-width: 330px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.6;
}

.footer h3 {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  font-weight: 550;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

/* Mobile dock */
.mobile-dock {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  align-items: center;
  gap: 11px;
  max-width: 500px;
  margin-inline: auto;
  transform: translateY(140%);
  border: 1px solid rgba(12, 31, 58, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px -22px rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 9px 9px 9px 11px;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dock.show {
  transform: none;
}

.mobile-dock img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.dock-copy {
  flex: 1;
  min-width: 0;
}

.dock-copy b,
.dock-copy span {
  display: block;
}

.dock-copy b { font-size: 15px; }
.dock-copy span { color: var(--muted); font-size: 11.5px; }

.dock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a91ff, #2379ed);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 20px -10px rgba(23, 102, 221, 0.7);
}

/* Scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}
main > section:not(.intro) {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .hero-visual { min-height: 610px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-card { min-height: 270px; }
  .step-card h3 { margin-top: 38px; }
  .reveal-panel { grid-template-columns: 0.9fr 1.1fr; }
  .reveal-art { min-height: 560px; }
  .polaroid { width: 145px; }
  .polaroid.p3 { width: 120px; }
  .art-orbit { width: 490px; height: 490px; }
}

@media (max-width: 900px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding-bottom: 116px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-bottom: 0; }
  .hero h1,
  .hero-sub { margin-inline: auto; }
  .store-row,
  .microproof { justify-content: center; }
  .hero-visual { width: min(680px, 100%); min-height: 630px; margin: 20px auto 0; }
  .reveal-panel { grid-template-columns: 1fr; padding-bottom: 22px; }
  .reveal-copy { max-width: 620px; text-align: center; margin-inline: auto; }
  .reveal-copy .eyebrow { justify-content: center; }
  .reveal-list { width: fit-content; margin-inline: auto; text-align: left; }
  .reveal-art { min-height: 640px; }
  .device { width: 260px; }
  .polaroid.p1 { left: 8%; }
  .polaroid.p2 { right: 7%; }
  .polaroid.p3 { left: 17%; }
  .bento { grid-auto-rows: 250px; }
  .bento-card.wide,
  .bento-card.tall { grid-column: span 12; grid-row: span 2; }
  .bento-card.small { grid-column: span 6; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-layout .section-head { position: static; text-align: center; margin-inline: auto; }
  .faq-layout .eyebrow { justify-content: center; }
  .closing-panel { text-align: center; }
  .closing-copy { margin-inline: auto; }
  .closing-copy > p { margin-inline: auto; }
  .closing-copy .store-row { justify-content: center; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .nav { top: 0; padding: 14px 0; }
  .nav.scrolled { padding: 9px 0; }
  .nav-shell { width: calc(100% - 32px); min-height: 42px; }
  .brand { font-size: 17px; }
  .brand img { width: 29px; height: 29px; }
  .nav-cta { min-height: 40px; padding-inline: 16px; font-size: 13px; }
  .hero { padding-top: 124px; }
  .hero h1 { font-size: clamp(55px, 17vw, 78px); }
  .hero-sub { font-size: 17px; }
  .store-row { gap: 9px; }
  .microproof { gap: 10px 16px; }
  .microproof span:last-child { width: 100%; justify-content: center; }
  .hero-visual { min-height: 490px; margin-top: 34px; }
  .poster { border-radius: 20px; }
  .poster.a { left: -8%; width: 43%; }
  .poster.b { left: 27%; width: 46%; }
  .poster.c { right: -8%; width: 43%; }
  .canvas { border-radius: 0; }
  .intro,
  .ritual,
  .bento-section,
  .difference,
  .faq-section {
    width: calc(100% - 16px);
    margin-right: auto;
    margin-left: auto;
    border-radius: 26px;
  }
  .intro { margin-top: 56px; padding: 46px 0 42px; }
  .intro .wrap { width: calc(100% - 32px); }
  .intro-quote h2 { font-size: clamp(42px, 12vw, 48px); }
  .intro-quote p { margin-top: 20px; }
  .principles { grid-template-columns: 1fr; margin-top: 28px; }
  .principle { padding: 13px 18px; }
  .principle b { margin-bottom: 0; }
  .principle span { display: none; }
  .principle + .principle::before { top: 0; right: 18px; bottom: auto; left: 18px; width: auto; height: 1px; }
  .section-head h2 { font-size: clamp(40px, 12vw, 58px); }
  .steps { grid-template-columns: 1fr; margin-top: 34px; }
  .step-card { min-height: 250px; }
  .feature-stage { padding-inline: 8px; }
  .reveal-panel { min-height: auto; border-radius: 28px; padding: 62px 24px 10px; }
  .reveal-copy h2 { font-size: clamp(48px, 14vw, 68px); }
  .reveal-copy > p { font-size: 16px; }
  .reveal-art { min-height: 510px; margin-top: 20px; }
  .device { width: 210px; border-width: 6px; border-radius: 31px; }
  .device img { border-radius: 24px; }
  .polaroid { width: 112px; padding: 6px 6px 27px; }
  .polaroid.p1 { top: 11%; left: -2%; }
  .polaroid.p2 { right: -3%; bottom: 15%; }
  .polaroid.p3 { bottom: 2%; left: 5%; width: 96px; }
  .polaroid span { bottom: 7px; font-size: 8px; }
  .art-orbit { width: 380px; height: 380px; }
  .bento { grid-auto-rows: 235px; margin-top: 34px; }
  .bento-card { padding: 24px; }
  .bento-card.wide,
  .bento-card.tall { grid-row: span 2; }
  .bento-card.small { grid-column: span 12; }
  .wall-preview { right: 16px; width: 230px; }
  .award-preview { right: 15px; bottom: -60px; width: 195px; }
  .compare { grid-template-columns: 1fr; margin-top: 34px; }
  .compare-card { padding: 28px 24px; }
  .faq-section { padding-bottom: 72px; }
  details { padding-inline: 18px; }
  .closing { padding-inline: 8px; }
  .closing-panel { min-height: auto; border-radius: 28px; padding: 62px 22px; }
  .closing-copy h2 { font-size: clamp(48px, 14vw, 67px); }
  .closing-copy > p { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .mobile-dock { display: flex; }
}

@media (max-width: 430px) {
  .nav-cta { padding-inline: 14px; }
  .hero .eyebrow { font-size: 9.5px; }
  .hero-visual { min-height: 430px; }
  .art-orbit { width: 330px; height: 330px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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


/* Compact route-based locale selector. */
.footer-locales{display:flex;align-items:center;gap:.55rem;flex-wrap:wrap;font-size:12px;letter-spacing:.02em}
.footer-locales a{color:rgba(255,255,255,.78);opacity:1;text-decoration:none;transition:color .2s ease}
.footer-locales a:hover,.footer-locales a:focus-visible,.footer-locales a[aria-current="page"]{color:#fff;opacity:1}
.footer-locales a[aria-current="page"]{text-decoration:underline;text-underline-offset:3px}
.footer-locales span{opacity:.25}
