/* ============================================================
   LYUMEN — Production CSS Design System
   Version: 1.0.0
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette — from your brand */
  --navy:         #0F0E1A;
  --navy-2:       #141326;
  --navy-3:       #1C1A32;
  --card:         #1E1C35;
  --card-2:       #252340;
  --card-3:       #2C2A4A;

  /* Brand accent */
  --amber:        #F5A623;
  --amber-2:      #FF8C42;
  --coral:        #E8603A;
  --peach:        #FFB07A;

  /* Secondary accents */
  --lavender:     #9B8EC4;
  --purple:       #7C5CBF;
  --soft-purple:  #C8B8F0;
  --rose:         #FF7BA8;
  --teal:         #4ECDC4;
  --sky:          #74B9FF;
  --sage:         #5A9E8A;

  /* Text */
  --text:         #F0EEF8;
  --text-2:       rgba(240, 238, 248, 0.65);
  --text-3:       rgba(240, 238, 248, 0.38);
  --text-4:       rgba(240, 238, 248, 0.20);

  /* Borders */
  --border:       rgba(255, 255, 255, 0.07);
  --border-2:     rgba(255, 255, 255, 0.12);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, var(--amber), var(--coral));
  --grad-purple:  linear-gradient(135deg, var(--soft-purple), var(--rose));
  --grad-teal:    linear-gradient(135deg, var(--teal), var(--sky));

  /* Shadows */
  --shadow-card:  0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 8px 32px rgba(245, 166, 35, 0.35);

  /* Motion */
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w:        1160px;
  --section-pad:  120px 0;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── CURSOR ── */
#lm-cursor,
#lm-cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

#lm-cursor {
  width: 10px;
  height: 10px;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.7);
  top: 0; left: 0;
}

#lm-cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  top: 0; left: 0;
  transition: width 0.35s var(--ease-spring), height 0.35s var(--ease-spring), border-color 0.3s;
}

body.cursor-hover #lm-cursor { transform: translate(-50%, -50%) scale(1.8); background: var(--soft-purple); }
body.cursor-hover #lm-cursor-ring { width: 56px; height: 56px; border-color: rgba(200, 184, 240, 0.5); }

/* ── BOKEH CANVAS ── */
#lm-bokeh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}

.section { position: relative; overflow: hidden; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.nav--pinned {
  background: rgba(15, 14, 26, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--border);
  padding: 14px 60px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo__icon { width: 40px; height: 40px; flex-shrink: 0; }

.nav-logo__name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--grad-brand);
  padding: 11px 28px;
  border-radius: 100px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 166, 35, 0.5);
  color: white;
}

/* ── CHIP LABELS ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip--amber  { background: rgba(245,166,35,0.12); color: var(--amber);      border: 1px solid rgba(245,166,35,0.22);  }
.chip--amber::before  { background: var(--amber);  }
.chip--purple { background: rgba(124,92,191,0.12); color: var(--soft-purple); border: 1px solid rgba(124,92,191,0.22); }
.chip--purple::before { background: var(--soft-purple); }
.chip--teal   { background: rgba(78,205,196,0.12); color: var(--teal);        border: 1px solid rgba(78,205,196,0.22);  }
.chip--teal::before   { background: var(--teal);   }
.chip--rose   { background: rgba(255,123,168,0.12);color: var(--rose);        border: 1px solid rgba(255,123,168,0.22); }
.chip--rose::before   { background: var(--rose);   }
.chip--sky    { background: rgba(116,185,255,0.12);color: var(--sky);         border: 1px solid rgba(116,185,255,0.22); }
.chip--sky::before    { background: var(--sky);    }
.chip--sage   { background: rgba(90,158,138,0.12); color: var(--sage);        border: 1px solid rgba(90,158,138,0.22);  }
.chip--sage::before   { background: var(--sage);   }

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: 'Sora', sans-serif;
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
}

.display-lg {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.display-md {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.body-lg { font-size: 17px; font-weight: 400; line-height: 1.9; color: var(--text-2); }
.body-md { font-size: 15px; font-weight: 400; line-height: 1.8; color: var(--text-2); }
.body-sm { font-size: 13px; font-weight: 400; line-height: 1.75; color: var(--text-2); }

.grad-amber {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-purple {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-teal {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--grad-brand);
  color: white;
  font-size: 15px;
  padding: 16px 38px;
  box-shadow: 0 8px 32px rgba(245,166,35,0.35);
}

.btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(245,166,35,0.5);
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  font-size: 15px;
  padding: 16px 30px;
  border: 1.5px solid var(--border);
  font-weight: 500;
}

.btn--ghost:hover {
  border-color: rgba(245,166,35,0.4);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--card);
  color: var(--text);
  font-size: 15px;
  padding: 16px 38px;
  border: 1px solid var(--border-2);
}

.btn--dark:hover {
  background: var(--card-2);
  transform: translateY(-2px);
  color: var(--text);
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.card--elevated {
  box-shadow: var(--shadow-card);
}

.card--glow:hover {
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.1), var(--shadow-card);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 130px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__bg-orb--1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(245,166,35,0.14), rgba(124,92,191,0.08), transparent 70%);
}

.hero__bg-orb--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(78,205,196,0.09), transparent 70%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__headline-1 { color: var(--text); }
.hero__headline-2 { color: transparent; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; }
.hero__headline-3 { color: var(--text); }

.hero__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__avatars { display: flex; }

.hero__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-left: -8px;
  flex-shrink: 0;
}

.hero__avatar:first-child { margin-left: 0; }

.hero__proof-text { font-size: 13px; color: var(--text-3); }
.hero__proof-text strong { color: var(--text-2); font-weight: 600; }

/* Mockup */
.hero__mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 580px;
}

.phone-mockup {
  position: absolute;
  background: var(--card);
  border-radius: 40px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-mockup--main {
  width: 280px;
  top: 0; left: 20px;
  z-index: 3;
}

.phone-mockup--back {
  width: 260px;
  top: 30px; left: 0;
  z-index: 2;
  opacity: 0.55;
  filter: blur(2px);
  transform: scale(0.96);
}

/* ── FEATURE STRIP ── */
.feat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  position: relative;
  z-index: 2;
}

.feat-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.feat-strip__item:last-child { border-right: none; }
.feat-strip__item:hover { background: rgba(245,166,35,0.04); }

.feat-strip__icon { font-size: 24px; flex-shrink: 0; }
.feat-strip__title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.feat-strip__desc { font-size: 12px; color: var(--text-3); line-height: 1.5; }

/* ── LUMI SECTION ── */
.lumi-section {
  padding: var(--section-pad);
  background: var(--navy-2);
}

.lumi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Lumi orb visual */
.lumi-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.lumi-aura {
  position: absolute;
  border-radius: 50%;
  animation: lumi-breathe 4s ease-in-out infinite;
}

.lumi-aura--outer {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,166,35,0.12), rgba(124,92,191,0.06), transparent 70%);
  filter: blur(20px);
}

.lumi-aura--mid {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.18), rgba(232,96,58,0.1), transparent 70%);
  filter: blur(10px);
  animation-delay: 0.5s;
}

@keyframes lumi-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.lumi-orb-container {
  position: relative;
  width: 180px;
  height: 180px;
  z-index: 2;
}

.lumi-orb {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 32%,
    rgba(255, 240, 180, 0.95) 0%,
    rgba(255, 180, 80, 0.9) 25%,
    rgba(245, 140, 50, 0.85) 50%,
    rgba(200, 100, 200, 0.6) 75%,
    rgba(100, 60, 180, 0.4) 100%
  );
  border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
  box-shadow:
    0 0 60px rgba(245,166,35,0.45),
    0 0 120px rgba(124,92,191,0.2),
    inset 0 -12px 30px rgba(150,60,0,0.2),
    inset 10px 10px 30px rgba(255,240,160,0.35);
  animation: orb-float 5s ease-in-out infinite, orb-breathe 4s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-18px) rotate(0.5deg); }
}

@keyframes orb-breathe {
  0%, 100% { border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%; }
  50% { border-radius: 52% 48% 50% 50% / 48% 52% 48% 52%; }
}

/* Lumi face — subtle, expressive */
.lumi-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 90px;
  height: 70px;
  pointer-events: none;
}

.lumi-eyes {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
}

.lumi-eye {
  background: rgba(255,255,255,0.92);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: inset 0 -2px 6px rgba(200,100,0,0.12);
  position: relative;
  overflow: hidden;
  animation: eye-blink 7s ease-in-out infinite;
}

.lumi-eye--l { width: 22px; height: 24px; }
.lumi-eye--r { width: 19px; height: 21px; margin-bottom: 2px; }

@keyframes eye-blink {
  0%, 88%, 100% { transform: scaleY(1); }
  94% { transform: scaleY(0.07); }
}

.lumi-pupil {
  position: absolute;
  background: radial-gradient(circle at 35% 32%, #8B4513, #1A0800);
  border-radius: 50%;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.08s ease;
}

.lumi-eye--l .lumi-pupil { width: 11px; height: 11px; }
.lumi-eye--r .lumi-pupil { width: 9px; height: 9px; }

.lumi-catchlight {
  position: absolute;
  background: white;
  border-radius: 50%;
  top: 22%;
  left: 20%;
  opacity: 0.92;
}

.lumi-eye--l .lumi-catchlight { width: 4px; height: 4px; }
.lumi-eye--r .lumi-catchlight { width: 3px; height: 3px; }

.lumi-smile {
  width: 32px;
  height: 14px;
  border-bottom: 2.8px solid rgba(120, 48, 12, 0.55);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
}

/* Lumi cheeks */
.lumi-cheek {
  position: absolute;
  width: 22px;
  height: 14px;
  background: radial-gradient(circle, rgba(255,100,150,0.5), rgba(255,100,150,0));
  border-radius: 50%;
  filter: blur(3px);
  top: 55%;
}

.lumi-cheek--l { left: 8px; }
.lumi-cheek--r { right: 8px; }

/* Lumi speech bubble */
.lumi-speech {
  position: absolute;
  top: -20px;
  left: calc(50% + 100px);
  background: white;
  border-radius: 18px 18px 18px 4px;
  padding: 11px 18px;
  font-size: 14px;
  color: #3A1A08;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-weight: 500;
  z-index: 5;
  transition: opacity 0.5s, transform 0.5s var(--ease-spring);
  font-family: 'Nunito', sans-serif;
}

.lumi-speech::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 16px;
  border: 5px solid transparent;
  border-top-color: white;
}

.lumi-speech.hidden { opacity: 0; transform: scale(0.88) translateY(4px); }
.lumi-speech.visible { opacity: 1; transform: scale(1) translateY(0); }

/* Lumi sparkles */
.lumi-sparkle {
  position: absolute;
  color: var(--amber);
  font-size: 16px;
  animation: sparkle-twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.lumi-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.lumi-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.lumi-info-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateX(6px);
}

.lumi-info-card__icon { font-size: 22px; flex-shrink: 0; }
.lumi-info-card__title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.lumi-info-card__desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-section { padding: var(--section-pad); background: var(--navy-3); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-steps { display: flex; flex-direction: column; gap: 0; }

.how-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: padding 0.3s;
}

.how-step:last-child { border-bottom: none; }
.how-step:hover { padding-left: 8px; }
.how-step:hover .how-step__num { background: var(--grad-brand); color: white; border-color: transparent; }

.how-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  transition: all 0.3s;
}

.how-step__title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.how-step__desc { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* Portrait card — mimics app */
.portrait-card {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.portrait-card__header {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(124,92,191,0.08));
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portrait-card__header-label { font-size: 13px; color: var(--text-2); font-weight: 500; }

.portrait-card__orb {
  width: 110px; height: 110px;
  margin: 28px auto 0;
  background: radial-gradient(circle at 35% 32%,
    rgba(255,220,120,0.9) 0%,
    rgba(245,166,35,0.75) 40%,
    rgba(200,100,210,0.55) 70%,
    rgba(100,60,180,0.3) 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(245,166,35,0.4), 0 0 100px rgba(124,92,191,0.15);
  animation: orb-breathe 4s ease-in-out infinite;
}

.portrait-card__tagline {
  text-align: center;
  padding: 20px 28px 6px;
}

.portrait-card__tagline-sub { font-size: 13px; color: var(--text-3); margin-bottom: 4px; }
.portrait-card__tagline-main { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--amber); margin-bottom: 4px; }
.portrait-card__tagline-line { font-size: 13px; color: var(--text-3); }

.portrait-card__text {
  margin: 16px 28px 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-2);
  min-height: 110px;
}

.portrait-card__tags {
  display: flex;
  gap: 8px;
  padding: 16px 28px 24px;
  flex-wrap: wrap;
}

.portrait-tag {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  color: var(--amber);
  font-weight: 700;
}

/* ── MOOD SECTION ── */
.mood-section { padding: var(--section-pad); background: var(--navy); }

.mood-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mood-card {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mood-card__header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124,92,191,0.1), rgba(245,166,35,0.05));
}

.mood-card__title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.mood-card__sub { font-size: 13px; color: var(--text-3); }

.mood-arc-wrap {
  padding: 28px 28px 0;
  text-align: center;
}

.mood-arc-svg { width: 220px; height: 120px; }

.mood-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.mood-tl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.mood-tl-divider { flex: 1; height: 1px; background: var(--border); margin-bottom: 32px; }
.mood-tl-dot { width: 12px; height: 12px; border-radius: 50%; }
.mood-tl-label { font-size: 10px; color: var(--text-3); }
.mood-tl-value { font-size: 11px; font-weight: 700; margin-top: 2px; }

.mood-score {
  text-align: center;
  padding: 4px 28px 22px;
}

.mood-score__label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.mood-score__value { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; color: var(--amber); margin-bottom: 4px; }
.mood-score__note { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.mood-suggestions {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}

.mood-suggestions__title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; }

.mood-suggestion {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mood-suggestion:last-child { border-bottom: none; }
.mood-suggestion__icon { font-size: 20px; flex-shrink: 0; }
.mood-suggestion__title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.mood-suggestion__desc { font-size: 12px; color: var(--text-2); line-height: 1.6; }

/* Mood right side panels */
.mood-panel {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.mood-panel:last-child { margin-bottom: 0; }

.mood-panel__label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mood-panel__text { font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ── ECHOES ── */
.echoes-section { padding: var(--section-pad); background: var(--navy-2); }

.echoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.echoes-demo {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.echoes-demo__header { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.echoes-demo__sub { font-size: 12px; color: var(--text-3); margin-bottom: 22px; }

.echoes-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.echo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s;
  cursor: default;
}

.echo-card:hover {
  background: rgba(245,166,35,0.06);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-2px);
}

.echo-card__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}

.echo-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.echo-card__loc { font-size: 11px; color: var(--text-3); }
.echo-card__heart { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 4px; }

.echoes-add-btn {
  width: 44px; height: 44px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
  color: white;
  font-weight: 300;
  transition: transform 0.3s var(--ease-spring);
}

.echoes-add-btn:hover { transform: scale(1.1) rotate(90deg); }

.echoes-rules { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.echo-rule {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.echo-rule:hover { border-color: rgba(78,205,196,0.25); transform: translateX(4px); }

.echo-rule__icon { font-size: 22px; flex-shrink: 0; }
.echo-rule__title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.echo-rule__desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── BOOK SECTION ── */
.book-section { padding: var(--section-pad); background: var(--navy-3); }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.book-visual {
  position: relative;
  height: 440px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-3d {
  width: 240px; height: 340px;
  transform: rotateY(-22deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease-spring);
  position: relative;
}

.book-3d:hover { transform: rotateY(-6deg) rotateX(1deg) scale(1.04); }

.book-front {
  width: 240px; height: 340px;
  background: linear-gradient(155deg, #3D1A5A, #200A3A, #100520);
  border-radius: 4px 18px 18px 4px;
  box-shadow: -14px 18px 50px rgba(0,0,0,0.7), inset 2px 0 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.book-front::before { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(245,166,35,0.2); border-radius: 2px 14px 14px 2px; }

.book-front__glow { position: absolute; inset: 0; background: radial-gradient(circle at 40% 30%, rgba(245,166,35,0.08), transparent 60%); }
.book-front__icon { font-size: 42px; filter: drop-shadow(0 0 18px rgba(245,166,35,0.6)); }
.book-front__year { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: var(--amber); letter-spacing: 0.04em; }
.book-front__sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,238,248,0.3); }
.book-front__author { font-family: 'Nunito', sans-serif; font-style: italic; font-size: 14px; color: rgba(245,166,35,0.4); }

.book-spine {
  position: absolute;
  left: -18px; top: 0;
  width: 20px; height: 340px;
  background: linear-gradient(to right, #0A0218, #2D1050);
  border-radius: 3px 0 0 3px;
  box-shadow: -6px 0 20px rgba(0,0,0,0.5);
}

.book-pages {
  position: absolute;
  right: -8px; top: 8px;
  width: 10px; height: 324px;
  background: repeating-linear-gradient(to bottom, #F5E6CC 0, #F5E6CC 1px, #E0CCA0 1px, #E0CCA0 2px);
  border-radius: 0 3px 3px 0;
}

.book-shadow {
  position: absolute;
  bottom: -40px;
  width: 220px; height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(12px);
}

.book-features { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }

.book-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.book-feature:last-child { border-bottom: none; }
.book-feature__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.book-feature__title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.book-feature__desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

.book-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
}

.book-price__amount { font-family: 'Sora', sans-serif; font-size: 60px; font-weight: 800; color: var(--amber); line-height: 1; }
.book-price__note { font-size: 14px; color: var(--text-3); line-height: 1.6; }

/* ── B2B SECTION ── */
.b2b-section { padding: var(--section-pad); background: var(--navy-2); }

.b2b-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.b2b-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.b2b-card {
  background: var(--card);
  border-radius: 28px;
  padding: 44px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.b2b-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }

.b2b-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 28px 28px 0 0;
}

.b2b-card--purple::before { background: linear-gradient(90deg, var(--purple), var(--rose)); }
.b2b-card--teal::before { background: linear-gradient(90deg, var(--teal), var(--sky)); }

.b2b-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.b2b-card__icon--purple { background: rgba(124,92,191,0.12); }
.b2b-card__icon--teal { background: rgba(78,205,196,0.12); }

.b2b-card__title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.2; }
.b2b-card__desc { font-size: 15px; color: var(--text-2); line-height: 1.85; margin-bottom: 24px; }
.b2b-card__list { display: flex; flex-direction: column; gap: 10px; }

.b2b-card__list-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  align-items: flex-start;
}

.b2b-card__list-item::before { content: '→'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.b2b-card__list-item--bold { color: var(--text); font-weight: 700; font-family: 'Sora', sans-serif; font-size: 12px; }
.b2b-card__list-item--bold::before { color: var(--purple); }

/* B2B Dashboard */
.b2b-dashboard {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.b2b-dashboard__bar {
  background: rgba(255,255,255,0.02);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.b2b-dashboard__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.b2b-dashboard__label {
  font-size: 12px;
  color: var(--text-3);
  margin-left: auto;
  letter-spacing: 0.04em;
}

.b2b-dashboard__body { padding: 28px; }

.b2b-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.b2b-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.b2b-metric__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.b2b-metric__value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.b2b-metric__trend { font-size: 11px; }
.trend--up { color: var(--sage); }
.trend--down { color: var(--coral); }
.trend--neutral { color: var(--text-3); }

.b2b-bars-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.b2b-bars { display: flex; gap: 8px; align-items: flex-end; height: 80px; }

.b2b-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.b2b-bar:hover { opacity: 1; }

.b2b-bar-labels { display: flex; gap: 8px; margin-top: 8px; }
.b2b-bar-label { flex: 1; text-align: center; font-size: 10px; color: var(--text-3); }

/* B2B CTA box */
.b2b-cta {
  text-align: center;
  padding: 56px;
  background: linear-gradient(135deg, rgba(124,92,191,0.08), rgba(78,205,196,0.04));
  border-radius: 28px;
  border: 1px solid var(--border);
}

.b2b-cta__title { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.b2b-cta__desc { font-size: 16px; color: var(--text-2); margin-bottom: 32px; line-height: 1.75; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-orb--1 { width: 600px; height: 600px; top: -200px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%); }
.cta-orb--2 { width: 500px; height: 500px; bottom: -150px; left: 10%; background: radial-gradient(circle, rgba(124,92,191,0.15), transparent 70%); }
.cta-orb--3 { width: 500px; height: 500px; bottom: -150px; right: 10%; background: radial-gradient(circle, rgba(78,205,196,0.12), transparent 70%); }

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-pre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,166,35,0.6);
  margin-bottom: 24px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  padding: 17px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s;
}

.cta-input::placeholder { color: var(--text-3); }
.cta-input:focus { border-color: rgba(245,166,35,0.4); }

.cta-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 48px;
}

.store-pills { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 26px;
  color: var(--text);
  transition: all 0.3s;
}

.store-pill:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); color: var(--text); }
.store-pill__icon { font-size: 24px; }
.store-pill__text small { display: block; font-size: 10px; color: var(--text-3); letter-spacing: 0.06em; }
.store-pill__text strong { font-size: 14px; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border);
  padding: 72px 60px 40px;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer__brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__brand-desc { font-size: 14px; color: var(--text-3); line-height: 1.8; max-width: 260px; }

.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--amber); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
}

.footer__social { display: flex; gap: 20px; }
.footer__social a { color: var(--text-3); font-size: 16px; transition: color 0.2s; }
.footer__social a:hover { color: var(--amber); }

/* ── SCROLL REVEAL ── */
.rv, .rl, .rr {
  transition: opacity 0.9s ease, transform 0.9s var(--ease-spring);
}

.rv  { opacity: 0; transform: translateY(40px); }
.rl  { opacity: 0; transform: translateX(-40px); }
.rr  { opacity: 0; transform: translateX(40px); }

.rv.on, .rl.on, .rr.on { opacity: 1; transform: none; }

.d1  { transition-delay: 0.10s; }
.d2  { transition-delay: 0.22s; }
.d3  { transition-delay: 0.36s; }
.d4  { transition-delay: 0.50s; }
.d5  { transition-delay: 0.65s; }

/* Keyframe for arc */
@keyframes arc-draw { from { stroke-dashoffset: 283; } to { stroke-dashoffset: 88; } }
@keyframes bar-rise { from { height: 0; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; }
  .hero__mockup-wrap { display: none; }
  .wrap { padding: 0 40px; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav.nav--pinned { padding: 12px 24px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .feat-strip { grid-template-columns: 1fr 1fr; }
  .feat-strip__item:nth-child(2) { border-right: none; }
  .feat-strip__item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .feat-strip__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .how-grid, .lumi-grid, .mood-grid, .echoes-grid, .book-grid, .b2b-cards { grid-template-columns: 1fr; gap: 48px; }
  .wrap { padding: 0 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 52px 24px 32px; }
  .b2b-metrics { grid-template-columns: repeat(2, 1fr); }
  .cta-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .feat-strip { grid-template-columns: 1fr; }
  .feat-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-strip__item:last-child { border-bottom: none; }
  .b2b-metrics { grid-template-columns: repeat(2, 1fr); }
}

section{
  opacity: 1 !important;
  transform: none !important;
}

section{
  display: block !important;
}
