/* ============================================================
   miji — see yourself clearly
   Core stylesheet
   ============================================================ */

/* ---------- @font-face: GT Pressura ---------- */
@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressura-Light.woff2') format('woff2'),
       url('../fonts/GTPressura-Light.woff') format('woff'),
       url('../fonts/GTPressura-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressura-LightItalic.woff2') format('woff2'),
       url('../fonts/GTPressura-LightItalic.woff') format('woff'),
       url('../fonts/GTPressura-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressura.woff2') format('woff2'),
       url('../fonts/GTPressura.woff') format('woff'),
       url('../fonts/GTPressura.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressuraRegular-Italic.woff2') format('woff2'),
       url('../fonts/GTPressuraRegular-Italic.woff') format('woff'),
       url('../fonts/GTPressuraRegular-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressura-Bold.woff2') format('woff2'),
       url('../fonts/GTPressura-Bold.woff') format('woff'),
       url('../fonts/GTPressura-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Pressura';
  src: url('../fonts/GTPressura-BoldItalic.woff2') format('woff2'),
       url('../fonts/GTPressura-BoldItalic.woff') format('woff'),
       url('../fonts/GTPressura-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

body {
  font-family: 'GT Pressura', system-ui, -apple-system, sans-serif;
  background: #08080F;
  color: #E8E8EC;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

ul { list-style: none; }

img, canvas { display: block; }


/* ---------- Background Canvas ---------- */
#bg-canvas {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  z-index: 0;
  pointer-events: none;
}


/* ---------- Layout Utilities ---------- */
.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}


/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 28px;
  background: rgba(8, 8, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-label {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #C4A265;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-cta-mobile {
  display: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(232, 232, 236, 0.55);
  transition: color 0.3s ease;
  text-transform: lowercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: #C4A265;
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 100px;
  color: #C4A265;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.nav-cta:hover {
  background: rgba(196, 162, 101, 0.1);
  border-color: rgba(196, 162, 101, 0.7);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #E8E8EC;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ---------- Pages ---------- */
.page {
  display: none;
  position: relative;
  z-index: 1;
}

.page.active {
  display: block;
}

/* Page transition — fade content only, background stays */
.page {
  transition: opacity 0.3s ease;
}

.page.fading {
  opacity: 0;
}

/* Sub-page content fade-in — blocks load with statement */
.page:not(#page-home) .block {
  opacity: 0;
  transform: translateY(16px);
}

.page:not(#page-home).entered .block {
  animation: fadeUp 0.8s ease forwards 1.6s;
}


/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 28px 80px;
  position: relative;
}

.hero-rest {
  margin-bottom: 28px;
}

.hero-orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.hero-intro {
  margin-bottom: 20px;
}

#tagline {
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #F5F5F8;
}

#tagline .line1,
#tagline .line2 {
  display: block;
}

#tagline .line1 {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

#tagline .line2 {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
  color: #C4A265;
}

.hero-rest-below {
  max-width: 480px;
}

.hero-subtitle {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #F0F0F4;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.subtitle-line {
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(232, 232, 236, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.9s;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 2.4s;
  color: rgba(196, 162, 101, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transition: opacity 0.6s ease;
}
.scroll-hint svg {
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.35s ease;
  text-transform: lowercase;
  cursor: pointer;
}

.btn-gold {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 184, 120, 0.9), transparent 70%),
    radial-gradient(ellipse at 70% 50%, rgba(170, 130, 60, 0.7), transparent 70%),
    radial-gradient(ellipse at 50% 50%, rgba(196, 162, 101, 0.5), transparent 60%),
    linear-gradient(135deg, #C4A265, #B89555);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: goldDrift 8s ease-in-out infinite;
  color: #08080F;
  border: none;
  box-shadow: 0 3px 18px rgba(196, 162, 101, 0.2);
}

@keyframes goldDrift {
  0%   { background-position: 20% 50%, 80% 50%, 50% 80%, 0 0; }
  33%  { background-position: 60% 30%, 40% 70%, 30% 20%, 0 0; }
  66%  { background-position: 40% 70%, 60% 30%, 70% 60%, 0 0; }
  100% { background-position: 20% 50%, 80% 50%, 50% 80%, 0 0; }
}

.btn-gold:hover {
  box-shadow: 0 5px 28px rgba(196, 162, 101, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(232, 232, 236, 0.7);
  border: 1px solid rgba(232, 232, 236, 0.15);
}

.btn-ghost:hover {
  border-color: rgba(232, 232, 236, 0.35);
  color: #E8E8EC;
}


/* ---------- Content Blocks ---------- */
.block {
  padding: 64px 0;
  position: relative;
}

.block + .block {
  border-top: none;
}

.statement {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #F0F0F4;
  margin-bottom: 20px;
}

.aside {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(232, 232, 236, 0.55);
  line-height: 1.75;
  max-width: 600px;
  text-align: justify;
}

/* Sub-page paragraphs fill the full wrap width */
.page:not(#page-home) .aside {
  max-width: 100%;
}

.page:not(#page-home) .wrap {
  max-width: 900px;
}

.offset-right {
  margin-left: auto;
}

.offset-right.aside {
  text-align: justify;
  text-align-last: right;
}

.offset-right.statement,
.offset-right.feature-link {
  text-align: right;
}

.feature-link {
  margin-top: 16px;
}

.feature-link a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #C4A265;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(196, 162, 101, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.feature-link a:hover {
  border-color: #C4A265;
}


/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  padding: 100px 0 16px;
}

.mini-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.mini-orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  opacity: 0;
}

.page.entered .mini-orb-wrap {
  animation: fadeOnly 0.1s ease forwards;
}

.mini-orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.mini-tagline {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mini-line1,
.mini-line2 {
  display: block;
  opacity: 0;
}

.mini-line1 {
  color: #F5F5F8;
}

.mini-line2 {
  color: #C4A265;
}

/* Staggered entrance — offset +0.1s to compensate for orb fade */
.page.entered .mini-line1 {
  animation: fadeOnly 0.8s ease forwards 0.4s;
}

.page.entered .mini-line2 {
  animation: fadeOnly 0.8s ease forwards 0.7s;
}

.page-hero .statement {
  font-size: 2.2rem;
  text-align: center;
}

.page:not(#page-home) .page-hero .statement {
  opacity: 0;
}

.page:not(#page-home).entered .page-hero .statement {
  animation: fadeUp 0.8s ease forwards 1.2s;
}


/* ---------- Detail Items ---------- */
.item-title {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #C4A265;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.divider {
  width: 0;
  height: 0;
  background: none;
  margin: 32px 0;
}


/* ---------- Score Card ---------- */
.score-moment {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.score-card {
  flex-shrink: 0;
  width: 160px;
  padding: 32px 24px;
  background: rgba(196, 162, 101, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: 20px;
  text-align: center;
}

.score-num {
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #C4A265;
  line-height: 1;
  margin-bottom: 8px;
}

.score-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 232, 236, 0.4);
  margin-bottom: 16px;
}

.score-obs {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 232, 236, 0.5);
  line-height: 1.5;
}

.score-text {
  flex: 1;
}

.pillar-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.pillar-line .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C4A265;
  margin-top: 7px;
  flex-shrink: 0;
}

.pillar-line .name {
  font-size: 0.9rem;
  font-weight: 400;
  color: #E8E8EC;
  min-width: 120px;
  flex-shrink: 0;
}

.pillar-line .desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 232, 236, 0.45);
}


/* ---------- Share Card Row ---------- */
.share-card-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.share-card-mini {
  position: relative;
  flex: 1;
  max-width: 180px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  container-type: inline-size;
}

.share-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.share-card-watermark {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  height: 28%;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-card-watermark span {
  font-family: 'GT Pressura', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  user-select: none;
  text-align: center;
  font-size: 2.2rem;
}

.share-card-mini .share-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 14px 10px;
  text-align: center;
}

.share-card-date {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: lowercase;
  margin-bottom: auto;
  line-height: 1.35;
}

.share-card-day {
  color: rgba(196, 162, 101, 0.55);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.share-card-score {
  position: relative;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: rgba(255,255,255,0.46);
}

/* --- Score ring: slow breathing pulse --- */
.score-ring {
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  pointer-events: none;
  border: 0.5px solid var(--ring-base, rgba(196,162,101,0.06));
  box-shadow: 0 0 12px var(--ring-glow, rgba(196,162,101,0.04)),
              inset 0 0 8px var(--ring-glow, rgba(196,162,101,0.02));
  filter: blur(0.4px);
  animation: ringPulse 6s ease-in-out infinite;
  animation-delay: var(--glow-delay, 0s);
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

[data-mood="low"] {
  --ring-base: rgba(90, 60, 100, 0.05);
  --ring-glow: rgba(140, 100, 160, 0.06);
  --ring-bright: rgba(170, 130, 200, 0.18);
  --curve-color: rgba(140, 100, 160, 0.08);
  --dot-glow: rgba(170, 130, 200, 0.12);
  --dot-bright: rgba(170, 130, 200, 0.3);
}
[data-mood="mid"] {
  --ring-base: rgba(120, 120, 80, 0.05);
  --ring-glow: rgba(160, 160, 100, 0.06);
  --ring-bright: rgba(190, 185, 120, 0.18);
  --curve-color: rgba(160, 160, 100, 0.08);
  --dot-glow: rgba(190, 185, 120, 0.12);
  --dot-bright: rgba(190, 185, 120, 0.3);
}
[data-mood="good"] {
  --ring-base: rgba(196, 162, 101, 0.05);
  --ring-glow: rgba(196, 162, 101, 0.08);
  --ring-bright: rgba(220, 190, 120, 0.2);
  --curve-color: rgba(196, 162, 101, 0.08);
  --dot-glow: rgba(220, 190, 120, 0.12);
  --dot-bright: rgba(220, 190, 120, 0.35);
}
[data-mood="high"] {
  --ring-base: rgba(210, 180, 80, 0.06);
  --ring-glow: rgba(210, 180, 80, 0.1);
  --ring-bright: rgba(240, 210, 100, 0.22);
  --curve-color: rgba(210, 180, 80, 0.1);
  --dot-glow: rgba(240, 210, 100, 0.14);
  --dot-bright: rgba(240, 210, 100, 0.4);
}

/* --- History curve --- */
.share-card-curve {
  position: absolute;
  bottom: 28%;
  left: 10%;
  width: 80%;
  height: 16px;
  overflow: visible;
  opacity: 1;
  z-index: 0;
}

.curve-line {
  fill: none;
  stroke: var(--curve-color, rgba(196,162,101,0.08));
  stroke-width: 0.6;
  stroke-linecap: round;
  filter: blur(0.3px);
}

.curve-dot {
  r: 1.8;
  fill: var(--dot-bright, rgba(220,190,120,0.3));
  filter: blur(1px) drop-shadow(0 0 3px var(--dot-glow, rgba(220,190,120,0.12)));
  offset-path: path('');
  animation: curveDot 10s linear infinite;
  animation-delay: var(--glow-delay, 0s);
}

[data-mood="low"] .curve-dot {
  offset-path: path('M0,28 C20,26 30,24 45,20 C55,17 60,22 75,18 C90,14 100,24 115,22 C130,20 140,26 160,16');
}
[data-mood="mid"] .curve-dot {
  offset-path: path('M0,22 C18,18 32,20 50,14 C62,10 72,18 88,16 C102,14 118,8 135,12 C148,15 155,10 160,8');
}
[data-mood="good"] .curve-dot {
  offset-path: path('M0,20 C15,22 28,16 48,12 C60,9 70,14 85,8 C100,4 115,10 132,6 C145,3 152,8 160,4');
}
[data-mood="high"] .curve-dot {
  offset-path: path('M0,16 C12,18 25,10 42,6 C56,3 68,8 82,4 C98,1 112,6 128,3 C142,1 150,4 160,2');
}

@keyframes curveDot {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.share-card-observation {
  font-family: 'GT Pressura', sans-serif;
  font-size: 0.52rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
  margin-top: auto;
}

.share-card-brand {
  font-family: 'GT Pressura', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(196, 162, 101, 0.35);
  margin-top: 6px;
  align-self: flex-end;
}


/* ---------- Press Page ---------- */
.press-download {
  margin-top: 16px;
}

.press-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.press-format {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(196, 162, 101, 0.5);
  border: 1px solid rgba(196, 162, 101, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1;
}

.press-swatches {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.press-swatch {
  width: 100px;
  height: 72px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}

.swatch-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #08080F;
}

.swatch-label.swatch-light {
  color: rgba(232, 232, 236, 0.7);
}


/* ---------- Page Next Button ---------- */
.page-next {
  margin-top: 56px;
  text-align: center;
}

.page-next .btn {
  font-size: 0.84rem;
  padding: 12px 28px;
}


/* ---------- Mini Hero Link ---------- */
a.mini-orb-wrap {
  text-decoration: none;
  cursor: pointer;
}

a.mini-orb-wrap:hover .mini-orb {
  filter: brightness(1.15);
}


/* ---------- Waitlist Overlay ---------- */
.waitlist-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.waitlist-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-card {
  position: relative;
  max-width: 400px;
  width: 90%;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: 24px;
  background: rgba(16, 16, 24, 0.8);
  transform: translateY(16px);
  transition: transform 0.35s ease;
}

.waitlist-overlay.active .waitlist-card {
  transform: translateY(0);
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(232, 232, 236, 0.4);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.waitlist-close:hover {
  color: rgba(232, 232, 236, 0.7);
}

.waitlist-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #F0F0F4;
  margin-bottom: 10px;
}

.waitlist-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(232, 232, 236, 0.5);
  line-height: 1.6;
  margin-bottom: 28px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.waitlist-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(196, 162, 101, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: #E8E8EC;
  font-family: 'GT Pressura', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: center;
}

.waitlist-input::placeholder {
  color: rgba(232, 232, 236, 0.3);
}

.waitlist-input:focus {
  border-color: rgba(196, 162, 101, 0.5);
}

.waitlist-submit {
  width: 100%;
}

.waitlist-success {
  display: none;
}

.waitlist-success.show {
  display: block;
}

.waitlist-form.hidden {
  display: none;
}

.waitlist-thanks {
  font-size: 1.1rem;
  font-weight: 300;
  color: #C4A265;
  margin-top: 8px;
}


/* ---------- Contact Overlay ---------- */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.contact-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-card {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(196, 162, 101, 0.12);
  border-radius: 24px;
  background: rgba(16, 16, 24, 0.8);
  transform: translateY(16px);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-overlay.active .contact-card {
  transform: translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(196, 162, 101, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #E8E8EC;
  font-family: 'GT Pressura', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: left;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(232, 232, 236, 0.3);
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: rgba(196, 162, 101, 0.5);
}

.contact-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C4A265' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-select option {
  background: #12121a;
  color: #E8E8EC;
}

.contact-textarea {
  border-radius: 16px;
  resize: none;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

.contact-success {
  display: none;
}

.contact-success.show {
  display: block;
}

.contact-form.hidden {
  display: none;
}


/* ---------- CTA Section ---------- */
.cta {
  padding: 64px 0 80px;
  text-align: center;
}

.cta .btn {
  margin-top: 0;
}


/* ---------- Footer ---------- */
.footer {
  border-top: none;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-left {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(232, 232, 236, 0.3);
  letter-spacing: 0.02em;
}

.footer-left .entity {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(232, 232, 236, 0.18);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(232, 232, 236, 0.3);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-links a:hover {
  color: rgba(232, 232, 236, 0.6);
}


/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------- Safe area support ---------- */
@supports (padding: env(safe-area-inset-top)) {
  .nav {
    padding-top: env(safe-area-inset-top);
  }
  .footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}


/* ---------- Responsive: Tablet & small desktop (768px) ---------- */
@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 28px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
  }

  .nav.open .nav-cta {
    display: none;
  }

  .nav.open .nav-cta-mobile {
    display: list-item;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 162, 101, 0.1);
  }

  .nav-cta-mobile a {
    color: #C4A265 !important;
    font-weight: 400;
  }

  .nav.open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Hero */
  .hero {
    padding: 80px 24px 32px;
    min-height: 100svh;
  }

  #hero-orb {
    width: 130px;
    height: 130px;
  }

  .hero-rest {
    margin-bottom: 18px;
  }

  .hero-intro {
    margin-bottom: 14px;
  }

  #tagline {
    font-size: 2.6rem;
  }

  .hero-rest-below {
    max-width: 100%;
  }

  .hero-subtitle,
  .statement {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .scroll-hint {
    margin-top: 28px;
  }

  /* Sub-page hero */
  .page-hero {
    padding: 80px 0 12px;
  }

  .page-hero .statement {
    font-size: 2rem;
  }

  .mini-orb {
    width: 72px;
    height: 72px;
  }

  .mini-tagline {
    font-size: 1.3rem;
  }

  /* Content blocks */
  .block {
    padding: 44px 0;
  }

  .aside {
    text-align: justify;
  }

  .offset-right {
    margin-left: auto;
  }

  .offset-right.aside {
    text-align: justify;
    text-align-last: right;
  }

  .offset-right.statement,
  .offset-right.feature-link {
    text-align: right;
  }

  /* Score layout */
  .score-moment {
    flex-direction: column;
    gap: 24px;
  }

  .score-card {
    width: 100%;
  }

  .pillar-line {
    flex-wrap: wrap;
  }

  .pillar-line .name {
    min-width: auto;
  }

  /* Share cards — 4 across, matching desktop */
  .share-card-row {
    gap: 8px;
  }

  .share-card-mini {
    border-radius: 10px;
    max-width: 160px;
  }

  .share-card-score {
    font-size: 2.6rem;
  }

  .share-card-observation {
    font-size: 0.42rem;
  }

  .share-card-date {
    font-size: 0.44rem;
  }

  .share-card-day {
    font-size: 0.44rem;
  }

  .share-card-curve {
    height: 12px;
  }

  .share-card-watermark span {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }

  .share-card-brand {
    font-size: 0.38rem;
  }

  /* Press swatches */
  .press-swatches {
    gap: 8px;
  }

  .press-swatch {
    width: calc(33.33% - 6px);
    height: 64px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin: 0 auto;
  }

  /* Overlays */
  .waitlist-card,
  .contact-card {
    width: 92%;
    padding: 36px 24px;
  }

  .contact-card {
    max-height: 85vh;
  }

  /* Page next */
  .page-next {
    margin-top: 40px;
  }
}


/* ---------- Responsive: Phone (480px) ---------- */
@media (max-width: 480px) {

  .hero {
    padding: 70px 20px 24px;
  }

  #hero-orb {
    width: 110px;
    height: 110px;
  }

  .hero-rest {
    margin-bottom: 14px;
  }

  #tagline {
    font-size: 2rem;
  }

  .hero-subtitle,
  .statement {
    font-size: 1.45rem;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .aside {
    font-size: 0.9rem;
  }

  .wrap {
    padding: 0 20px;
  }

  .page-hero {
    padding: 90px 0 12px;
  }

  .mini-tagline {
    font-size: 1.2rem;
  }

  .item-title {
    font-size: 1rem;
  }

  .block {
    padding: 36px 0;
  }

  /* Share cards — tighter, still 4 across */
  .share-card-row {
    gap: 6px;
  }

  .share-card-mini {
    border-radius: 8px;
    max-width: none;
  }

  .share-card-score {
    font-size: 2rem;
  }

  .share-card-observation {
    font-size: 0.36rem;
  }

  .share-card-date {
    font-size: 0.38rem;
  }

  .share-card-day {
    font-size: 0.38rem;
  }

  .share-card-curve {
    height: 10px;
  }

  .share-card-watermark span {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .share-card-brand {
    font-size: 0.32rem;
  }

  /* Press swatches */
  .press-swatches {
    gap: 6px;
  }

  .press-swatch {
    width: calc(33.33% - 4px);
    height: 56px;
    border-radius: 8px;
    padding: 6px 8px;
  }

  .swatch-label {
    font-size: 0.55rem;
  }

  .press-btn {
    font-size: 0.72rem;
    padding: 8px 18px;
  }

  /* Buttons */
  .btn {
    font-size: 0.75rem;
    padding: 9px 20px;
  }

  /* Overlays */
  .waitlist-card,
  .contact-card {
    padding: 28px 18px;
  }

  .waitlist-title {
    font-size: 1.3rem;
  }

  .waitlist-desc {
    font-size: 0.84rem;
  }

  .contact-input,
  .contact-select,
  .contact-textarea {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  /* Footer */
  .footer-links {
    gap: 16px;
  }

  .footer-left {
    font-size: 0.72rem;
  }

  .footer-links a {
    font-size: 0.72rem;
  }
}
