/* ===================================================================
   HATRED — "MORPHO"  ·  iridescent butterfly · editorial · asymmetric
   Aesthetic ref: morpho-butterfly iridescence + brutalist editorial type
   =================================================================== */

:root {
  --void: #05030c;
  --void-2: #0b0718;
  --ink: #100a22;
  --panel: rgba(18, 11, 38, 0.5);
  --line: rgba(150, 120, 255, 0.16);
  --line-2: rgba(170, 140, 255, 0.34);

  --cyan: #b7a6f0;     /* light lavender (main color 2) */
  --violet: #8257e6;   /* rich violet (main color 1) */
  --magenta: #6a35d6;  /* deep violet */
  --plasma: #bcaef2;   /* light accent */

  --txt: #efeaff;
  --dim: #a89fcf;
  --mute: #6b6196;
  --live: #2bf5b0;

  --iris: linear-gradient(120deg, #c6b8f7 0%, #8257e6 48%, #6a35d6 100%);
  --iris-soft: linear-gradient(120deg, #c6b8f7, #8257e6, #6a35d6);

  --f-brand: 'Syne', sans-serif;
  --f-disp: 'Space Grotesk', 'Sora', sans-serif;
  --f-body: 'Sora', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --rail: 76px;
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--void);
  color: var(--txt);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(124, 58, 237, 0.45); color: #fff; }
.mono { font-family: var(--f-mono); }

.skip-link { position: fixed; left: -999px; top: 8px; z-index: 9999; background: var(--violet); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 8px; }

/* ===== Iridescent butterfly (masked) ===== */
.morpho {
  display: block;
  -webkit-mask: url(assets/logo.png) center / contain no-repeat;
  mask: url(assets/logo.png) center / contain no-repeat;
  background: var(--iris);
  background-size: 240% 240%;
  animation: irisShift 9s ease-in-out infinite;
}
@keyframes irisShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Atmosphere ===== */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.iris-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.iris-field::before, .iris-field::after {
  content: ''; position: absolute; width: 58vw; height: 58vw; border-radius: 50%; filter: blur(130px); opacity: 0.2;
}
.iris-field::before { top: -20vw; left: -14vw; background: radial-gradient(circle, rgba(130,87,230,0.4), transparent 66%); animation: drift1 30s var(--ease) infinite alternate; }
.iris-field::after { bottom: -26vw; right: -16vw; background: radial-gradient(circle, rgba(183,166,240,0.3), transparent 66%); animation: drift2 34s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(8vw, 10vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-6vw, -8vh) scale(1.2); } }
.scan { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(124,58,237,0.025) 3px 4px); }

main, .topbar, .rail, .footer { position: relative; z-index: 2; }

/* ===== Cursor ===== */
.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; mix-blend-mode: screen; }
.cursor span { display: block; width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%; border: 1.5px solid rgba(183,139,255,0.8); transition: width .2s var(--ease), height .2s var(--ease), background .2s, border-color .2s; }
.cursor.hot span { width: 56px; height: 56px; background: rgba(124,58,237,0.18); border-color: var(--magenta); }
@media (hover: none) { .cursor { display: none; } }

/* ===== Scroll rail ===== */
.scroll-rail { position: fixed; top: 0; right: 0; width: 3px; height: 100vh; z-index: 90; background: rgba(255,255,255,0.04); }
.scroll-rail span { display: block; width: 100%; height: 0; background: var(--iris); background-size: 100% 400%; box-shadow: 0 0 12px rgba(124,58,237,0.8); }

/* ===== Loader ===== */
.loader { position: fixed; inset: 0; z-index: 9000; display: grid; place-items: center; background: var(--void); transition: opacity .7s, visibility .7s; }
.loader.gone { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-morpho { width: 96px; height: 96px; filter: drop-shadow(0 0 30px rgba(124,58,237,0.7)); animation: irisShift 9s ease-in-out infinite, wingPulse 2.4s var(--ease) infinite; }
@keyframes wingPulse { 0%,100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.08) rotate(0.5deg); } }
.loader-word { font-family: var(--f-brand); font-weight: 800; font-size: clamp(2rem,7vw,3.4rem); letter-spacing: 0.3em; padding-left: 0.3em;
  background: var(--iris); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 6s linear infinite; }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.1); overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 0; background: var(--iris); animation: loadFill 1.6s var(--ease) forwards; }
@keyframes loadFill { to { width: 100%; } }

/* ===== Left rail ===== */
.rail { position: fixed; top: 0; left: 0; width: var(--rail); height: 100vh; z-index: 80;
  display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 22px 0;
  border-right: 1px solid var(--line); background: rgba(5,3,12,0.4); backdrop-filter: blur(8px); }
.rail-mark .rail-morpho { width: 30px; height: 30px; }
.rail-line { flex: 1; width: 1px; background: linear-gradient(var(--line), transparent); }
.rail-dots { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.rail-dots a { position: relative; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--mute); transition: .3s var(--ease); }
.rail-dots a::after { content: attr(data-label); position: absolute; left: 18px; top: 50%; transform: translateY(-50%); white-space: nowrap;
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--dim); opacity: 0; pointer-events: none; transition: .25s; text-transform: uppercase; }
.rail-dots a:hover::after { opacity: 1; }
.rail-dots a:hover { border-color: var(--plasma); }
.rail-dots a.active { border-color: transparent; background: var(--iris); background-size: 200%; box-shadow: 0 0 12px rgba(124,58,237,0.9); transform: scale(1.25); }
.rail-vert { writing-mode: vertical-rl; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.32em; color: var(--mute); }

/* ===== Topbar ===== */
.topbar { position: fixed; top: 0; left: var(--rail); right: 0; z-index: 85; display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 44px); transition: background .35s, padding .35s, border-color .35s; border-bottom: 1px solid transparent; }
body.scrolled .topbar { background: rgba(5,3,12,0.7); backdrop-filter: blur(16px); border-bottom-color: var(--line); padding-top: 11px; padding-bottom: 11px; }
.tb-brand { display: flex; align-items: center; gap: 10px; }
.tb-morpho { width: 28px; height: 28px; }
.tb-name { font-family: var(--f-brand); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.16em; }
.tb-status { display: flex; align-items: center; gap: 8px; font-size: 0.66rem; letter-spacing: 0.16em; color: var(--dim); }
.tb-actions { display: flex; align-items: center; gap: 16px; }
.lnk { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--dim); transition: color .2s; }
.lnk:hover { color: #fff; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px var(--live); display: inline-block; }
.pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.tb-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.tb-burger span { width: 24px; height: 2px; background: var(--txt); transition: .3s; }
body.mopen .tb-burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.mopen .tb-burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ===== Mobile menu ===== */
.mmenu { position: fixed; inset: 0; z-index: 84; background: rgba(5,3,12,0.97); backdrop-filter: blur(14px);
  display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 10vh 8vw;
  opacity: 0; visibility: hidden; transition: .4s var(--ease); }
body.mopen .mmenu { opacity: 1; visibility: visible; }
.mmenu nav { display: flex; flex-direction: column; gap: 6px; }
.mmenu nav a { font-family: var(--f-disp); font-weight: 800; font-size: clamp(2rem,10vw,3rem); letter-spacing: -0.01em; color: var(--txt); transition: color .2s; }
.mmenu nav a:active { color: var(--magenta); }
.mmenu-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mmenu-foot .mono { color: var(--mute); }

/* ===== Buttons ===== */
.btn { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 4px;
  font-family: var(--f-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .2s; }
.btn { cursor: pointer; }
.btn-lg { padding: 17px 28px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-iris { color: #0a0518; background: var(--iris); background-size: 180% auto; box-shadow: 0 6px 20px rgba(124,58,237,0.26); animation: irisShift 7s linear infinite; }
.btn-iris:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(130,87,230,0.4); }
.btn-line { color: var(--txt); border-color: var(--line-2); background: rgba(124,58,237,0.04); }
.btn-line:hover { border-color: var(--plasma); background: rgba(124,58,237,0.14); transform: translateY(-2px); }
.btn .bl-sub { font-size: 0.6rem; opacity: 0.7; padding-left: 4px; }
.btn .ar, .btn .ar2 { font-family: var(--f-body); }

/* ===== Headings / shared ===== */
.eyebrow { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.26em; color: var(--plasma); text-transform: uppercase; }
.big { font-family: var(--f-disp); font-weight: 700; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.94; letter-spacing: -0.035em; }
.big em { font-style: normal; background: var(--iris); background-size: 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 6s linear infinite; }
.ht-outline { color: transparent; -webkit-text-stroke: 1.4px var(--plasma); }

/* fade-up choreography (transition-based so it never collides with iris animations) */
.fx { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fx.show { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { min-height: 100vh; padding: 120px clamp(18px,4vw,44px) 0 calc(var(--rail) + clamp(18px,4vw,44px)); display: flex; flex-direction: column; justify-content: center; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(24px,4vw,64px); align-items: center; max-width: var(--maxw); width: 100%; margin: 0 auto; flex: 1; }
.hero-copy { max-width: 640px; position: relative; z-index: 3; container-type: inline-size; }
.kicker { font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.22em; color: var(--dim); margin-bottom: 22px; }
.kicker .kx { color: var(--magenta); }
.hero-type { display: flex; flex-direction: column; font-family: var(--f-brand); font-weight: 800; line-height: 0.84; letter-spacing: -0.04em; }
.ht-line { font-size: clamp(2rem, 13cqw, 7rem); white-space: nowrap; line-height: 0.84; }
.hero-type .ht-line:first-child { background: var(--iris); background-size: 220%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 7s linear infinite; filter: drop-shadow(0 2px 22px rgba(124,58,237,0.45)); }
.hero-lead { font-size: clamp(1rem, 1.7vw, 1.28rem); font-weight: 300; color: var(--dim); margin: 26px 0 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
.btn-iris.btn-lg { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1.2; }
.hero-meta { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta span { display: flex; flex-direction: column; }
.hero-meta b { font-family: var(--f-disp); font-weight: 800; font-size: 1.7rem; }
.hero-meta i { font-style: normal; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--mute); text-transform: uppercase; }

.hero-stage { position: relative; aspect-ratio: 4/5; max-height: 68vh; max-width: 440px; justify-self: end; display: grid; place-items: center; }
.hs-panel { position: relative; width: 100%; height: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45); }
.hs-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; filter: saturate(1.15) contrast(1.02); }
.hs-veil { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(183,166,240,0.08), transparent 45%, rgba(130,87,230,0.12)); mix-blend-mode: screen; }
.hs-tag { position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 7px; font-size: 0.64rem; letter-spacing: 0.14em; color: var(--txt); background: rgba(5,3,12,0.6); padding: 5px 10px; border-radius: 4px; border: 1px solid var(--line); }
.hs-tag .rec { width: 7px; height: 7px; border-radius: 50%; background: #ff3b6b; box-shadow: 0 0 8px #ff3b6b; animation: pulse 1.4s infinite; }
.hs-corner { position: absolute; width: 22px; height: 22px; border: 2px solid var(--plasma); }
.hs-corner.tl { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.hs-corner.br { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.hero-morpho { position: absolute; left: -14%; bottom: -6%; width: 42%; height: 42%; filter: drop-shadow(0 10px 30px rgba(124,58,237,0.4)); will-change: transform; opacity: 0.92; }
.hs-ring { position: absolute; inset: -8%; border-radius: 50%; border: 1px dashed var(--line); animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ticker */
.ticker { margin-top: auto; width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-row { display: inline-flex; align-items: center; gap: 30px; padding: 13px 0; white-space: nowrap; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--mute); animation: ticker 48s linear infinite; }
.ticker-row .tk-dot { background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===================================================================
   MODULES (horizontal pin)
   =================================================================== */
.modules { position: relative; background: linear-gradient(180deg, transparent, rgba(11,7,24,0.6) 12%, rgba(11,7,24,0.6) 88%, transparent); padding-left: var(--rail); }
.modules-pin { padding: clamp(60px,8vw,110px) clamp(18px,4vw,44px); }
.modules-head { max-width: var(--maxw); margin: 0 auto 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.modules-head .big { margin-top: 10px; }
.modules-note { color: var(--mute); font-size: 0.74rem; letter-spacing: 0.16em; }
.modules-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; padding: 8px 4px 18px; max-width: var(--maxw); margin: 0 auto; scrollbar-width: none; cursor: grab; user-select: none; touch-action: pan-x; overscroll-behavior-x: contain; }
.modules-track::-webkit-scrollbar { display: none; }
.modules-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.modules-track img, .modules-track a { -webkit-user-drag: none; }
.module { scroll-snap-align: start; flex: 0 0 min(78vw, 340px); min-height: 300px; padding: 26px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(10px); position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .3s, transform .3s var(--ease); }
.module::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--iris); background-size: 200%; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.module:hover { border-color: var(--line-2); transform: translateY(-6px); }
.module:hover::before { transform: scaleX(1); }
.m-num { font-size: 0.8rem; color: var(--plasma); letter-spacing: 0.1em; }
.module h3 { font-family: var(--f-disp); font-weight: 700; font-size: 1.7rem; margin: 14px 0 12px; letter-spacing: -0.02em; }
.module p { color: var(--dim); font-weight: 300; font-size: 0.96rem; flex: 1; }
.m-tags { margin-top: 16px; font-size: 0.66rem; letter-spacing: 0.12em; color: var(--mute); }


/* ===================================================================
   SHOWCASE
   =================================================================== */
.showcase { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,9vw,130px) clamp(18px,4vw,44px); padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); }
.sc-head { margin-bottom: 36px; }
.sc-head .eyebrow { margin-bottom: 14px; }
.sc-stage { display: grid; grid-template-columns: 1fr 280px; gap: 26px; align-items: stretch; }
.sc-frame { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); background: #07040f;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.18); aspect-ratio: 16/9; }
.sc-video { width: 100%; height: 100%; object-fit: cover; }
.sc-play { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(160deg, rgba(34,211,238,0.08), rgba(5,3,12,0.45), rgba(236,72,153,0.12)); border: 0; color: var(--txt); transition: opacity .4s; }
.sc-play { cursor: pointer; }
.sc-play.gone { opacity: 0; pointer-events: none; }
.sc-play-disc { position: relative; width: 92px; height: 92px; display: grid; place-items: center; }
.sc-play-morpho { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 0 24px rgba(124,58,237,0.7)); animation: irisShift 9s ease-in-out infinite, spin 24s linear infinite; }
.sc-tri { position: relative; font-size: 1.4rem; color: #fff; padding-left: 4px; }
.sc-play .mono { font-size: 0.74rem; letter-spacing: 0.16em; color: var(--dim); }
.sc-scan { position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.12) 2px 3px); opacity: 0.4; }
.sc-side { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.sc-meta { border-left: 2px solid var(--line-2); padding-left: 16px; }
.sc-meta .mono { font-size: 0.66rem; letter-spacing: 0.16em; color: var(--plasma); }
.sc-meta p { font-weight: 300; color: var(--txt); margin-top: 4px; }

/* ===================================================================
   PROCESS / METAMORPHOSIS
   =================================================================== */
.process { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,9vw,130px) clamp(18px,4vw,44px); padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); overflow: hidden; }
.pr-head { margin-bottom: 50px; max-width: 600px; }
.pr-head .eyebrow { margin-bottom: 14px; }
.pr-steps { list-style: none; display: flex; flex-direction: column; gap: 0; max-width: 760px; position: relative; }
.pr-steps::before { content: ''; position: absolute; left: 26px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(var(--cyan), var(--violet), var(--magenta)); opacity: 0.4; }
.pr-step { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 26px 0; align-items: start; position: relative; }
.pr-step + .pr-step { border-top: 1px solid var(--line); }
.pr-idx { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--void); border: 1px solid var(--line-2); font-size: 0.9rem; color: var(--plasma); position: relative; z-index: 1; }
.pr-step h3 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(1.4rem,3vw,2rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.pr-step p { color: var(--dim); font-weight: 300; max-width: 540px; }
.pr-butterfly { position: absolute; right: -6%; top: 20%; width: 42%; max-width: 460px; opacity: 0.16; pointer-events: none; }
.pr-morpho { width: 100%; aspect-ratio: 1; animation: irisShift 12s ease-in-out infinite, wingPulse 6s var(--ease) infinite; }

/* ===================================================================
   PRICING — wings
   =================================================================== */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,9vw,130px) clamp(18px,4vw,44px); padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); }
.pc-head { text-align: center; margin-bottom: 40px; }
.pc-head .eyebrow { display: block; margin-bottom: 14px; }
.pc-head .big { display: inline-block; }
.pc-flag { display: inline-block; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.18em; color: var(--plasma); }
.wings { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 16px; max-width: 1040px; margin: 0 auto; }
.wing { padding: 34px clamp(22px,3vw,40px); border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(12px); position: relative; display: flex; flex-direction: column; }
.wing-l { border-radius: 18px; background: radial-gradient(130% 110% at 100% 0%, rgba(124,58,237,0.1), var(--panel) 64%); }
.wing-r { border-radius: 18px; }
.wing-body { width: 86px; display: grid; place-items: center; position: relative; z-index: 2; }
.wing-morpho { width: 104px; height: 104px; filter: drop-shadow(0 0 20px rgba(124,58,237,0.45)); animation: irisShift 9s ease-in-out infinite, wingPulse 4s var(--ease) infinite; }
.wing-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.wing-name { font-family: var(--f-mono); font-size: 0.8rem; letter-spacing: 0.22em; color: var(--plasma); }
.wing-price { display: flex; flex-direction: column; align-items: flex-end; }
.wing-r .wing-price { align-items: flex-start; }
.wing-price b { font-family: var(--f-disp); font-weight: 800; font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; background: var(--iris); background-size: 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 7s linear infinite; }
.wing-price i { font-style: normal; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: var(--mute); margin-top: 4px; }
.wing-lead { color: var(--dim); font-weight: 300; font-size: 0.94rem; margin-bottom: 20px; }
.wing-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.wing-list li { position: relative; padding-left: 24px; font-size: 0.92rem; color: var(--txt); font-weight: 300; }
.wing-list li b { font-weight: 600; }
.wing-list li::before { content: '✦'; position: absolute; left: 0; background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wing-r .wing-top { flex-direction: row-reverse; }

.pay-safe { display: flex; align-items: center; gap: 14px; max-width: 760px; margin: 30px auto 0; padding: 16px 22px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); }
.ps-ico { font-size: 1.4rem; flex-shrink: 0; }
.pay-safe p { margin: 0; font-size: 0.84rem; color: var(--dim); font-weight: 300; }
.pay-safe a { color: var(--plasma); font-weight: 600; }
.pay-safe b { color: #fff; }

/* ===================================================================
   PROOF
   =================================================================== */
.proof { padding: clamp(50px,7vw,90px) 0; padding-left: var(--rail); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11,7,24,0.4); overflow: hidden; }
.proof-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto 36px; padding: 0 clamp(18px,4vw,44px); }
.dc-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 14px; border: 1px solid var(--line-2); background: linear-gradient(110deg, rgba(88,101,242,0.16), rgba(124,58,237,0.1)); transition: transform .3s var(--ease), border-color .3s; }
.dc-card:hover { transform: translateY(-3px); border-color: var(--plasma); }
.dc-glyph { color: #fff; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: #5865f2; box-shadow: 0 8px 22px rgba(88,101,242,0.4); }
.dc-txt b { font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem; display: block; }
.dc-txt i { font-style: normal; display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--dim); }
.dc-go { font-size: 0.74rem; letter-spacing: 0.12em; color: var(--plasma); }
.proof-rating { display: flex; align-items: center; gap: 12px; }
.proof-rating b { font-family: var(--f-disp); font-weight: 800; font-size: 2rem; background: var(--iris); background-size: 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 7s linear infinite; }
.proof-rating .stars { color: #ffce4d; letter-spacing: 2px; }
.proof-rating i { font-style: normal; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--mute); }
.reviews { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track { display: inline-flex; align-items: flex-start; gap: 18px; padding: 0 9px; white-space: normal; animation: ticker 40s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
.rev { flex: 0 0 360px; padding: 22px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); }
.rev blockquote { font-size: 0.96rem; color: var(--txt); font-weight: 300; line-height: 1.5; }
.rev figcaption { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--dim); }
.rev-av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; background: rgba(124,58,237,0.25); color: var(--plasma); }
.rev .mono { color: var(--mute); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,9vw,130px) clamp(18px,4vw,44px); padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-head .eyebrow { margin-bottom: 14px; }
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-top: 1px solid var(--line); padding: 6px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 20px 40px 20px 0; list-style: none; position: relative; font-family: var(--f-disp); font-weight: 600; font-size: clamp(1.05rem,2vw,1.35rem); letter-spacing: -0.01em; }
.faq-list summary { cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--plasma); transition: transform .3s; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { padding: 0 40px 22px 0; color: var(--dim); font-weight: 300; }

/* ===================================================================
   CTA
   =================================================================== */
.cta { position: relative; text-align: center; padding: clamp(80px,12vw,160px) clamp(18px,4vw,44px); padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); overflow: hidden; }
.cta-morpho { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); width: min(60vw,520px); height: min(60vw,520px); opacity: 0.18; }
.cta-type { position: relative; font-family: var(--f-disp); font-weight: 700; font-size: clamp(3rem,13vw,9rem); line-height: 0.88; letter-spacing: -0.04em; }
.cta-type { background: var(--iris); background-size: 220%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: irisShift 7s linear infinite; }
.cta-type .ht-outline { -webkit-text-fill-color: transparent; }
.cta p { position: relative; color: var(--dim); margin: 22px 0 30px; font-size: 1.1rem; }
.cta .hero-cta { position: relative; justify-content: center; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { padding: 70px clamp(18px,4vw,44px) 30px; padding-left: calc(var(--rail) + clamp(18px,4vw,44px)); border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; }
.ft-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.ft-brand { display: flex; align-items: center; gap: 12px; }
.ft-morpho { width: 36px; height: 36px; }
.ft-brand b { font-family: var(--f-brand); font-weight: 800; font-size: 1.6rem; letter-spacing: 0.1em; }
.ft-tag { font-family: var(--f-mono); font-size: 0.8rem; color: var(--mute); letter-spacing: 0.08em; }
.ft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.ft-grid > div { display: flex; flex-direction: column; gap: 10px; }
.ft-grid .mono { font-size: 0.66rem; letter-spacing: 0.18em; color: var(--mute); margin-bottom: 4px; }
.ft-grid a { color: var(--dim); font-size: 0.92rem; transition: color .2s; }
.ft-grid a:hover { color: var(--plasma); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--mute); }
.ft-bottom .mono { letter-spacing: 0.14em; }

/* ===== Mobile sticky bar ===== */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 16px; background: rgba(5,3,12,0.92); backdrop-filter: blur(16px); border-top: 1px solid var(--line-2); transform: translateY(120%); transition: transform .4s var(--ease); }
.mbar.show { transform: translateY(0); }
.mbar-p b { font-family: var(--f-disp); font-weight: 800; font-size: 1.4rem; }
.mbar-p i { font-style: normal; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--mute); text-transform: uppercase; }

/* ===================================================================
   TERMS PAGE
   =================================================================== */
.legal { max-width: 820px; margin: 0 auto; padding: 120px clamp(18px,5vw,30px) 0; }
.legal-head { text-align: center; margin-bottom: 44px; }
.legal-head .ft-brand { justify-content: center; margin-bottom: 18px; }
.legal-head h1 { font-family: var(--f-disp); font-weight: 800; font-size: clamp(2rem,5vw,3rem); letter-spacing: -0.02em; }
.legal-updated { color: var(--mute); font-family: var(--f-mono); font-size: 0.78rem; margin-top: 10px; }
.legal-updated a { color: var(--plasma); }
.legal-block { padding: 24px 26px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); backdrop-filter: blur(8px); }
.legal-block h2 { font-family: var(--f-disp); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: baseline; }
.legal-block h2 .ln { font-family: var(--f-mono); font-size: 0.85rem; background: var(--iris); -webkit-background-clip: text; background-clip: text; color: transparent; }
.legal-block p { color: var(--dim); font-weight: 300; font-size: 0.92rem; margin-bottom: 10px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block b { color: #fff; }
.legal-block a { color: var(--plasma); }
.legal-back { display: inline-flex; gap: 8px; margin: 28px 0 60px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { max-height: 50vh; aspect-ratio: 16/10; order: -1; width: 100%; }
  .hero-morpho { width: 34%; height: 34%; }
  .sc-stage { grid-template-columns: 1fr; }
  .sc-side { flex-direction: row; flex-wrap: wrap; }
  .sc-meta { flex: 1 1 40%; }
  .faq { grid-template-columns: 1fr; }
  .faq-head { position: static; }
}
@media (max-width: 760px) {
  :root { --rail: 0px; }
  .rail { display: none; }
  .topbar { left: 0; }
  .tb-status { display: none; }
  .lnk, .tb-actions .btn-iris { display: none; }
  .tb-burger { display: flex; }
  .hero { padding-left: clamp(18px,5vw,28px); padding-right: clamp(18px,5vw,28px); }
  .hero-meta { gap: 22px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .mbar { display: flex; }
  body { padding-bottom: 64px; }
  .wings { grid-template-columns: 1fr; }
  .wing-l, .wing-r { clip-path: none; border-radius: 16px; border: 1px solid var(--line); margin-bottom: 14px; }
  .wing-body { display: none; }
  .wing-r .wing-top { flex-direction: row; }
  .wing-r .wing-price { align-items: flex-end; }
  .proof-bar { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .fx, .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===================================================================
   MOTION LAYER — cool animations
   =================================================================== */
.btn-iris, .btn-line { will-change: transform; }

/* animated link underline */
.lnk, .ft-grid a, .pay-safe a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .35s var(--ease), color .2s;
}
.lnk:hover, .ft-grid a:hover, .pay-safe a:hover { background-size: 100% 1px; }

/* directional + scale reveal variants (layer over .reveal) */
.reveal.rv-r { transform: translateX(48px); }
.reveal.rv-l { transform: translateX(-48px); }
.reveal.rv-scale { transform: scale(.93); }
.reveal.rv-r.in, .reveal.rv-l.in, .reveal.rv-scale.in { transform: none; }

/* pricing wings spread in from the sides */
.wing-l.reveal { transform: translateX(-52px) rotate(-2.5deg); transition-duration: 1s; }
.wing-r.reveal { transform: translateX(52px) rotate(2.5deg); transition-duration: 1s; }
.wing-l.reveal.in, .wing-r.reveal.in { transform: none; }

/* process timeline line draw + step nodes lighting up */
.pr-steps.reveal { opacity: 1; transform: none; }
.pr-steps::before { transform: scaleY(0); transform-origin: top; transition: transform 1.1s var(--ease) .15s; }
.pr-steps.in::before { transform: scaleY(1); }
.pr-idx { transition: box-shadow .6s var(--ease), border-color .6s, color .6s; }
.pr-step.in .pr-idx { border-color: var(--plasma); color: var(--plasma); box-shadow: 0 0 0 4px rgba(124,58,237,0.1), 0 0 20px rgba(124,58,237,0.35); }

/* card tilt + cursor spotlight */
.hs-panel { will-change: transform; transition: transform .3s var(--ease); }
.module::after, .wing::after, .dc-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .35s; z-index: 0;
  background: radial-gradient(260px circle at var(--mx,50%) var(--my,50%), rgba(124,58,237,0.18), transparent 68%);
}
.module > *, .wing > * { position: relative; z-index: 1; }
.module:hover::after, .wing:hover::after, .dc-card:hover::after { opacity: 1; }

/* counter flash on finish */
.ctr.done { animation: ctrFlash .7s var(--ease); }
@keyframes ctrFlash { 0%,100% { text-shadow: none; } 45% { text-shadow: 0 0 22px rgba(124,58,237,.85); } }

/* faq open animation */
.faq-list summary { transition: color .25s; }
.faq-list details[open] > summary { color: var(--plasma); }
.faq-list details[open] p { animation: faqIn .42s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* pause marquees on hover */
.ticker:hover .ticker-row { animation-play-state: paused; }

/* showcase play disc ripple */
.sc-play-disc::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--line-2); animation: discPulse 2.4s var(--ease) infinite; }
@keyframes discPulse { 0% { transform: scale(.88); opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }

/* flying butterflies */
.flutter { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.flit { position: absolute; top: 0; left: 0; will-change: transform; }
.flit-wing {
  display: block; width: 100%; height: 100%;
  -webkit-mask: url(assets/logo.png) center / contain no-repeat;
  mask: url(assets/logo.png) center / contain no-repeat;
  background: var(--iris); background-size: 200% 200%;
  animation: flap .18s ease-in-out infinite alternate, irisShift 8s ease-in-out infinite;
  opacity: .72; filter: drop-shadow(0 2px 7px rgba(124,58,237,0.45));
}
@keyframes flap { from { transform: scaleX(1); } to { transform: scaleX(0.22); } }

/* live review stars + proof image + avatar */
.rev-stars { color: #ffce4d; letter-spacing: 2px; font-size: 0.78rem; margin: 12px 0 2px; }
.rev-shot { display: block; margin: 14px 0 4px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); background: #0a0714; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.rev-shot img { display: block; width: 100%; max-height: 190px; object-fit: cover; transition: transform .45s var(--ease), filter .3s; }
.rev-shot:hover img { transform: scale(1.05); filter: brightness(1.08); }
.rev-av.img { background-size: cover; background-position: center; color: transparent; box-shadow: inset 0 0 0 1px var(--line-2); }
/* text-only review card: no empty box — compact + decorative quote */
.rev.rev-text { position: relative; overflow: hidden; }
.rev.rev-text blockquote { font-size: 1.05rem; line-height: 1.5; }
.rev.rev-text::before { content: '\201C'; position: absolute; top: 4px; right: 16px; font-family: Georgia, 'Times New Roman', serif; font-size: 5.5rem; line-height: 1; color: rgba(255,255,255,0.06); pointer-events: none; }
.rev.rev-text::after { content: ''; position: absolute; right: -30px; bottom: -30px; width: 120px; height: 120px; background: var(--iris); -webkit-mask: url(assets/logo.png) center/contain no-repeat; mask: url(assets/logo.png) center/contain no-repeat; opacity: 0.06; pointer-events: none; }

/* currency switch */
.cur-switch { display: flex; width: fit-content; gap: 4px; margin: 22px auto 0; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); backdrop-filter: blur(8px); }
.cur-btn { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; padding: 8px 16px; border-radius: 999px; border: 0; background: none; color: var(--dim); cursor: pointer; transition: color .25s, background .25s; }
.cur-btn:hover { color: #fff; }
.cur-btn.active { background: var(--iris); background-size: 200%; color: #0a0518; animation: irisShift 7s linear infinite; }
.cur-rate { margin-top: 10px; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--mute); min-height: 1em; }
.wing-price b { transition: color .2s; }

/* showcase: two videos */
.sc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--maxw); margin: 30px auto 0; }
.sc-frame { margin: 0; }
.sc-cap { position: absolute; left: 12px; bottom: 12px; z-index: 6; font-size: 0.64rem; letter-spacing: 0.14em; color: var(--dim); background: rgba(5,3,12,0.55); padding: 4px 10px; border-radius: 5px; backdrop-filter: blur(4px); }
.sc-meta-row { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; max-width: var(--maxw); margin: 22px auto 0; }
.sc-meta-row .sc-meta { border-left: 2px solid var(--line-2); padding-left: 14px; }
.sc-meta-row .btn { margin-left: auto; }
@media (max-width: 760px) {
  .sc-duo { grid-template-columns: 1fr; }
  .sc-meta-row .btn { margin-left: 0; width: 100%; justify-content: center; }
}
