/* ================================================================
   RightCV — Soft Impact Redesign
   Inspired by Hope Rise: oversized type, warm paper, green CTAs,
   pill actions, soft curves. Brand palette preserved.
   ================================================================ */

:root {
  --sky: #7EABF5;
  --paper: #F7F6F3;
  --cream: #EEE9E0;
  --green: #22C55E;
  --green-dark: #16A34A;
  --green-soft: #DDF8E7;
  --blue: #1A56DB;
  --ink: #0F2A5C;
  --ink-soft: #1A3358;
  --neg: #3B5B9A;
  --warn: #5B8FD9;

  --ink-70: rgba(15, 42, 92, 0.72);
  --ink-45: rgba(15, 42, 92, 0.45);
  --ink-15: rgba(15, 42, 92, 0.12);
  --ink-08: rgba(15, 42, 92, 0.08);
  --white-85: rgba(255, 255, 255, 0.85);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-15: rgba(255, 255, 255, 0.16);

  --font-head: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Sans", system-ui, sans-serif;

  --radius: 28px;
  --radius-sm: 18px;
  --radius-lg: 40px;
  --radius-pill: 999px;

  --bd: 1px solid rgba(15, 42, 92, 0.08);
  --shadow: 0 18px 40px rgba(15, 42, 92, 0.08);
  --shadow-sm: 0 8px 22px rgba(15, 42, 92, 0.06);
  --shadow-lg: 0 28px 60px rgba(15, 42, 92, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
a { color: inherit; }
ul { list-style: none; }

.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }
.wrap--narrow { width: min(760px, 100% - 40px); }

.mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.02em; }

h1 em, h2 em {
  font-style: normal;
  color: var(--blue);
}
.accent-dot { color: var(--green); }
.green { color: var(--green-dark); }

/* ---------------- Buttons ---------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn i { font-style: normal; }

.btn--fill {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(26, 86, 219, 0.28);
}
.btn--fill:hover { box-shadow: 0 18px 34px rgba(26, 86, 219, 0.36); }

.btn--green {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.32);
}
.btn--green:hover { box-shadow: 0 18px 36px rgba(34, 197, 94, 0.4); background: #1fb855; }

.btn--line {
  background: transparent;
  border-color: rgba(15, 42, 92, 0.18);
  color: var(--ink);
}
.btn--line:hover { border-color: var(--ink); background: #fff; }

.btn--linelight {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn--linelight:hover { background: rgba(255, 255, 255, 0.16); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

.btn-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 42, 92, 0.16);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.btn-icon:hover {
  transform: translateY(-2px) rotate(8deg);
  border-color: var(--ink);
  background: var(--paper);
}
.btn-icon--green {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
}
.btn-icon--green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.cta-link:hover .btn-icon { transform: translateY(-2px) rotate(12deg); }

/* ---------------- Pill badge ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill--sky { background: rgba(126, 171, 245, 0.22); color: var(--blue); }
.pill--mute { background: rgba(15, 42, 92, 0.06); color: var(--ink-70); }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 42, 92, 0.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
  text-transform: uppercase;
}
.nav__brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}
.nav__brand em { font-style: normal; color: var(--blue); }

.nav__links {
  display: flex;
  gap: 28px;
  margin-inline: auto;
}
.nav__links a {
  color: var(--ink-70);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a .mono { display: none; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 10px 20px; font-size: 0.82rem; }
.nav__switch {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 42, 92, 0.14);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.nav__switch:hover { border-color: var(--ink); transform: rotate(-20deg); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 999px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 24px;
  border-top: 1px solid rgba(15, 42, 92, 0.06);
  background: var(--paper);
}
.nav__mobile.is-open {
  display: flex !important;
}
.nav__mobile a {
  padding: 14px 4px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav__mobile .btn { margin-top: 8px; text-align: center; }

/* ---------------- Soft curve divider ---------------- */
.curve {
  display: block;
  width: 100%;
  height: 72px;
  color: var(--cream);
  margin-top: -1px;
}
.curve svg { width: 100%; height: 100%; display: block; }
.curve--paper { color: var(--paper); }
.curve--white { color: #fff; }
.curve--ink { color: var(--ink); }
.curve--blue { color: var(--blue); }
.curve--flip { transform: scaleY(-1); }

/* ---------------- Gate page ---------------- */
.gate-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(126, 171, 245, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(34, 197, 94, 0.1), transparent 50%),
    var(--paper);
}
.ill-grain,
.ill-decor { display: none; }

.gate-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px min(40px, 5vw);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 42, 92, 0.05);
}
.gate-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gate__badge { margin-bottom: 18px; }

.gate__title {
  max-width: 12ch;
  margin: 0 auto 14px;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.96;
}
.gate__title em {
  font-style: normal;
  color: var(--blue);
}
.gate__title-line {
  display: block;
  margin-top: 0.08em;
  font-size: 0.72em;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.gate__sub {
  max-width: 40ch;
  margin: 0 auto 28px;
  color: var(--ink-70);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.gate {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 0 28px;
}
.gate__inner {
  width: min(1080px, 100% - 40px);
  margin-inline: auto;
  text-align: center;
}

.worlds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.world {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1.5px solid rgba(15, 42, 92, 0.06);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.world:hover {
  box-shadow: var(--shadow);
  border-color: rgba(26, 86, 219, 0.18);
}
.world--student {
  background: linear-gradient(165deg, #fff 40%, rgba(34, 197, 94, 0.08));
}
.world--hire {
  background: linear-gradient(165deg, #fff 40%, rgba(26, 86, 219, 0.08));
}

.world__scene {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.world__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.world__copy h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.world__copy p {
  color: var(--ink-70);
  font-size: 0.95rem;
  max-width: 28ch;
}
.world__go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.world__go--green { background: var(--green); }
.world__go--blue { background: var(--blue); }

.bridge {
  display: none;
}

.gate__continue {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.gate__continue a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.gate__continue a:hover { text-decoration: underline; text-underline-offset: 3px; }
.gate__reset {
  background: none;
  border: none;
  color: var(--ink-45);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gate-founders {
  padding: 72px min(40px, 5vw) 80px;
  background:
    linear-gradient(180deg, transparent, rgba(238, 233, 224, 0.65) 20%, var(--cream));
  border-top: 1px solid rgba(15, 42, 92, 0.05);
}
.gate-founders__inner {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}
.gate-founders h2 {
  max-width: 14ch;
  margin: 14px auto 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}
.gate-founders h2 em {
  font-style: normal;
  color: var(--blue);
}
.gate-founders > .gate-founders__inner > p {
  color: var(--ink-70);
  max-width: 42ch;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.gate-founders .calendar-card {
  margin-top: 0;
  text-align: left;
}

.gate-footer {
  padding: 20px min(40px, 5vw) 28px;
  text-align: center;
}
.gate-footer p { color: var(--ink-45); font-size: 0.68rem !important; }
.gate-footer a { color: var(--blue); text-decoration: none; }

.gate-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(15, 42, 92, 0.04);
}
.gate-strip__item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.gate-strip__scroll { display: none; }

/* ---------------- Subpage hero ---------------- */
.page-hero {
  position: relative;
  padding: 72px 0 40px;
  text-align: center;
  overflow: hidden;
}
.page-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.page-hero .pill { margin-bottom: 22px; }
.page-hero h1 {
  max-width: 18ch;
  margin-inline: auto;
}
.page-hero__sub {
  max-width: 48ch;
  margin: 18px auto 0;
  color: var(--ink-70);
  font-size: 1.12rem;
}
.page-hero .cta-row {
  justify-content: center;
  margin-top: 32px;
}
.page-hero__aside { width: 100%; max-width: 920px; }
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-orbits {
  position: relative;
  width: min(720px, 100%);
  height: clamp(220px, 36vw, 320px);
  margin: 8px auto 0;
}
.orbit-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.orbit-web line {
  stroke: var(--sky);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
}
.orbit-web circle {
  fill: var(--sky);
  opacity: 0.7;
}
.hero-orbits__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 28vw, 200px);
  height: clamp(140px, 28vw, 200px);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #3B7AE8 55%, var(--sky));
  display: grid;
  place-items: center;
  box-shadow: 0 24px 48px rgba(26, 86, 219, 0.28);
  overflow: hidden;
  z-index: 2;
}
.hero-orbits__center img { display: none; }
.hero-orbits__center svg {
  width: 72%;
  height: 72%;
  display: block;
}
.orbit-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 12px 28px rgba(15, 42, 92, 0.14);
  display: grid;
  place-items: center;
  animation: none;
  transform: none;
  z-index: 2;
}
.orbit-circle svg {
  width: 100%;
  height: 100%;
  display: block;
}
.orbit-circle--1 { width: 92px; height: 92px; left: 4%; top: 12%; }
.orbit-circle--2 { width: 72px; height: 72px; right: 8%; top: 8%; }
.orbit-circle--3 { width: 84px; height: 84px; left: 10%; bottom: 6%; }
.orbit-circle--4 { width: 100px; height: 100px; right: 4%; bottom: 10%; }
.orbit-circle--5 { width: 64px; height: 64px; left: 38%; top: 0; }
.orbit-circle--6 { width: 70px; height: 70px; right: 30%; bottom: 0; }

.hero-illus,
.hero-mock,
.aside-card,
.orbit-badge,
.scene-token,
.scene-char { display: none; }

.filetag {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.filetag span {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(15, 42, 92, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-70);
}

/* ---------------- Impact band ---------------- */
.impact {
  padding: 80px 0 40px;
  text-align: center;
  background: #fff;
}
.impact .pill { margin-bottom: 20px; }
.impact h2 { max-width: 18ch; margin: 0 auto 28px; }
.impact__stat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3.8rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--green);
}
.impact__label {
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.impact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(15, 42, 92, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.impact-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.impact-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
}
.impact-card__ico svg { width: 24px; height: 24px; }
.impact-card h3 { margin-bottom: 8px; }
.impact-card p { color: var(--ink-70); font-size: 0.95rem; }
.impact-card--accent {
  background: linear-gradient(160deg, #fff, rgba(34, 197, 94, 0.12));
}

/* ---------------- Sections ---------------- */
.sec {
  padding: 96px 0;
  position: relative;
}
.sec--paper { background: var(--paper); }
.sec--cream { background: var(--cream); }
.sec--white { background: #fff; }
.sec--ink {
  background: var(--ink);
  color: #fff;
}
.sec--ink h2,
.sec--ink h3 { color: #fff; }
.sec--ink h2 em { color: var(--green); }
.sec--ink .sec__lead,
.sec--ink p { color: var(--white-55); }
.sec--ink .sec__index { color: var(--sky); background: rgba(126, 171, 245, 0.12); }
.sec--blue {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(126, 171, 245, 0.35), transparent 60%),
    var(--blue);
  color: #fff;
}
.sec--blue h2,
.sec--blue h3 { color: #fff; }
.sec--blue h2 em { color: #B8F0C8; }
.sec--blue .sec__lead,
.sec--blue p { color: rgba(255,255,255,0.78); }
.sec--blue .sec__index { color: #fff; background: rgba(255,255,255,0.14); }

.sec__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.sec__index {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 18px;
  border: none;
}
.sec__lead {
  margin-top: 16px;
  color: var(--ink-70);
  font-size: 1.08rem;
}

.sec-divider,
.ticker { display: none; }

/* ---------------- Story / steps ---------------- */
.story-lab { padding: 80px 0; background: #fff; }
.story-lab__grid {
  display: grid;
  gap: 40px;
}
.story-lab__copy {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.story-lab__copy p {
  margin-top: 14px;
  color: var(--ink-70);
  font-size: 1.05rem;
}
.story-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.story-board__web { display: none; }

.story-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(15, 42, 92, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.story-card__num {
  display: inline-block;
  color: var(--blue);
  margin-bottom: 14px;
}
.story-card h3 { margin: 12px 0 8px; }
.story-card p { color: var(--ink-70); font-size: 0.95rem; }
.story-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 800;
}
.story-ico--scan,
.story-ico--code { background: rgba(26, 86, 219, 0.1); color: var(--blue); }
.story-ico--score { background: var(--green); color: #fff; }
.story-ico--score span { display: none; }
.story-ico--brief,
.story-ico--rank { background: rgba(126, 171, 245, 0.25); color: var(--blue); }
.story-ico--brief svg,
.story-ico--rank svg {
  width: 26px;
  height: 26px;
  display: block;
}
.story-ico--rank { background: rgba(34, 197, 94, 0.14); color: var(--green-dark); }
.story-ico--final {
  display: flex;
  gap: 4px;
  background: transparent;
  width: auto;
  height: auto;
}
.story-ico--final b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
}
.story-ico--final b:nth-child(2) { background: var(--blue); }
.story-ico--final b:nth-child(3) { background: var(--sky); color: var(--ink); }

.detail-steps {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-inline: auto;
}
.detail-step,
.ill-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 42, 92, 0.05);
  box-shadow: var(--shadow-sm);
}
.sec--ink .detail-step,
.detail-steps--light .detail-step {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.detail-step__num {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}
.sec--ink .detail-step__num {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green);
}
.ill-step__illus {
  width: 72px;
  height: 72px;
}
.ill-step__illus svg { width: 100%; height: 100%; }
.ill-step__content .detail-step__num { margin-bottom: 8px; }
.detail-step h3,
.ill-step h3 { margin-bottom: 8px; }
.detail-step p,
.ill-step p { color: var(--ink-70); }
.sec--ink .detail-step p { color: var(--white-55); }

.page-punch {
  text-align: center;
  margin-top: 40px;
  font-size: 1.15rem;
  font-weight: 600;
}
.page-note {
  text-align: center;
  margin-top: 28px;
  color: var(--white-55);
  font-size: 0.7rem !important;
}

/* ---------------- Score split ---------------- */
.score-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.score-split__col {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.score-split__col .mono { color: var(--sky); margin-bottom: 10px; display: inline-block; }
.score-split__col--rcv {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}
.score-split__neq {
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
}

/* ---------------- Connect ---------------- */
.connect__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}
.connect__node {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 42, 92, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.connect__node .mono {
  display: inline-block;
  margin: 12px 0 8px;
  color: var(--blue);
}
.connect__node p { color: var(--ink-70); font-size: 0.92rem; margin-top: 8px; }
.connect__ico {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
}
.connect__ico svg { width: 24px; height: 24px; }
.connect__arrow {
  display: grid;
  place-items: center;
  color: var(--sky);
  align-self: center;
  width: 40px;
}
.connect__arrow svg { width: 40px; height: 24px; }

/* ---------------- Info cards ---------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-grid--4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 42, 92, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); }
.info-card .mono {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
}
.info-card h3 { margin-bottom: 8px; }
.info-card p { color: var(--ink-70); font-size: 0.95rem; }
.sec--ink .info-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.sec--ink .info-card .mono { color: var(--sky); }
.sec--ink .info-card p { color: var(--white-55); }

.list-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-70);
}
.list-check li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.sec--blue .list-check li { color: rgba(255,255,255,0.85); }
.sec--blue .list-check li::before {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ---------------- Ledger ---------------- */
.ledger {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 42, 92, 0.06);
  box-shadow: var(--shadow);
}
.ledger__row {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.2fr;
  border-bottom: 1px solid rgba(15, 42, 92, 0.06);
}
.ledger__row:last-child { border-bottom: none; }
.ledger__row > span { padding: 18px 22px; font-size: 0.95rem; }
.ledger__row > span:first-child { font-weight: 700; border-right: 1px solid rgba(15, 42, 92, 0.06); }
.ledger__row > span:nth-child(2) { color: var(--ink-45); border-right: 1px solid rgba(15, 42, 92, 0.06); }
.ledger__row--head { background: var(--paper); }
.ledger__row--head .mono { font-weight: 600; color: var(--ink-45); padding: 14px 22px; }
.ledger__us {
  background: rgba(34, 197, 94, 0.08);
  font-weight: 700;
  position: relative;
}
.ledger__row--head .ledger__us { color: var(--green-dark) !important; background: rgba(34, 197, 94, 0.14); }
.ledger__old { text-decoration: line-through; opacity: 0.7; }
.ledger__instant {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 800;
}
.ledger__tally,
.ledger__hstamp { display: none; }
.ledger__row--tally {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--ink);
  color: #fff;
}
.ledger__verdict {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.ledger__seal {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.06em;
}
.ledger__wkflick { margin-right: 6px; color: var(--ink-45); }

/* ---------------- Beta / forms / tickets ---------------- */
.beta__shell {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.sec--blue .beta__shell { background: rgba(255,255,255,0.1); }

.beta__panel { display: none; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.beta__panel.is-active { display: grid; }

.beta__info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.beta__info > p { margin-bottom: 20px; }

.ticket {
  --tkr: 0.6deg;
  position: relative;
  margin: 18px 0 22px;
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  border: 1.5px dashed rgba(15, 42, 92, 0.18);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px) rotate(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.ticket--recruiter { --tkr: -0.4deg; }
.ticket.play { opacity: 1; transform: rotate(var(--tkr)); }
.ticket__head { margin-bottom: 14px; }
.ticket__meta { color: var(--blue); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.1em; }
.ticket__title {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.ticket__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 42, 92, 0.08);
  position: relative;
}
.ticket__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 197, 94, 0.06);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
}
.ticket__line.is-focus::after { opacity: 1; animation: ticketPulse 1.6s ease-in-out infinite; }
@keyframes ticketPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}
.ticket__label { grid-column: 1; color: var(--ink-45); font-size: 0.58rem !important; }
.ticket__value {
  grid-column: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.ticket__value:empty::before {
  content: "—";
  color: var(--ink-15);
}
.ticket__box {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(15, 42, 92, 0.18);
  display: grid;
  place-items: center;
}
.ticket__line.is-valid .ticket__box { border-color: var(--green); background: var(--green-soft); }
.ticket__tick {
  opacity: 0;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 800;
  transform: scale(0.4);
}
.ticket__line.is-valid .ticket__tick { animation: tickPop 0.35s var(--ease) forwards; }
@keyframes tickPop {
  to { opacity: 1; transform: scale(1); }
}
.ticket__seat {
  margin-top: 14px;
  color: var(--ink-45);
  font-size: 0.62rem !important;
}
.ticket__stampzone {
  position: relative;
  margin-top: 16px;
  min-height: 56px;
  display: grid;
  place-items: center;
}
.ticket__dash {
  position: absolute;
  inset: 0;
  border-top: 1.5px dashed rgba(15, 42, 92, 0.15);
  opacity: 0.5;
}
.ticket.is-armed .ticket__dash { animation: ticketBreathe 1.4s ease-in-out infinite; }
.ticket.is-stamped .ticket__dash { animation: none; opacity: 0.3; }
@keyframes ticketBreathe {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}
.ticket__pending {
  position: relative;
  color: var(--ink-45);
  font-size: 0.62rem !important;
  transition: opacity 0.3s;
}
.ticket.is-stamped .ticket__pending { opacity: 0; }
.ticket__stampwrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.ticket__stamp {
  opacity: 0;
  transform: scale(1.4) rotate(-8deg);
  padding: 8px 14px;
  border: 2.5px solid var(--green);
  border-radius: 10px;
  color: var(--green-dark);
  background: rgba(255,255,255,0.92);
  text-align: center;
}
.ticket__stamp b { display: block; font-weight: 900; font-size: 0.8rem; letter-spacing: 0.12em; line-height: 1.2; }
.ticket__stamp small { display: block; font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.16em; margin-top: 2px; }
.ticket.is-stamped .ticket__stamp { animation: stampHit 0.5s var(--ease) forwards; }
@keyframes stampHit {
  to { opacity: 1; transform: scale(1) rotate(-6deg); }
}
.ticket.is-wobble { animation: ticketWobble 0.5s var(--ease); }
@keyframes ticketWobble {
  0%, 100% { transform: rotate(var(--tkr)); }
  25% { transform: rotate(calc(var(--tkr) + 1.5deg)); }
  75% { transform: rotate(calc(var(--tkr) - 1.5deg)); }
}
.ticket.is-tilt {
  transform: rotate(calc(var(--tkr) - 3deg)) translateY(-4px);
  transition: transform 0.4s var(--ease);
}

.beta__form { display: flex; flex-direction: column; gap: 14px; }
.beta__form--human {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(126, 171, 245, 0.12);
  border: 1px solid rgba(126, 171, 245, 0.24);
}
.form-note--recruiter { border-color: rgba(34, 197, 94, 0.24); background: rgba(34, 197, 94, 0.1); }
.form-note__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}
.form-note--recruiter .form-note__icon { background: var(--green); }
.form-note b {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.form-note span:not(.form-note__icon) {
  display: block;
  color: var(--ink-70);
  font-size: 0.9rem;
  line-height: 1.45;
}

.beta__form--human label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(15, 42, 92, 0.06);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s, background 0.22s;
}
.beta__form--human label:focus-within {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(126, 171, 245, 0.5);
  box-shadow: var(--shadow-sm);
}
.form__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.form__label-row > span {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.form__label-row small {
  color: var(--ink-45);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}
.form__field { position: relative; display: block; }
.form__field::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(126, 171, 245, 0.14);
  transform: translateY(-50%);
  pointer-events: none;
  transition: background 0.2s, box-shadow 0.2s;
}
label:focus-within .form__field::before {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}
.form__field:has(textarea)::before { top: 22px; transform: none; }

.beta__form--human input,
.beta__form--human textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
  padding: 15px 16px 15px 36px;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.beta__form--human textarea { min-height: 132px; line-height: 1.5; resize: vertical; }
.beta__form--human input::placeholder,
.beta__form--human textarea::placeholder { color: rgba(15, 42, 92, 0.34); }
.beta__form--human input:focus,
.beta__form--human textarea:focus {
  border-color: rgba(126, 171, 245, 0.5);
  box-shadow: 0 0 0 4px rgba(126, 171, 245, 0.2);
}
.beta__form--human input.is-error,
.beta__form--human textarea.is-error {
  border-color: var(--neg);
  box-shadow: 0 0 0 4px rgba(59, 91, 154, 0.15);
}
.beta__form--human .btn { margin-top: 2px; }
.beta__form--human .btn:disabled { cursor: wait; opacity: 0.88; }
.beta__fine { text-align: center; color: var(--ink-45); font-size: 0.62rem !important; }

.btn__dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.btn__dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  animation: dotPulse 0.9s infinite ease-in-out;
}
.btn__dots i:nth-child(2) { animation-delay: 0.12s; }
.btn__dots i:nth-child(3) { animation-delay: 0.24s; }
@keyframes dotPulse {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}

.beta__error {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(59, 91, 154, 0.1);
  color: var(--neg);
  text-align: center;
}
.beta__success {
  text-align: center;
  padding: 32px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.beta__success .tick-big {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
}
.beta__success h4 { font-size: 1.3rem; font-weight: 800; }
.beta__success p { color: var(--ink-70); max-width: 40ch; }

.calendar-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.calendar-card h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.calendar-card > p { color: var(--ink-70); margin-bottom: 16px; }
.calendar-card__embed {
  min-height: 620px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
}

/* ---------------- Finale / footer ---------------- */
.finale {
  position: relative;
  padding: 120px 0 100px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
}
.finale--action { min-height: 0; display: block; }
.finale h2 { color: var(--ink); max-width: 16ch; margin-inline: auto; }
.finale h2 em { color: var(--blue); }
.finale .sec__index,
.finale .pill { margin-bottom: 18px; }
.finale p {
  color: var(--ink-70);
  max-width: 48ch;
  margin: 16px auto 32px;
  font-size: 1.05rem;
}
.finale__cta { justify-content: center; }
.finale__inner { text-align: center; position: relative; z-index: 2; }

.finale__orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.finale__orbits .orbit-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.finale__orbits .orbit-web line {
  stroke: rgba(126, 171, 245, 0.55);
  stroke-width: 2;
  stroke-linecap: round;
}
.finale__orbits .orbit-web circle {
  fill: rgba(126, 171, 245, 0.75);
}
.finale__orbits .orbit-circle {
  position: absolute;
  border: none;
  background: transparent;
  box-shadow: 0 12px 28px rgba(15, 42, 92, 0.14);
  animation: none;
  transform: none;
  z-index: 2;
}
.finale__orbits .orbit-circle svg {
  width: 100%;
  height: 100%;
}
.finale__orbits .orbit-circle--1 { width: 96px; height: 96px; left: 8%; top: 18%; }
.finale__orbits .orbit-circle--2 { width: 72px; height: 72px; right: 12%; top: 14%; }
.finale__orbits .orbit-circle--3 { width: 84px; height: 84px; left: 14%; bottom: 16%; }
.finale__orbits .orbit-circle--4 { width: 110px; height: 110px; right: 8%; bottom: 18%; }
.finale__orbits .orbit-circle--5 { width: 64px; height: 64px; left: 42%; top: 8%; }
.finale__orbits .orbit-circle--6 { width: 70px; height: 70px; right: 38%; bottom: 10%; }

.footer {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(15, 42, 92, 0.06);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  margin-top: 14px;
  max-width: 32ch;
  font-size: 0.95rem;
  color: var(--ink-70);
}
.footer__brand .nav__brand { color: var(--ink); text-transform: uppercase; }
.footer__brand .nav__brand img { width: 36px; height: 36px; border-radius: 10px; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__contact a:hover .btn-icon { border-color: var(--ink); transform: rotate(8deg); }
.footer__links { display: contents; }
.footer__links > div { display: flex; flex-direction: column; }
.footer__links h4 {
  color: var(--ink-45);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.7rem;
}
.footer__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 0;
}
.footer__links a:hover { color: var(--blue); }
.footer__bar {
  border-top: 1px solid rgba(15, 42, 92, 0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bar p { color: var(--ink-45); font-size: 0.62rem !important; }
.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__top .btn-icon { width: 36px; height: 36px; }

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .finale__orbits .orbit-circle--5,
  .finale__orbits .orbit-circle--6 { display: none; }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(15, 42, 92, 0.06);
  box-shadow: 0 -8px 24px rgba(15, 42, 92, 0.08);
  display: none;
}
.sticky-cta .btn { display: flex; width: 100%; }
.sticky-cta.is-visible { display: block; animation: slideUp 0.35s var(--ease); }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ---------------- Reveal + polish ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.gate-page .reveal:nth-child(1) { transition-delay: 0.05s; }
.gate-page .reveal:nth-child(2) { transition-delay: 0.12s; }
.gate-page .reveal:nth-child(3) { transition-delay: 0.2s; }
.gate-page .reveal:nth-child(4) { transition-delay: 0.28s; }
.gate-page .reveal:nth-child(5) { transition-delay: 0.36s; }
.gate-page .reveal:nth-child(6) { transition-delay: 0.44s; }

.inkpress { overflow: hidden; }
.inkpress::after {
  content: "";
  position: absolute;
  left: var(--px, 50%);
  top: var(--py, 50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  opacity: 0;
}
.inkpress.is-pressing::after { animation: inkpressRing 0.35s ease-out forwards; }
@keyframes inkpressRing {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(28); }
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq__answer > div { overflow: hidden; }
.faq__answer.is-open { grid-template-rows: 1fr; }

.spine,
.spine-progress,
.spine-watermark { display: none !important; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1040px) {
  .worlds { grid-template-columns: 1fr; max-width: 480px; }
  .world { min-height: 280px; }
  .story-board { grid-template-columns: 1fr; }
  .connect__flow { grid-template-columns: 1fr; }
  .connect__arrow { transform: rotate(90deg); margin: 4px auto; }
  .info-grid,
  .info-grid--4,
  .impact-grid { grid-template-columns: 1fr; }
  .beta__panel.is-active { grid-template-columns: 1fr; }
  .score-split { grid-template-columns: 1fr; }
  .score-split__neq { padding: 8px 0; }
}

@media (max-width: 880px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .gate-strip { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .sec { padding: 72px 0; }
  .page-hero { padding: 48px 0 24px; }
  .gate__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero__cta .btn,
  .cta-row .btn { width: 100%; }
  .cta-row { justify-content: stretch; }
  .cta-link { width: 100%; justify-content: center; }
  .ledger__row { grid-template-columns: 1fr; }
  .ledger__row > span { border-right: none !important; padding: 10px 16px; }
  .ledger__row > span:first-child { padding-top: 16px; }
  .ledger__row > span:last-child { padding-bottom: 16px; }
  .ledger__row--head { display: none; }
  .ledger__row > span:nth-child(2)::before {
    content: "OLD WAY — ";
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--ink-45);
  }
  .ledger__us::before {
    content: "RIGHTCV — ";
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--green-dark);
  }
  .beta__shell { padding: 16px; }
  .beta__form--human { padding: 16px; }
  .form__label-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .form__label-row small { white-space: normal; }
  .calendar-card { padding: 20px 12px; }
  .calendar-card__embed { min-height: 850px; }
  .detail-step,
  .ill-step { grid-template-columns: 1fr; }
  .ill-step__illus { width: 64px; height: 64px; }
  .hero-orbits { height: 240px; }
  .orbit-circle--5,
  .orbit-circle--6 { display: none; }
  .footer__links { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .inkpress::after { content: none; }
  .ticket.play { opacity: 1; transform: none; }
}
