/* ============================================================
   FeelVers — Corporate Website · styles.css  v2
   Personalized Entertainment Platform.
   Dark, cinematic, premium. No external dependencies.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --black:   #050507;
  --bg0:     #08080A;
  --bg1:     #0E0E12;
  --bg2:     #15151A;
  --bg3:     #1C1C22;
  --bg4:     #26262E;
  --fg1:     #F6F6F8;
  --fg2:     rgba(246,246,248,.66);
  --fg3:     rgba(246,246,248,.42);
  --fg4:     rgba(246,246,248,.18);
  --ink:     #0A0A0C;
  --bd:      rgba(246,246,248,.09);
  --bd2:     rgba(246,246,248,.18);
  --bdf:     rgba(246,246,248,.05);
  --focus:   rgba(126,139,255,.55);

  --iris-blue:    #7E8BFF;
  --iris-cyan:    #74E0F0;
  --iris-violet:  #B488FF;
  --iris-magenta: #FF8FCF;
  --iris-grad:    linear-gradient(90deg,#7E8BFF,#74E0F0 40%,#B488FF 70%,#FF8FCF);
  --dawn:         radial-gradient(120% 90% at 50% 115%,
                    rgba(126,139,255,.20) 0%,rgba(116,224,240,.08) 36%,
                    rgba(180,136,255,.07) 58%,transparent 76%);
  --dawn-strong:  radial-gradient(110% 80% at 50% 110%,
                    rgba(126,139,255,.28) 0%,rgba(116,224,240,.10) 36%,
                    rgba(180,136,255,.09) 58%,transparent 74%);

  --success: #5FD0A6;
  --warning: #E8C06A;
  --danger:  #F0676B;

  --sans:  'Sora', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --ease:     cubic-bezier(.22,1,.36,1);
  --dur:      .32s;
  --dur-slow: .6s;

  --maxw: 1160px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--fg1);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: var(--sans); cursor: pointer; }
::selection { background: rgba(126,139,255,.35); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--bg3); border-radius: 99px;
  border: 3px solid var(--black); background-clip: content-box;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }
.serif { font-family: var(--serif); font-style: italic; }
.iris {
  background: var(--iris-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg3);
}
.mono { font-family: var(--mono); font-size: 13px; color: var(--fg3); }
.muted { color: var(--fg2); }
.hr { height: 1px; background: var(--bdf); border: none; }

/* ─── TYPE SCALE ─────────────────────────────────────────────── */
.display {
  font-weight: 200;
  font-size: clamp(48px, 7.5vw, 104px);
  letter-spacing: -.038em;
  line-height: .97;
  color: var(--fg1);
}
h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.04;
  color: var(--fg1);
}
h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: var(--fg1);
}
h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.25;
  color: var(--fg1);
}
p { color: var(--fg2); line-height: 1.68; }
.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
  color: var(--fg2);
  font-weight: 300;
}
.wm .a { font-weight: 300; }
.wm .b { font-weight: 600; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  transition: background var(--dur), border-color var(--dur), backdrop-filter var(--dur);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,7,.80);
  backdrop-filter: blur(28px) saturate(1.4);
  border-bottom-color: var(--bd);
}
.nav-in {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 24px; width: auto; }
.brand .wm { font-size: 20px; letter-spacing: -.02em; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 14px; color: var(--fg2);
  padding: 8px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--fg1); background: rgba(246,246,248,.06); }
.nav-links a[aria-current="page"] { color: var(--fg1); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.burger {
  display: none; background: none; border: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px; transition: background .15s;
}
.burger:hover { background: var(--bg2); }
.burger-lines { display: flex; flex-direction: column; gap: 5px; }
.burger-lines span {
  display: block; width: 20px; height: 1.5px;
  background: var(--fg1); border-radius: 99px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 500; font-size: 14px; letter-spacing: -.01em;
  cursor: pointer; border: none;
  border-radius: 999px; padding: 11px 22px;
  transition: transform .14s var(--ease), box-shadow var(--dur), filter var(--dur), background .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--fg1); color: var(--ink); }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(246,246,248,.16); }
.btn-magic {
  background: var(--iris-grad); color: var(--ink); font-weight: 600;
  box-shadow: 0 8px 32px rgba(126,139,255,.26);
}
.btn-magic:hover { filter: brightness(1.07); box-shadow: 0 12px 40px rgba(126,139,255,.38); }
.btn-line { background: transparent; color: var(--fg1); box-shadow: inset 0 0 0 1px var(--bd2); }
.btn-line:hover { background: var(--bg3); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; }

/* ─── LAYOUT ──────────────────────────────────────────────────── */
section { position: relative; }
.sec { padding: clamp(72px, 10vw, 136px) 0; }
.sec-sm { padding: clamp(44px, 6vw, 80px) 0; }
.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: repeat(2,1fr); }
.g3 { grid-template-columns: repeat(3,1fr); }
.g4 { grid-template-columns: repeat(4,1fr); }

/* ─── CARD ────────────────────────────────────────────────────── */
.card {
  background: var(--bg1); border: 1px solid var(--bd);
  border-radius: 20px; padding: 28px 28px 32px;
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--bd2);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.card-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--iris-blue); letter-spacing: .1em;
  margin-bottom: 18px;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--fg2);
  background: var(--bg2); border: 1px solid var(--bd);
  border-radius: 999px; padding: 7px 14px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 99px; background: var(--iris-blue);
  box-shadow: 0 0 6px var(--iris-blue); flex-shrink: 0;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(108px,15vh,168px) 0 clamp(88px,12vh,140px);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-dawn {
  position: absolute; inset: 0;
  background: var(--dawn-strong);
}
.hero-arc {
  position: absolute; left: -20%; right: -20%; bottom: -60%; height: 100%;
  border-radius: 50%;
  border-top: 1px solid rgba(150,175,255,.24);
  box-shadow: 0 -2px 100px rgba(126,139,255,.14), inset 0 1px 0 rgba(180,200,255,.05);
}
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.orb-a {
  width: 760px; height: 540px;
  background: radial-gradient(circle, rgba(126,139,255,.30), transparent 68%);
  top: -220px; left: 50%; transform: translateX(-65%);
  animation: orbA 16s ease-in-out infinite alternate;
}
.orb-b {
  width: 520px; height: 420px;
  background: radial-gradient(circle, rgba(180,136,255,.24), transparent 68%);
  top: -100px; left: 50%; transform: translateX(5%);
  animation: orbB 12s ease-in-out infinite alternate;
}
@keyframes orbA { to { transform: translateX(-60%) translateY(28px); } }
@keyframes orbB { to { transform: translateX(15%) translateY(-18px); } }
.hero-content { position: relative; z-index: 1; }
.hero-lead { max-width: 520px; margin: 24px auto 0; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ─── FEEL INPUT ─────────────────────────────────────────────── */
.feel-pill {
  max-width: 560px; margin: 44px auto 0;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 22px;
  background: rgba(14,14,18,.88);
  backdrop-filter: blur(24px);
  border: 1px solid var(--bd2);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(126,139,255,.06);
}
.feel-pill input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--fg1); font-family: var(--sans); font-size: 15px; min-width: 0;
}
.feel-pill input::placeholder { color: var(--fg4); }
.feel-spark { color: var(--iris-violet); font-size: 15px; flex-shrink: 0; }

/* ─── POSTER RAIL ─────────────────────────────────────────────── */
.rail {
  display: flex; gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  padding: 8px 2px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.poster {
  flex: 0 0 auto; width: 182px;
  aspect-ratio: 2/2.9;
  border-radius: 14px; overflow: hidden;
  position: relative;
  border: 1px solid var(--bd);
  scroll-snap-align: start;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  cursor: default;
}
.poster:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.poster-bg { position: absolute; inset: 0; }
.poster-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,.92) 0%, rgba(5,5,7,.28) 50%, transparent 100%);
}
.poster-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; }
.poster-genre { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg3); margin-bottom: 4px; }
.poster-title { font-size: 14px; font-weight: 600; letter-spacing: -.01em; line-height: 1.22; }
.poster-badge {
  display: inline-block; margin-top: 8px;
  font-size: 10px; padding: 3px 8px;
  border-radius: 999px; border: 1px solid var(--bd2);
  color: var(--fg3);
}

/* ─── BENTO GRID ─────────────────────────────────────────────── */
.bento { display: grid; gap: 12px; grid-template-columns: repeat(6,1fr); }
.bento-cell {
  background: var(--bg1); border: 1px solid var(--bd);
  border-radius: 20px; padding: 28px; overflow: hidden;
  transition: border-color var(--dur), transform var(--dur) var(--ease);
}
.bento-cell:hover { border-color: var(--bd2); transform: translateY(-2px); }
.bento-cell .cell-num { font-family: var(--mono); font-size: 11px; color: var(--iris-blue); letter-spacing: .1em; margin-bottom: 16px; }
.bento-cell h3 { margin-bottom: 10px; }
.bento-cell p { font-size: 14px; }
.span2 { grid-column: span 2; }
.span3 { grid-column: span 3; }
.span4 { grid-column: span 4; }
.span6 { grid-column: span 6; }

/* ─── STEPS ──────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 28px; padding: 34px 0;
  border-top: 1px solid var(--bdf);
}
.step-item:last-child { border-bottom: 1px solid var(--bdf); }
.step-num {
  font-family: var(--mono); font-size: 13px;
  color: var(--iris-blue); flex-shrink: 0; width: 40px; padding-top: 2px;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--bdf); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 26px 0; text-align: left;
  color: var(--fg1); font-size: clamp(16px,1.8vw,20px);
  font-weight: 400; letter-spacing: -.01em; transition: color .15s;
}
.faq-q:hover { color: var(--fg2); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; border: 1px solid var(--bd2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color .15s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--fg2); border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; transition: transform .2s, opacity .2s; }
.faq-item.open .faq-icon { transform: rotate(135deg); border-color: rgba(126,139,255,.5); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a .inner {
  padding: 0 0 28px; color: var(--fg2);
  line-height: 1.72; max-width: 720px; font-size: 16px;
}

/* ─── FORM ────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; color: var(--fg3); letter-spacing: .06em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  background: var(--bg2); border: 1px solid var(--bd);
  border-radius: 12px; padding: 14px 16px;
  color: var(--fg1); font-size: 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(126,139,255,.10);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg4); }
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; cursor: pointer; }
.form-note { font-size: 12px; color: var(--fg3); line-height: 1.65; }
.form-success {
  display: none; padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid rgba(95,208,166,.28);
  border-radius: 14px;
}
.form-success-title { color: var(--success); font-weight: 600; margin-bottom: 6px; }
.form-success p { font-size: 14px; }

/* ─── STATS ──────────────────────────────────────────────────── */
.stat-n {
  font-weight: 200;
  font-size: clamp(42px,5.5vw,68px);
  letter-spacing: -.04em; line-height: 1;
}
.stat-l { font-size: 14px; color: var(--fg3); margin-top: 8px; }

/* ─── CTA BAND ───────────────────────────────────────────────── */
.band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 28px; background: var(--bg1); border: 1px solid var(--bd);
  padding: clamp(56px,8vw,96px) 32px;
}
.band-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(110% 90% at 50% 120%,
    rgba(126,139,255,.18) 0%, rgba(180,136,255,.09) 44%, transparent 72%);
}

/* ─── PLATFORM BADGE ─────────────────────────────────────────── */
.platform-card {
  background: var(--bg1); border: 1px solid var(--bd);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur);
}
.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--bd2);
  box-shadow: 0 20px 56px rgba(0,0,0,.4);
}
.platform-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--fg3);
}

/* ─── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 999px;
}
.badge-iris { background: rgba(126,139,255,.12); color: var(--iris-blue); border: 1px solid rgba(126,139,255,.22); }
.badge-muted { background: rgba(246,246,248,.06); color: var(--fg3); border: 1px solid var(--bd); }
.badge-success { background: rgba(95,208,166,.10); color: var(--success); border: 1px solid rgba(95,208,166,.22); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg0); border-top: 1px solid var(--bd);
  padding: 72px 0 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { margin-top: 18px; font-size: 14px; color: var(--fg3); max-width: 280px; line-height: 1.65; }
.footer-col .col-head {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg3); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--fg2);
  margin-bottom: 12px; transition: color .15s;
}
.footer-col a:hover { color: var(--fg1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-top: 52px; padding-top: 28px;
  border-top: 1px solid var(--bdf);
  font-size: 13px; color: var(--fg3);
}
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--fg2);
}

/* ─── REVEAL ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .26s; }
.d4 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb-a, .orb-b { animation: none; }
}

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding: clamp(84px,12vh,132px) 0 clamp(56px,8vh,96px);
  position: relative; overflow: hidden; text-align: center;
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--bdf); margin: 0; border: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .bento { grid-template-columns: repeat(4,1fr); }
  .span3, .span4 { grid-column: span 4; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .nav-links, .nav-cta .btn-line { display: none; }
  .burger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; inset: 70px 0 auto 0;
    background: rgba(5,5,7,.97); backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--bd); padding: 6px 0 16px;
  }
  .nav.menu-open .nav-links a {
    padding: 15px 24px; font-size: 16px;
    border-radius: 0; border-bottom: 1px solid var(--bdf);
  }
  .g2, .g3 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .span2, .span3, .span4 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .step-item { flex-direction: column; gap: 10px; }
  .feel-pill { margin-left: 12px; margin-right: 12px; }
}
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .span2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
