/* ═══════════════════════════════════════════════════════════════════
   KANMITO — Design System & Landing Page Styles
   Aesthetic: Topology VC (dark authority) × ISO Meet (functional glass)
   Approach: Mobile-first, CSS-only animations, no frameworks
   ═══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────
   0. DESIGN TOKENS
   ──────────────────────────────── */
:root {
  /* Backgrounds — never pure black */
  --bg-void: #050505;
  --bg-surface: #0A0A0C;
  --bg-elevated: #111114;
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.10);

  /* Text — never pure white */
  --text-primary: #E8E8E8;
  --text-secondary: #888888;
  --text-tertiary: #555555;

  /* Accent — used sparingly, max 3 elements */
  --accent-gold: #D4AF37;
  --accent-gold-dim: rgba(212, 175, 55, 0.15);
  --accent-gold-glow: rgba(212, 175, 55, 0.08);

  /* Spacing — generous = premium */
  --space-section: 120px;
  --space-block: 64px;
  --space-element: 24px;
  --space-inline: 16px;
  --page-margin: 20px;

  /* Typography */
  --font-heading: 'Inter', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Landing redesign foundation tokens - staged for upcoming batches */
  --lp-bg: #FAFBF8;
  --lp-bg-soft: #F3F7F1;
  --lp-surface: #FFFFFF;
  --lp-surface-soft: #F7FAF5;
  --lp-border: #DDE7DF;
  --lp-border-strong: #C9D8CD;
  --lp-text: #16201B;
  --lp-text-muted: #66746B;
  --lp-text-soft: #8A968E;
  --lp-trust: #2FA766;
  --lp-trust-soft: #EAF7EF;
  --lp-blue: #3B8EDB;
  --lp-blue-soft: #EEF6FF;
  --lp-amber: #C9852B;
  --lp-amber-soft: #FFF4E3;
  --lp-prism-coral: #F2A0A8;
  --lp-prism-violet: #BDA7FF;
  --lp-prism-cyan: #67D8F4;
  --lp-radius-sm: 8px;
  --lp-radius-md: 14px;
  --lp-radius-lg: 22px;
  --lp-radius-pill: 999px;
  --lp-width-page: 1120px;
  --lp-width-reading: 720px;
  --lp-shadow-soft: 0 18px 50px rgba(22, 32, 27, 0.08);
  --lp-shadow-lift: 0 24px 70px rgba(22, 32, 27, 0.12);
  --lp-motion-fast: 160ms;
  --lp-motion-base: 280ms;
  --lp-motion-soft: 480ms;
  --lp-motion-section: 650ms;
  --lp-motion-path: 1100ms;
  --lp-ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --space-section: 200px;
    --space-block: 100px;
    --space-element: 32px;
    --space-inline: 20px;
    --page-margin: clamp(40px, 5vw, 120px);
  }
}


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

html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-void);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}


/* ────────────────────────────────
   2. UTILITY CLASSES
   ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-element);
}

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Landing redesign foundation primitives - unused until the batched rebuild reaches each section */
.lp-shell {
  width: min(100% - 40px, var(--lp-width-page));
  margin-inline: auto;
}

.lp-reading {
  max-width: var(--lp-width-reading);
}

.lp-section {
  position: relative;
  padding-block: clamp(56px, 9vw, 112px);
}

.lp-grid {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
}

.lp-grid--two {
  grid-template-columns: 1fr;
}

.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-soft);
}

.lp-focus-ring:focus-visible,
.lp-card:focus-within {
  outline: 3px solid rgba(47, 167, 102, 0.28);
  outline-offset: 3px;
}

.lp-motion-reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--lp-motion-section) var(--lp-ease-enter),
    transform var(--lp-motion-section) var(--lp-ease-enter);
}

.lp-motion-reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-progress] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--lp-prism-cyan), var(--lp-trust), var(--lp-prism-coral));
}

@media (min-width: 768px) {
  .lp-grid--two {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}


/* ────────────────────────────────
   2.5 MENU / BRAND
   ──────────────────────────────── */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 28px), 980px);
  padding: 8px 9px;
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--lp-radius-pill);
  box-shadow: 0 16px 46px rgba(22, 32, 27, 0.1);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  transform: translateX(-50%);
  animation: navIn var(--lp-motion-soft) var(--lp-ease-enter) 80ms both;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--lp-text);
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: var(--lp-radius-pill);
}

.header__brand::before {
  content: '';
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #FFFFFF 0 22%, transparent 24%),
    conic-gradient(from 0deg, var(--lp-trust), var(--lp-prism-cyan), var(--lp-trust), var(--lp-prism-coral), var(--lp-trust));
  box-shadow: 0 0 0 5px rgba(47, 167, 102, 0.09);
}

.header__brand:focus-visible,
.header__nav a:focus-visible,
.header__cta:focus-visible,
.hero__primary-cta:focus-visible,
.hero__secondary-cta:focus-visible {
  outline: 3px solid rgba(47, 167, 102, 0.28);
  outline-offset: 3px;
}

.header__nav {
  display: none;
  justify-content: center;
  gap: 4px;
  color: var(--lp-text-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.header__nav a,
.header__cta {
  border-radius: var(--lp-radius-pill);
  transition:
    color var(--lp-motion-base) var(--lp-ease-standard),
    background var(--lp-motion-base) var(--lp-ease-standard),
    transform var(--lp-motion-fast) var(--lp-ease-standard);
}

.header__nav a {
  padding: 8px 11px;
}

.header__nav a:hover {
  color: var(--lp-text);
  background: rgba(47, 167, 102, 0.08);
}

.header__cta {
  justify-self: end;
  padding: 9px 15px;
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(221, 231, 223, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.header__cta:hover {
  transform: translateY(-1px);
  color: #FFFFFF;
  background: var(--lp-text);
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


/* ────────────────────────────────
   3. SECTION 1 — THE HERO
   ──────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(103, 216, 244, 0.18), transparent 32%),
    radial-gradient(circle at 78% 35%, rgba(242, 160, 168, 0.11), transparent 30%),
    linear-gradient(180deg, #F7FBF8 0%, #FFFFFF 86%);
  color: var(--lp-text);
  contain: layout paint;
}

.hero--landing {
  display: block;
  padding: 0 0 22px;
}

.hero__image-container {
  position: relative;
  width: 100%;
  height: clamp(340px, 86vw, 430px);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 30px 88px rgba(22, 32, 27, 0.1);
  isolation: isolate;
  animation: heroArtIn var(--lp-motion-section) var(--lp-ease-enter) both;
}

.hero__image-container picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 43%;
  opacity: 1;
  transform: none;
  filter: saturate(1.04) brightness(1.04);
  animation: heroBreath 9s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  from {
    filter: saturate(1.03) brightness(1.035);
  }

  to {
    filter: saturate(1.08) brightness(1.065);
  }
}

.hero__image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.62) 76%, #FFFFFF 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__light-path {
  position: absolute;
  z-index: 2;
  width: 36%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(103, 216, 244, 0.88), rgba(242, 160, 168, 0.68), transparent);
  box-shadow: 0 0 20px rgba(103, 216, 244, 0.4);
  opacity: 0.42;
  animation: pathShimmer 7s ease-in-out infinite;
}

.hero__light-path--one {
  right: 13%;
  bottom: 34%;
  transform: rotate(-18deg);
}

.hero__light-path--two {
  left: 17%;
  bottom: 24%;
  transform: rotate(14deg);
  animation-delay: 1.8s;
}

@keyframes pathShimmer {
  0%,
  100% {
    opacity: 0.2;
    filter: saturate(0.8);
  }

  50% {
    opacity: 0.62;
    filter: saturate(1.2);
  }
}

@keyframes heroArtIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: -106px auto 0;
  padding: 0 20px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 13px;
  color: #318062;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(221, 231, 223, 0.9);
  border-radius: var(--lp-radius-pill);
  box-shadow: 0 10px 30px rgba(22, 32, 27, 0.06);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-trust);
  box-shadow: 0 0 0 5px rgba(47, 167, 102, 0.12);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.12rem, 8.4vw, 4.75rem);
  letter-spacing: 0;
  line-height: 1.03;
  color: var(--lp-text);
  max-width: 780px;
  margin: 0 auto 12px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.98rem, 2.1vw, 1.14rem);
  line-height: 1.48;
  color: var(--lp-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.hero__primary-cta,
.hero__secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 15px 30px;
  border-radius: var(--lp-radius-pill);
  font-weight: 700;
  transition:
    transform var(--lp-motion-fast) var(--lp-ease-standard),
    box-shadow var(--lp-motion-base) var(--lp-ease-standard),
    background var(--lp-motion-base) var(--lp-ease-standard);
}

.hero__primary-cta {
  color: #FFFFFF;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, #6AB89D, #3F9E80);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 36px rgba(47, 167, 102, 0.24);
}

.hero__primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(22, 32, 27, 0.22);
}

.hero__primary-cta:hover svg {
  transform: translateX(2px);
}

.hero__primary-cta svg {
  transition: transform var(--lp-motion-fast) var(--lp-ease-standard);
}

.hero__secondary-cta {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--lp-border);
}

.hero__secondary-cta:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: var(--lp-shadow-soft);
}

.hero__primary-cta:active,
.hero__secondary-cta:active,
.header__cta:active {
  transform: scale(0.98);
}

.hero__micro-note {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--lp-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding: 0 20px 56px;
  background: #FFFFFF;
  color: var(--lp-text);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, var(--lp-width-page));
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 231, 223, 0.76);
  border-radius: 28px;
  box-shadow: 0 20px 64px rgba(22, 32, 27, 0.07);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 11px;
  color: var(--lp-text);
  background: transparent;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--lp-trust);
  background: var(--lp-trust-soft);
  border-radius: 50%;
}

.trust-chip__icon--blue {
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
}

.trust-chip__icon--amber {
  color: var(--lp-amber);
  background: var(--lp-amber-soft);
}

.hero__content[data-reveal] {
  transition-delay: 120ms;
}

.trust-chip:nth-child(1) {
  transition-delay: 0ms;
}

.trust-chip:nth-child(2) {
  transition-delay: 80ms;
}

.trust-chip:nth-child(3) {
  transition-delay: 160ms;
}

.trust-chip:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 420px) {
  .hero--landing {
    padding-bottom: 18px;
  }

  .hero__image-container {
    height: clamp(330px, 88vw, 370px);
    border-radius: 0 0 34px 34px;
  }

  .hero__image {
    object-position: center 43%;
  }

  .hero__eyebrow {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: clamp(1.92rem, 8.6vw, 2.2rem);
    line-height: 1.06;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    max-width: 340px;
    font-size: 0.9rem;
    line-height: 1.43;
  }

  .hero__actions {
    margin-top: 16px;
  }

  .hero__primary-cta,
  .hero__secondary-cta {
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
  }

  .hero__primary-cta {
    width: min(100%, 310px);
    justify-content: center;
  }

  .hero__secondary-cta {
    flex: 0 0 auto;
  }

  .hero__micro-note {
    margin-top: 10px;
    max-width: 320px;
    font-size: 0.78rem;
    line-height: 1.44;
  }

  .trust-strip {
    padding: 2px 16px 144px;
  }

  .trust-strip__inner {
    gap: 4px;
    padding: 8px;
    border-radius: 24px;
  }

  .trust-chip {
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 9px 8px;
    border-radius: 18px;
    font-size: 0.77rem;
    line-height: 1.24;
  }

  .trust-chip__icon {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 560px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .header {
    top: 18px;
    width: min(calc(100% - 80px), 980px);
    padding: 10px 12px;
  }

  .header__nav {
    display: flex;
  }

  .header__cta {
    padding-inline: 18px;
  }

  .hero--landing {
    min-height: 0;
    padding-bottom: 26px;
  }

  .hero__image-container {
    width: min(calc(100% - 56px), 1120px);
    height: clamp(480px, 44vw, 560px);
    border-radius: 0 0 52px 52px;
  }

  .hero__image {
    object-position: center 44%;
  }

  .hero__content {
    max-width: 920px;
    margin-top: -292px;
    text-align: center;
  }

  .hero__title {
    max-width: 920px;
  }

  .hero__subtitle {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__micro-note {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    margin-top: -6px;
    padding-bottom: 64px;
  }

  .trust-chip {
    min-height: 64px;
    padding: 14px;
    font-size: 0.9rem;
  }
}


/* ────────────────────────────────
   4. SECTION 2 — SCROLL VIDEO
   ──────────────────────────────── */
.video-section {
  position: relative;
  background: var(--bg-void);
}

.video-section__scroll-track {
  height: 350vh;
  position: relative;
}

.video-section__sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  /* Allow the container to grow if content demands it, preventing cutoffs */
}

.video-section__media {
  position: relative;
  flex: 1 1 60%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-void);
}

.video-section__canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Shows 100% of the frame, letterboxing blends smoothly into black bg */
  will-change: transform;
}

.video-section__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-void);
  z-index: 2;
  transition: opacity 0.8s var(--ease-smooth);
}

.video-section__loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-section__loading-content {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.video-section__loading-ring {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Text strip below video */
.video-section__text-strip {
  flex: 0 0 auto;
  position: relative;
  padding: 28px var(--page-margin) 36px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: grid;
  align-items: start;
}

.video-section__phase {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  pointer-events: none;
}

.video-section__phase.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-section__phase-number {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.video-section__phase-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.video-section__phase-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 420px;
}

.video-section__phase-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.video-section__phase-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.video-section__phase-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.7;
}


/* ────────────────────────────────
   5. SECTION 3 — DUAL MARKETPLACE
   ──────────────────────────────── */
.marketplace {
  padding: var(--space-section) 0;
  background: var(--bg-void);
}

.marketplace__container {
  padding: 0 var(--page-margin);
  max-width: 1100px;
  margin: 0 auto;
}

.marketplace__header {
  margin-bottom: var(--space-block);
}

.marketplace__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
}

.marketplace__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .marketplace__cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* Glassmorphism Card */
.card-glass {
  display: flex;
  flex-direction: column;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 36px 28px;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card-glass:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 80px rgba(0, 0, 0, 0.5);
}

/* Backdrop-filter fallback */
@supports not (backdrop-filter: blur(1px)) {
  .card-glass {
    background: rgba(17, 17, 20, 0.95);
  }
}

.card-glass__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.card-glass__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.card-glass__list {
  margin-bottom: 28px;
}

.card-glass__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.card-glass__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.card-glass__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  padding: 10px 20px;
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  background: transparent;
  margin-top: auto;
}

.card-glass__cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-glass__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.card-glass__cta:hover svg {
  transform: translateX(3px);
}


/* ────────────────────────────────
   5.5 SECTION 3.5 — EARNINGS CALCULATOR (Interactive Slider)
   ──────────────────────────────── */
.earnings {
  padding: var(--space-section) 0;
  background: var(--bg-void);
}

.earnings__container {
  padding: 0 var(--page-margin);
  max-width: 800px;
  margin: 0 auto;
}

.earnings__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.earnings__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-block);
  line-height: 1.5;
}

.earnings__calculator {
  padding: 40px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
}

.earnings__slider-wrap {
  margin-bottom: 40px;
}

.earnings__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-gold) 0%, var(--border-subtle) 0%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.earnings__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-void);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  cursor: grab;
  transition: box-shadow 0.2s var(--ease-out);
}

.earnings__slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.earnings__slider::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.earnings__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-void);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  cursor: grab;
}

.earnings__slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.earnings__result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.earnings__views-display,
.earnings__payout-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.earnings__result-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.earnings__result-value {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.earnings__highlight {
  color: var(--accent-gold);
  font-weight: 400;
}

.earnings__footnote {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
}


/* ────────────────────────────────
   6. SECTION 4 — WAITLIST CTA (Command Center)
   ──────────────────────────────── */
.waitlist {
  position: relative;
  background: var(--bg-void);
  z-index: 10;
}

.waitlist__container {
  padding: 120px var(--page-margin);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.waitlist__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  /* Massive typography */
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: left;
  /* Terminal aesthetic */
}

.waitlist__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 500px;
  text-align: left;
}

.waitlist__you-highlight {
  color: var(--accent-gold);
  font-weight: 500;
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.waitlist__inline-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Segmented Toggle (Command Center block) */
.waitlist__toggle {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 6px;
  width: 100%;
  max-width: 400px;
}

.waitlist__toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.waitlist__toggle-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-tertiary);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s var(--ease-out);
  z-index: 1;
  position: relative;
  user-select: none;
}

.waitlist__toggle-input:checked+.waitlist__toggle-label {
  color: var(--bg-void);
}

/* ────────────────────────────────
   UI FLOURISH: TOPOLOGY-STYLE CORNERS
   ──────────────────────────────── */
.corner-brackets {
  position: relative;
}

.corner-brackets::before,
.corner-brackets::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 5;
}

.corner-brackets::before {
  top: -4px;
  left: -4px;
  border-top: 1px solid var(--text-tertiary);
  border-left: 1px solid var(--text-tertiary);
}

.corner-brackets::after {
  bottom: -4px;
  right: -4px;
  border-bottom: 1px solid var(--text-tertiary);
  border-right: 1px solid var(--text-tertiary);
}

.waitlist__toggle-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: var(--text-primary);
  border-radius: 4px;
  transition: transform 0.35s var(--ease-smooth);
  z-index: 0;
}

.waitlist__toggle[data-active="clipper"] .waitlist__toggle-slider {
  transform: translateX(100%);
}

/* Email Input */
.waitlist__input-wrap {
  width: 100%;
  flex: 1;
}

.waitlist__input {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border-glass);
  border-radius: 4px;
  /* Flatter, terminal feel */
  outline: none;
  caret-color: var(--accent-gold);
  /* Gold native caret that tracks text */
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.waitlist__input::placeholder {
  color: var(--text-tertiary);
}

.waitlist__input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: var(--accent-gold);
}

/* Submit Button */
.waitlist__submit {
  width: 100%;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg-void);
  background: var(--text-primary);
  /* Striking white */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
  white-space: nowrap;
}

.waitlist__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.waitlist__submit:active {
  transform: translateY(0);
}

/* Social Proof */
.waitlist__proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.waitlist__proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34C759;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}


/* ────────────────────────────────
   7. SECTION 5 — PHILOSOPHY
   ──────────────────────────────── */
.philosophy {
  padding: var(--space-section) 0;
  padding-bottom: calc(var(--space-section) * 0.7);
  background: var(--bg-void);
}

.philosophy__container {
  padding: 0 var(--page-margin);
  max-width: 800px;
  margin: 0 auto;
}

.philosophy__word {
  margin-bottom: 12px;
  overflow: hidden;
}

.philosophy__word-main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(4rem, 16vw, 9rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--text-primary);
}

.philosophy__word-meaning {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  text-shadow: 0 0 20px var(--accent-gold-glow);
  margin-top: 4px;
  margin-left: 4px;
}

.philosophy__word--mito {
  margin-bottom: var(--space-block);
}

.philosophy__body {
  max-width: 520px;
}

.philosophy__body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.philosophy__body p:last-child {
  margin-bottom: 0;
}


/* ────────────────────────────────
   8. FOOTER
   ──────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-void);
}

.footer__container {
  padding: 0 var(--page-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

/* Premium Topology Link Hover Effect */
.link-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 0.1875rem;
  margin-bottom: -0.1875rem;
}

.link-hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-secondary);
  transform: translate(-101%);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.link-hover:hover::before,
.link-hover.active::before {
  transform: translate(0);
}

.footer__social-link {
  color: var(--text-tertiary);
  transition: color 0.3s var(--ease-out);
  display: flex;
  align-items: center;
}

.footer__social-link:hover {
  color: var(--text-primary);
}


/* ────────────────────────────────
   9. DESKTOP ENHANCEMENTS
   ──────────────────────────────── */
@media (min-width: 768px) {
  .hero__content {
    bottom: auto;
    left: auto;
  }

  .hero__title {
    font-size: clamp(2.75rem, 5vw, 4.2rem);
  }

  .hero__subtitle {
    max-width: 560px;
  }

  .video-section__text-strip {
    padding: 28px var(--page-margin) 36px;
    min-height: 240px;
  }

  .video-section__phase-title {
    font-size: 2.2rem;
  }

  .waitlist__container {
    padding: 160px var(--page-margin);
  }

  .waitlist__inline-group {
    flex-direction: row;
    align-items: stretch;
  }

  .waitlist__submit {
    width: auto;
    padding: 18px 48px;
  }

  .philosophy__word--mito {
    text-align: right;
  }

  .philosophy__word--mito .philosophy__word-meaning {
    margin-left: auto;
    margin-right: 4px;
    text-align: right;
  }

  .philosophy__body {
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  .video-section__sticky {
    flex-direction: row;
    height: 100dvh;
    /* Reset to strict height on desktop for side-by-side */
    overflow: hidden;
  }

  .video-section__media {
    flex: 1 1 60%;
  }

  .video-section__text-strip {
    flex: 0 0 40%;
    border-top: none;
    border-left: 1px solid var(--border-subtle);
    padding: 0 48px;
    align-items: center;
  }

  .video-section__phase {
    transform: translateY(12px);
  }

  .video-section__phase.is-active {
    transform: translateY(0);
  }

  .video-section__phase-body {
    max-width: 480px;
  }
}

/* ────────────────────────────────
   10. PERFORMANCE: content-visibility
   ──────────────────────────────── */
.marketplace,
.waitlist,
.philosophy,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}


/* ────────────────────────────────
   11. SMOOTH PAGE TRANSITION
   ──────────────────────────────── */
body {
  opacity: 0;
  animation: fadeInPage 0.6s var(--ease-out) 0.1s forwards;
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

/* ────────────────────────────────
   12. FULL CLIPPER-FIRST LANDING BUILD
   ──────────────────────────────── */
body {
  color: var(--lp-text);
  background: #FFFFFF;
}

.landing-main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 15% 4%, rgba(103, 216, 244, 0.12), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBF6 40%, #FFFFFF 100%);
}

.lp-section {
  position: relative;
  overflow: clip;
  padding: 58px 18px;
  color: var(--lp-text);
  scroll-margin-top: 96px;
}

#hero,
.trust-strip {
  scroll-margin-top: 96px;
}

.lp-section__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--lp-width-page));
  margin: 0 auto;
}

.lp-section__inner--split {
  display: grid;
  gap: 24px;
}

.lp-section__header {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.lp-section__header--compact {
  margin-bottom: 20px;
}

.lp-section__header h2,
.final-cta h2,
.operator-note h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 7vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: var(--lp-text);
}

.lp-section__header p:not(.lp-section__label),
.final-cta p,
.operator-note p,
.payment-card__note {
  color: var(--lp-text-muted);
  line-height: 1.52;
}

.lp-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #318062;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-section__label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-trust);
  box-shadow: 0 0 0 5px rgba(47, 167, 102, 0.11);
}

.lp-section__atmosphere {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.95);
  pointer-events: none;
}

.lp-section__atmosphere--process {
  top: 8%;
  bottom: auto;
  opacity: 0.12;
}

.lp-section__atmosphere--payment {
  top: 18%;
  bottom: auto;
  opacity: 0.22;
}

.lp-section__atmosphere--rules,
.lp-section__atmosphere--operator {
  top: 0;
  bottom: auto;
  opacity: 0.12;
}

.work-path {
  position: relative;
  display: grid;
  gap: 14px;
}

.work-path__line {
  display: none;
}

.work-card,
.rules-panel,
.payment-card,
.journey-card,
.operator-panel,
.faq-item,
.final-cta {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 231, 223, 0.82);
  box-shadow: 0 18px 54px rgba(22, 32, 27, 0.07);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
}

.work-card {
  position: relative;
  min-height: 174px;
  padding: 18px;
  border-radius: 24px;
}

.work-card::before {
  content: '';
  position: absolute;
  left: 34px;
  top: -14px;
  width: 2px;
  height: 28px;
  background: linear-gradient(var(--lp-prism-cyan), var(--lp-prism-coral));
}

.work-card:first-of-type::before {
  display: none;
}

.work-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: #FFFFFF;
  background: #5DAF90;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.work-card__icon {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--lp-trust);
  background: var(--lp-trust-soft);
  border-radius: 18px;
}

.work-card__icon--blue {
  color: var(--lp-blue);
  background: var(--lp-blue-soft);
}

.work-card__icon--violet {
  color: #8067D8;
  background: #F2EEFF;
}

.work-card h3,
.flow-item h3,
.journey-card h3,
.rules-panel h3 {
  color: var(--lp-text);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.work-card p,
.flow-item p,
.journey-card p {
  color: var(--lp-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lp-section--flow {
  padding-top: 40px;
}

.flow-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  list-style: none;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 21px;
  width: 2px;
  background: linear-gradient(180deg, var(--lp-trust), var(--lp-prism-cyan), var(--lp-prism-violet), var(--lp-amber));
  opacity: 0.55;
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(221, 231, 223, 0.7);
  border-radius: 20px;
}

.flow-item__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #62B996, #88CFF1);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(47, 167, 102, 0.18);
  font-weight: 700;
}

.payment-compare {
  position: relative;
  display: grid;
  gap: 14px;
}

.payment-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
}

.payment-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 11px;
  color: var(--lp-text-muted);
  background: #EEF1ED;
  border-radius: var(--lp-radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.payment-card__label {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
}

.payment-card__rate {
  display: block;
  margin-top: 4px;
  color: var(--lp-text);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 12vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.payment-card__unit {
  display: block;
  margin-top: 5px;
  color: var(--lp-text);
  font-size: 1rem;
  font-weight: 600;
}

.payment-card ul,
.rule-list,
.operator-checks {
  list-style: none;
}

.payment-card ul {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--lp-text-muted);
  font-size: 0.9rem;
}

.payment-card li,
.rule-list li,
.operator-checks li {
  position: relative;
  padding-left: 26px;
}

.payment-card li::before,
.rule-list li::before,
.operator-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lp-trust-soft);
  box-shadow: inset 0 0 0 4px var(--lp-trust);
}

.payment-card--kanmito {
  border-color: rgba(103, 216, 244, 0.62);
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 160, 168, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(103, 216, 244, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 255, 251, 0.88));
}

.payment-card--kanmito::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.52) 45%, transparent 58%);
  transform: translateX(-110%);
  animation: prismSweep 3.8s var(--lp-ease-enter) 0.8s 1 both;
}

.payment-card--kanmito .payment-card__tag,
.payment-card__pill {
  color: #FFFFFF;
  background: #4DAA87;
}

.payment-card__pill {
  display: inline-flex;
  margin: 18px 0 12px;
  padding: 9px 13px;
  border-radius: var(--lp-radius-pill);
  font-weight: 700;
}

.payment-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 46px;
  height: 46px;
  color: var(--lp-text-muted);
  background: #FFFFFF;
  border: 1px solid var(--lp-border);
  border-radius: 50%;
  box-shadow: var(--lp-shadow-soft);
  font-weight: 700;
}

@keyframes prismSweep {
  to {
    transform: translateX(110%);
  }
}

.journey-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.journey-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
}

.journey-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #62B996, #88CFF1);
  border-radius: 50%;
  font-weight: 700;
}

.rules-grid {
  display: grid;
  gap: 14px;
}

.rules-panel {
  min-height: 280px;
  padding: 22px;
  border-radius: 28px;
}

.rules-panel--counts {
  background:
    radial-gradient(circle at 92% 88%, rgba(47, 167, 102, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.9);
}

.rules-panel--rejects {
  background:
    radial-gradient(circle at 90% 88%, rgba(201, 133, 43, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.9);
}

.rule-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  color: var(--lp-text-muted);
  line-height: 1.4;
}

.rules-panel--rejects .rule-list li::before {
  background: var(--lp-amber-soft);
  box-shadow: inset 0 0 0 4px var(--lp-amber);
}

.operator-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 30px;
}

.operator-note {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: start;
}

.operator-note__mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #FFFFFF 0 17%, transparent 18%),
    conic-gradient(from 0deg, #62B996, #88CFF1, #62B996, #F2A0A8, #62B996);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.56), 0 18px 44px rgba(47, 167, 102, 0.17);
}

.operator-checks {
  display: grid;
  gap: 10px;
  color: var(--lp-text-muted);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 860px);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 17px 18px;
  color: var(--lp-text);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  color: var(--lp-trust);
  background: var(--lp-trust-soft);
  border-radius: 50%;
}

.faq-item button[aria-expanded='true']::after {
  content: '-';
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(47, 167, 102, 0.28);
  outline-offset: -4px;
}

.faq-item__panel {
  padding: 0 18px 18px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

.lp-section--final-cta {
  padding-top: 34px;
}

.final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(100%, var(--lp-width-page));
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
  border-radius: 32px;
}

.final-cta__image {
  position: absolute;
  inset: 34px 18px auto;
  width: calc(100% - 36px);
  height: calc(100% - 68px);
  object-fit: cover;
  opacity: 0.32;
  border-radius: 32px;
  pointer-events: none;
}

.final-cta__button {
  width: max-content;
}

.footer {
  padding: 24px 18px 32px;
  color: var(--lp-text-muted);
  background: #FFFFFF;
  border-top: 1px solid rgba(221, 231, 223, 0.72);
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.footer__container {
  width: min(100%, var(--lp-width-page));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  color: var(--lp-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer__copy {
  color: var(--lp-text-muted);
  font-size: 0.82rem;
}

@media (min-width: 720px) {
  .lp-section {
    padding: 78px 40px;
  }

  .lp-section__inner--split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .lp-section__header--sticky {
    position: sticky;
    top: 116px;
    text-align: left;
    margin: 0;
  }

  .work-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-top: 32px;
  }

  .work-path__line {
    position: absolute;
    inset: 0 4%;
    display: block;
    width: 92%;
    height: 170px;
    pointer-events: none;
    z-index: 0;
  }

  .work-path__line path {
    fill: none;
    stroke: rgba(103, 216, 244, 0.55);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 980;
    stroke-dashoffset: 980;
    animation: pathDraw var(--lp-motion-path) var(--lp-ease-enter) 0.4s forwards;
  }

  .work-card {
    z-index: 1;
  }

  .work-card::before {
    display: none;
  }

  .payment-compare {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.08fr);
    align-items: center;
  }

  .payment-card {
    min-height: 380px;
    padding: 30px;
  }

  .payment-vs {
    margin-inline: -18px;
    z-index: 2;
  }

  .journey-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-card::after {
    content: '';
    position: absolute;
    top: 34px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-prism-cyan), var(--lp-prism-coral));
  }

  .journey-card:last-child::after {
    display: none;
  }

  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    align-items: center;
    padding: 30px;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 34px 38px;
  }
}

@media (max-width: 420px) {
  .lp-section {
    padding-inline: 16px;
  }

  .lp-section__header {
    margin-bottom: 20px;
  }

  .lp-section__header h2,
  .final-cta h2,
  .operator-note h2 {
    font-size: clamp(1.7rem, 8vw, 2.08rem);
  }

  .payment-card__rate {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .operator-note {
    grid-template-columns: 1fr;
  }

  .final-cta__button {
    width: 100%;
  }
}

@keyframes pathDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  body {
    opacity: 1;
    animation: none !important;
  }

  .hero__image,
  .hero__image-container,
  .hero__light-path,
  .header,
  .hero__scroll-arrow,
  .video-section__loading-ring,
  .waitlist__proof-dot {
    animation: none !important;
  }

  .reveal,
  .lp-motion-reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-scroll-progress] {
    display: none;
  }
}

/* Correction pass: sunlit poster-led landing system */
:root {
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --lp-bg: #fbfdf9;
  --lp-bg-soft: #f2f8f1;
  --lp-surface: #ffffff;
  --lp-text: #17221d;
  --lp-text-muted: #65736b;
  --lp-text-soft: #8a968e;
  --lp-border: rgba(197, 216, 203, 0.72);
  --lp-trust: #2f9f6b;
  --lp-trust-deep: #18382d;
  --lp-trust-soft: #e9f7ef;
  --lp-blue: #3b8edb;
  --lp-blue-soft: #eef6ff;
  --lp-amber: #c9852b;
  --lp-amber-soft: #fff4e3;
  --lp-prism-cyan: #65d8f2;
  --lp-prism-coral: #f5a7ad;
  --lp-prism-violet: #b7a5ff;
  --lp-shadow-soft: 0 22px 70px rgba(31, 48, 40, 0.08);
  --lp-shadow-lift: 0 34px 90px rgba(31, 48, 40, 0.13);
}

html {
  background: var(--lp-bg);
}

body {
  opacity: 1;
  animation: none;
  color: var(--lp-text);
  background:
    radial-gradient(circle at 12% 4%, rgba(101, 216, 242, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--lp-bg) 42%, #ffffff 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.header {
  grid-template-columns: auto auto;
  justify-content: space-between;
  width: min(calc(100% - 28px), 980px);
  padding: 9px 10px 9px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(29, 45, 38, 0.11);
}

.header__brand {
  gap: 0;
  padding-inline: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.header__brand::before {
  content: none !important;
  display: none !important;
}

.header__cta {
  color: #ffffff;
  background: #12261f;
  border-color: rgba(18, 38, 31, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header__cta:hover {
  background: #214d3e;
}

.hero--landing {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: 0;
  background: #ffffff;
}

.hero__image-container {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  max-height: 980px;
  border-radius: 0 0 42px 42px;
  box-shadow: none;
}

.hero__image {
  object-position: center 33%;
  transform: scale(1.018);
  filter: saturate(1.08) brightness(1.04);
}

.hero__image-container::after {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.73) 76%, #ffffff 96%);
}

.hero__light-path {
  opacity: 0.5;
  height: 3px;
}

.hero__light-path--one {
  right: 8%;
  bottom: 39%;
}

.hero__light-path--two {
  left: 7%;
  bottom: 30%;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 18px clamp(28px, 6svh, 58px);
}

.hero__eyebrow {
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #2f8062;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.hero__title {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(2.28rem, 10vw, 5.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero__subtitle {
  max-width: 640px;
  font-size: clamp(0.96rem, 2.25vw, 1.14rem);
  color: #596a60;
}

.hero__actions {
  margin-top: 24px;
}

.hero__primary-cta {
  min-height: 58px;
  padding: 16px 34px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, #74bea4, #359574);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 42px rgba(38, 129, 91, 0.26);
}

.hero__micro-note {
  max-width: 560px;
  margin-top: 12px;
  color: #7a8880;
}

.trust-strip {
  margin-top: 0;
  padding: 20px 16px 62px;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
}

.trust-strip__inner {
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(215, 228, 218, 0.78);
  box-shadow: 0 20px 70px rgba(31, 48, 40, 0.07);
}

.trust-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 76px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(229, 237, 231, 0.76);
  border-radius: 20px;
}

.trust-chip__scene {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 56%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.04);
  mix-blend-mode: multiply;
}

.trust-chip__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.trust-chip__copy strong {
  font-size: 0.83rem;
  line-height: 1.16;
}

.trust-chip__copy small {
  color: var(--lp-text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
}

.landing-main {
  background:
    radial-gradient(circle at 8% 5%, rgba(101, 216, 242, 0.1), transparent 26%),
    radial-gradient(circle at 92% 34%, rgba(245, 167, 173, 0.1), transparent 24%),
    linear-gradient(180deg, #f8fbf6 0%, #ffffff 38%, #f8fbf6 68%, #ffffff 100%);
}

.lp-section {
  padding: clamp(56px, 9vw, 106px) 18px;
}

.lp-section__header h2,
.final-cta h2,
.operator-note h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
}

.lp-section__label {
  color: #2c8062;
}

.lp-section__atmosphere {
  opacity: 0.24;
  filter: saturate(1.04) brightness(1.02);
}

.lp-section__atmosphere--process {
  top: 6%;
  height: 72%;
  opacity: 0.2;
}

.lp-section__atmosphere--payment {
  top: 6%;
  height: 82%;
  opacity: 0.34;
}

.lp-section__atmosphere--rules,
.lp-section__atmosphere--operator {
  height: 72%;
  opacity: 0.2;
}

.work-card,
.rules-panel,
.payment-card,
.journey-card,
.operator-panel,
.faq-item,
.final-cta {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-section--work {
  padding-top: clamp(42px, 7vw, 82px);
}

.work-path {
  gap: 16px;
}

.work-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 12px 14px 18px;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 253, 248, 0.82));
  border-color: rgba(212, 227, 216, 0.72);
}

.work-card__scene {
  order: 0;
  width: 100%;
  height: 112px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 20px;
  background: #f3f8f2;
  box-shadow: inset 0 0 0 1px rgba(216, 229, 220, 0.72);
}

.work-card__step {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  margin: 0;
  background: linear-gradient(135deg, #4aa67d, #7dc5aa);
  box-shadow: 0 8px 22px rgba(47, 159, 107, 0.22);
}

.work-card__icon {
  display: none;
}

.work-card h3 {
  font-size: 1.05rem;
}

.work-card:nth-of-type(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.82));
}

.work-card:nth-of-type(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 255, 0.84));
}

.flow-timeline {
  gap: 10px;
}

.flow-item {
  overflow: hidden;
  isolation: isolate;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(210, 226, 216, 0.7);
  box-shadow: none;
}

.flow-item::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: -8px;
  z-index: -1;
  width: 88px;
  height: 66px;
  background: center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(1.02);
}

.flow-item:nth-child(2)::after {
  background-image: url('assets/generated/micro-scenes/approved-source-glow-v1.webp');
}

.flow-item:nth-child(3)::after {
  background-image: url('assets/generated/micro-scenes/post-path-v1.webp');
}

.flow-item:nth-child(4)::after {
  background-image: url('assets/generated/micro-scenes/submit-share-motion-v1.webp');
}

.flow-item:nth-child(5)::after {
  background-image: url('assets/generated/micro-scenes/views-check-lens-v1.webp');
}

.flow-item:nth-child(6)::after {
  background-image: url('assets/generated/micro-scenes/payment-review-seal-v1.webp');
}

.flow-item__number {
  background: #ffffff;
  color: #2d8464;
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: 0 12px 28px rgba(47, 159, 107, 0.14);
}

.lp-section--payment {
  padding-top: clamp(70px, 11vw, 132px);
  padding-bottom: clamp(70px, 11vw, 132px);
  background:
    radial-gradient(circle at 74% 20%, rgba(101, 216, 242, 0.18), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(245, 167, 173, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(244, 250, 246, 0.82));
}

.payment-compare {
  gap: 12px;
}

.payment-compare::before {
  content: '';
  position: absolute;
  inset: -22px -12px;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32)),
    url('assets/generated/payment-prism-plate.webp') center / cover no-repeat;
  border: 1px solid rgba(212, 227, 216, 0.6);
  border-radius: 34px;
  opacity: 0.72;
  box-shadow: 0 28px 94px rgba(31, 48, 40, 0.09);
}

.payment-card {
  min-height: 330px;
  padding: 24px;
  border-radius: 30px;
}

.payment-card__scene {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 106px;
  height: 78px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.payment-card__scene--kanmito {
  width: 128px;
  height: 94px;
  opacity: 0.58;
}

.payment-card__accent {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 112px;
  opacity: 0.78;
  pointer-events: none;
}

.payment-card--old {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 245, 0.72));
  border-color: rgba(206, 214, 208, 0.78);
  box-shadow: 0 18px 52px rgba(31, 48, 40, 0.05);
}

.payment-card--old .payment-card__rate {
  color: #2f3632;
}

.payment-card--old li::before {
  background: #f0f2ef;
  box-shadow: inset 0 0 0 3px #9ca49f;
}

.payment-card--kanmito {
  border-color: rgba(101, 216, 242, 0.78);
  background:
    radial-gradient(circle at 20% 6%, rgba(245, 167, 173, 0.24), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(101, 216, 242, 0.25), transparent 30%),
    linear-gradient(138deg, rgba(255, 255, 255, 0.98), rgba(245, 253, 249, 0.9));
  box-shadow: 0 30px 96px rgba(47, 159, 107, 0.16);
}

.payment-card--kanmito::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(125deg, rgba(245, 167, 173, 0.7), rgba(101, 216, 242, 0.75), rgba(47, 159, 107, 0.48)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.payment-card--kanmito .payment-card__rate {
  color: #18382d;
}

.payment-card__unit {
  max-width: 340px;
}

.payment-card__pill {
  max-width: 100%;
  display: inline-block;
  line-height: 1.25;
  box-shadow: 0 12px 30px rgba(47, 159, 107, 0.16);
}

.payment-card__note {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.payment-vs {
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
}

.journey-list {
  position: relative;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(212, 227, 216, 0.72);
  border-radius: 30px;
  box-shadow: 0 18px 62px rgba(31, 48, 40, 0.06);
}

.journey-card {
  overflow: hidden;
  min-height: 148px;
  padding: 96px 14px 16px;
  border: 1px solid rgba(225, 235, 228, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.journey-card::before {
  content: '';
  position: absolute;
  inset: 12px 12px auto;
  height: 72px;
  background: center / cover no-repeat;
  border-radius: 18px;
  opacity: 0.78;
}

.journey-card:nth-child(1)::before {
  background-image: url('assets/generated/micro-scenes/approved-source-glow-v1.webp');
}

.journey-card:nth-child(2)::before {
  background-image: url('assets/generated/micro-scenes/post-path-v1.webp');
}

.journey-card:nth-child(3)::before {
  background-image: url('assets/generated/micro-scenes/submit-share-motion-v1.webp');
}

.journey-card:nth-child(4)::before {
  background-image: url('assets/generated/micro-scenes/views-check-lens-v1.webp');
}

.journey-card:nth-child(5)::before {
  background-image: url('assets/generated/micro-scenes/payment-review-seal-v1.webp');
}

.journey-card__icon {
  position: absolute;
  top: 68px;
  left: 20px;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin: 0;
  background: #ffffff;
  color: #2e8d68;
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: 0 8px 22px rgba(47, 159, 107, 0.16);
}

.rules-grid {
  gap: 16px;
}

.rules-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  padding: 22px;
  border-radius: 30px;
}

.rules-panel__scene {
  width: 128px;
  height: 92px;
  margin: 0 0 18px auto;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0.74;
}

.rules-panel h3,
.rules-panel .rule-list {
  position: relative;
  z-index: 1;
}

.rules-panel__accent {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: -1;
  width: 118px;
  opacity: 0.72;
  pointer-events: none;
}

.rules-panel--counts {
  background:
    radial-gradient(circle at 82% 82%, rgba(47, 159, 107, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 253, 249, 0.86));
  border-color: rgba(47, 159, 107, 0.18);
}

.rules-panel--rejects {
  background:
    radial-gradient(circle at 84% 82%, rgba(201, 133, 43, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.82));
  border-color: rgba(201, 133, 43, 0.22);
}

.operator-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(249, 253, 248, 0.76)),
    url('assets/generated/operator-trust-field.webp') right center / auto 115% no-repeat;
  border-color: rgba(212, 227, 216, 0.74);
  box-shadow: 0 20px 74px rgba(31, 48, 40, 0.08);
}

.operator-panel__accent {
  position: absolute;
  right: 20px;
  bottom: 14px;
  z-index: -1;
  width: 132px;
  opacity: 0.75;
}

.operator-note {
  grid-template-columns: 84px 1fr;
  align-items: center;
}

.operator-note__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: 0 14px 34px rgba(47, 159, 107, 0.12);
  color: #276f55;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.faq-accent {
  position: absolute;
  z-index: 0;
  width: 84px;
  opacity: 0.7;
  pointer-events: none;
}

.faq-accent--left {
  left: 0;
  bottom: -16px;
}

.faq-accent--right {
  right: 0;
  top: 18px;
}

.lp-section--faq .lp-section__header,
.faq-list {
  position: relative;
  z-index: 1;
}

.faq-list {
  gap: 8px;
}

.faq-item {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 34px rgba(31, 48, 40, 0.05);
}

.faq-item:has(button[aria-expanded='true']) {
  border-radius: 22px;
}

.faq-item button {
  min-height: 52px;
  padding: 14px 16px;
}

.faq-item__panel {
  padding: 0 18px 18px;
}

.lp-section--final-cta {
  padding-top: 22px;
  padding-bottom: 46px;
}

.final-cta__image {
  inset: 22px 12px auto;
  width: calc(100% - 24px);
  height: calc(100% - 44px);
  opacity: 0.74;
  filter: saturate(1.08) brightness(1.03);
  border-radius: 34px;
}

.final-cta {
  isolation: isolate;
  min-height: 238px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 82px rgba(31, 48, 40, 0.09);
}

.final-cta__accent {
  position: absolute;
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
}

.final-cta__accent--left {
  left: 10px;
  bottom: 8px;
  width: 116px;
}

.final-cta__accent--right {
  right: 22px;
  bottom: -14px;
  width: 112px;
  opacity: 0.58;
}

.final-cta__action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.final-cta__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #315f4c;
  font-size: 0.82rem;
  font-weight: 600;
}

.final-cta__steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.final-cta__steps span:not(:last-child)::after {
  content: '';
  width: 17px;
  height: 1px;
  background: linear-gradient(90deg, #54b28c, rgba(101, 216, 242, 0.8));
}

@media (max-width: 540px) {
  .header {
    top: 18px;
    width: min(calc(100% - 26px), 380px);
  }

  .header__cta {
    padding: 10px 15px;
    font-size: 0.82rem;
  }

  .hero--landing {
    min-height: 100svh;
  }

  .hero__image-container {
    height: 100svh;
    min-height: 720px;
    border-radius: 0 0 36px 36px;
  }

  .hero__image {
    object-position: center 25%;
  }

  .hero__content {
    padding-bottom: clamp(26px, 5svh, 44px);
  }

  .hero__title {
    font-size: clamp(2.28rem, 10.4vw, 2.82rem);
    max-width: 360px;
  }

  .hero__subtitle {
    max-width: 340px;
  }

  .hero__primary-cta {
    width: min(100%, 318px);
    justify-content: center;
  }

  .trust-strip {
    padding-bottom: 68px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .trust-chip {
    min-height: 64px;
  }

  .trust-chip__scene {
    width: 48%;
  }

  .payment-card__scene {
    width: 92px;
    height: 68px;
  }

  .payment-card__scene--kanmito {
    width: 108px;
    height: 78px;
  }

  .payment-card__accent {
    width: 88px;
    opacity: 0.5;
    right: 6px;
    bottom: -2px;
  }

  .rules-panel__accent {
    right: -16px;
    bottom: -18px;
    width: 96px;
    opacity: 0.34;
  }

  .operator-note {
    grid-template-columns: 1fr;
  }

  .faq-accent {
    width: 66px;
    opacity: 0.55;
  }

  .final-cta__button {
    width: 100%;
    justify-content: center;
  }

  .final-cta__accent--left {
    width: 82px;
    left: -8px;
    bottom: 20px;
    opacity: 0.54;
  }

  .final-cta__accent--right {
    width: 88px;
    right: -4px;
    bottom: -10px;
    opacity: 0.42;
  }
}

@media (min-width: 720px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }

  .hero--landing {
    min-height: min(94svh, 900px);
  }

  .hero__image-container {
    height: min(94svh, 900px);
    min-height: 650px;
  }

  .hero__image {
    object-position: center 46%;
  }

  .hero__content {
    padding-bottom: clamp(46px, 8vh, 82px);
  }

  .trust-strip {
    padding-top: 26px;
    padding-bottom: 82px;
  }

  .work-card__scene {
    height: 150px;
  }

  .flow-timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding-top: 44px;
  }

  .flow-timeline::before {
    top: 65px;
    bottom: auto;
    left: 7%;
    right: 7%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-trust), var(--lp-prism-cyan), var(--lp-prism-violet), var(--lp-amber));
  }

  .flow-item {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 0 8px;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .flow-item::after {
    right: 50%;
    bottom: auto;
    top: 8px;
    width: 80px;
    height: 54px;
    transform: translateX(50%);
    opacity: 0.14;
  }

  .flow-item__number {
    width: 46px;
    height: 46px;
  }

  .payment-compare {
    grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.28fr);
    gap: 0;
  }

  .payment-card--kanmito {
    min-height: 430px;
    padding: 38px 42px;
  }

  .payment-card--old {
    min-height: 360px;
    padding: 30px;
  }

  .payment-vs {
    margin-inline: -22px;
  }

  .journey-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-card {
    min-height: 222px;
  }

  .rules-panel {
    padding: 28px;
  }

  .rules-panel__scene {
    width: 150px;
    height: 108px;
  }

  .operator-panel {
    min-height: 245px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
  }

  .final-cta {
    min-height: 270px;
    padding: 42px 58px;
  }

  .final-cta__action {
    justify-items: end;
  }
}

@media (min-width: 1100px) {
  .hero__content {
    padding-bottom: 74px;
  }

  .hero__title {
    max-width: 820px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .header,
  .hero__image,
  .hero__image-container,
  .hero__light-path,
  .payment-card--kanmito::after {
    animation: none !important;
  }

  .lp-motion-reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* QA fixes from screenshot review */
.flow-timeline::before {
  top: 28px;
  bottom: 28px;
  left: 29px;
  width: 1px;
  background: rgba(47, 159, 107, 0.24);
  opacity: 1;
}

.flow-item {
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 96px;
  padding: 15px 16px;
  overflow: visible;
  isolation: auto;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(211, 228, 217, 0.82);
  box-shadow: 0 12px 34px rgba(31, 48, 40, 0.045);
}

.flow-item::after {
  content: none !important;
  display: none !important;
}

.flow-item__number {
  width: 46px;
  height: 46px;
  color: #2f8b65;
  background: #ffffff;
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: 0 10px 26px rgba(47, 159, 107, 0.12);
}

.payment-card__scene,
.payment-card__accent {
  z-index: 0;
}

.payment-card__tag,
.payment-card__label,
.payment-card__rate,
.payment-card__unit,
.payment-card__pill,
.payment-card__note,
.payment-card ul {
  position: relative;
  z-index: 2;
}

.payment-card__pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 390px);
  color: #28694f;
  background: rgba(235, 248, 240, 0.92);
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: none;
  border-radius: 18px;
}

.payment-card__pill::before {
  content: '';
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2f9f6b;
}

.payment-card__accent {
  opacity: 0.42;
  right: -6px;
  bottom: -8px;
}

.rules-panel__scene {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 86px;
  height: 60px;
  margin: 0;
  opacity: 0.34;
}

.rules-panel h3 {
  padding-right: 96px;
}

.rules-panel__accent {
  right: -30px;
  bottom: -34px;
  width: 120px;
  opacity: 0.2;
}

.operator-panel__accent {
  top: 16px;
  right: 16px;
  bottom: auto;
  width: 86px;
  opacity: 0.16;
}

.final-cta__image {
  opacity: 0.44;
}

.final-cta__accent {
  opacity: 0.34;
}

.final-cta__accent--left {
  left: -8px;
  bottom: 8px;
  width: 104px;
}

.final-cta__accent--right {
  right: 10px;
  bottom: -22px;
  width: 104px;
  opacity: 0.28;
}

@media (max-width: 540px) {
  .payment-card__pill {
    max-width: calc(100% - 18px);
    padding: 9px 11px;
  }

  .rules-panel {
    min-height: 300px;
  }

  .rules-panel__scene {
    width: 76px;
    height: 54px;
    opacity: 0.3;
  }

  .rules-panel h3 {
    padding-right: 82px;
  }

  .operator-panel__accent {
    width: 78px;
    opacity: 0.14;
  }

  .final-cta__image {
    opacity: 0.36;
  }

  .final-cta__accent--left {
    width: 72px;
    opacity: 0.26;
  }

  .final-cta__accent--right {
    width: 76px;
    opacity: 0.22;
  }
}

@media (min-width: 720px) {
  .flow-timeline::before {
    top: 65px;
    left: 7%;
    right: 7%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(47, 159, 107, 0.34), rgba(101, 216, 242, 0.32), rgba(245, 167, 173, 0.28));
  }

  .flow-item {
    min-height: 0;
    padding: 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .operator-panel__accent {
    top: auto;
    right: -22px;
    bottom: -28px;
    width: 142px;
    opacity: 0.22;
  }
}

/* Discussion follow-up: remove confusing thumbnails from work/journey only */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  order: 1;
  color: #22342d;
  font-weight: 400;
  line-height: 1.06;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.32);
}

.hero__subtitle {
  order: 2;
}

.hero__actions {
  order: 3;
}

.hero__eyebrow {
  order: 4;
  margin: 13px 0 0;
  padding: 5px 10px;
  color: rgba(37, 114, 85, 0.86);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(209, 226, 214, 0.7);
  box-shadow: none;
  font-size: 0.66rem;
  letter-spacing: 0.055em;
}

.hero__eyebrow::before {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px rgba(47, 167, 102, 0.1);
}

.hero__micro-note {
  order: 5;
}

.work-card__scene {
  display: none;
}

.work-card {
  display: block;
  min-height: 142px;
  padding: 22px 20px 22px 78px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 249, 0.78));
}

.work-card:nth-of-type(2),
.work-card:nth-of-type(3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 249, 0.78));
}

.work-card::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background:
    radial-gradient(circle, rgba(47, 159, 107, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(101, 216, 242, 0.14), rgba(245, 167, 173, 0.12));
  opacity: 0.8;
}

.work-card__step {
  top: 24px;
  left: 22px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #2f8b65;
  border: 1px solid rgba(47, 159, 107, 0.24);
  box-shadow: 0 10px 24px rgba(47, 159, 107, 0.12);
}

.work-card h3 {
  max-width: 220px;
}

.work-card p {
  max-width: 260px;
}

.journey-card {
  min-height: 118px;
  padding: 18px 16px 18px 62px;
  background: rgba(255, 255, 255, 0.78);
}

.journey-card::before {
  content: none !important;
  display: none !important;
}

.journey-card__icon {
  top: 18px;
  left: 16px;
  width: 32px;
  height: 32px;
  color: #2f8b65;
  background: #ffffff;
}

@media (max-width: 540px) {
  .hero__title {
    color: #25372f;
    font-size: clamp(2.12rem, 9.5vw, 2.62rem);
  }

  .hero__eyebrow {
    font-size: 0.62rem;
  }

  .work-card {
    min-height: 134px;
    padding: 21px 18px 20px 72px;
  }

  .work-card::after {
    width: 44px;
    height: 44px;
    opacity: 0.48;
  }
}

@media (min-width: 720px) {
  .work-card {
    min-height: 190px;
    padding: 28px 24px 24px;
  }

  .work-card__step {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 18px;
  }

  .journey-card {
    min-height: 164px;
    padding: 60px 14px 16px;
  }

  .journey-card__icon {
    top: 18px;
    left: 14px;
  }
}

/* Typography and desktop layout QA pass */
:root {
  --font-hero: 'Cormorant Garamond', 'Lora', Georgia, serif;
}

.hero__title {
  font-family: var(--font-hero);
  color: #31463d;
  font-weight: 500;
  line-height: 1.01;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 34px rgba(255, 255, 255, 0.3);
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  color: #5b6f65;
}

.work-card::before {
  content: none !important;
  display: none !important;
}

.operator-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 253, 249, 0.72)),
    url('assets/generated/operator-trust-field.webp') right center / cover no-repeat;
}

.operator-note {
  align-items: start;
}

@media (max-width: 540px) {
  .hero__title {
    color: #30483e;
    font-size: clamp(2.2rem, 10.2vw, 2.74rem);
    line-height: 0.98;
  }
}

@media (min-width: 720px) {
  .hero__title {
    font-size: clamp(3.1rem, 5.7vw, 5.45rem);
    max-width: 880px;
  }

  .lp-section--flow .lp-section__inner--split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lp-section--flow .lp-section__header--sticky {
    position: relative;
    top: auto;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .flow-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(213, 228, 218, 0.74);
    border-radius: 30px;
    box-shadow: 0 20px 64px rgba(31, 48, 40, 0.055);
  }

  .flow-timeline::before {
    content: none !important;
    display: none !important;
  }

  .flow-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    justify-items: stretch;
    align-items: start;
    gap: 14px;
    min-height: 154px;
    padding: 18px;
    text-align: left;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(213, 228, 218, 0.82);
    border-radius: 22px;
    box-shadow: none;
  }

  .flow-item__number {
    width: 42px;
    height: 42px;
  }

  .flow-item h3 {
    max-width: none;
    font-size: 1rem;
    line-height: 1.18;
    margin-bottom: 6px;
  }

  .flow-item p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .operator-panel {
    background:
      radial-gradient(circle at 88% 88%, rgba(245, 167, 173, 0.08), transparent 26%),
      radial-gradient(circle at 78% 16%, rgba(101, 216, 242, 0.08), transparent 26%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 253, 249, 0.68)),
      url('assets/generated/operator-trust-field.webp') right center / cover no-repeat;
  }
}

@media (min-width: 1120px) {
  .flow-timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .flow-item {
    grid-template-columns: 1fr;
    min-height: 178px;
    padding: 16px 14px;
    text-align: center;
  }

  .flow-item__number {
    justify-self: center;
  }
}

/* Final hero readability tuning after desktop variant QA */
@media (min-width: 720px) {
  .hero__image-container::after {
    background:
      radial-gradient(ellipse at 50% 62%, rgba(255, 255, 255, 0.86) 0 24%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0) 64%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0.86) 78%, #ffffff 97%);
  }

  .hero__title {
    max-width: 780px;
    color: #24372f;
    font-size: clamp(2.85rem, 5.1vw, 4.7rem);
    line-height: 1.02;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .hero__subtitle {
    color: #53665c;
  }
}

/* Final Hinglish copy integration */
.hero__subtitle {
  display: grid;
  gap: 3px;
}

.hero__subtitle span {
  display: block;
}

.hero__eyebrow {
  order: 3;
  margin: 14px 0 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero__actions {
  order: 4;
}

.trust-chip__copy strong {
  font-size: 0.86rem;
}

.payment-copy-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 86% 14%, rgba(101, 216, 242, 0.16), transparent 30%),
    radial-gradient(circle at 12% 96%, rgba(245, 167, 173, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 227, 216, 0.78);
  border-radius: 32px;
  box-shadow: 0 24px 82px rgba(31, 48, 40, 0.08);
}

.payment-copy-panel::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: -1;
  width: 150px;
  height: 150px;
  background: url('assets/generated/botanical-accents/prism-flower-knot-v1.webp') center / contain no-repeat;
  opacity: 0.28;
}

.payment-math {
  display: grid;
  gap: 10px;
}

.payment-math div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  color: var(--lp-text-muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 231, 223, 0.82);
  border-radius: 18px;
}

.payment-math strong {
  color: #233a31;
  font-size: 1.12rem;
}

.payment-example,
.payment-note,
.final-cta__commitment,
.rules-note {
  color: var(--lp-text-muted);
  line-height: 1.52;
}

.payment-example {
  padding: 14px 16px;
  color: #285f49;
  background: rgba(235, 248, 240, 0.9);
  border: 1px solid rgba(47, 159, 107, 0.2);
  border-radius: 18px;
  font-weight: 700;
}

.payment-comparison {
  display: grid;
  gap: 12px;
}

.payment-rate-pair {
  display: grid;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 247, 0.72));
  border: 1px solid rgba(212, 227, 216, 0.86);
  border-radius: 24px;
}

.payment-rate-pair__label,
.payment-comparison-row h3 {
  color: var(--lp-text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-rate-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(212, 227, 216, 0.78);
}

.payment-rate-card span,
.payment-comparison-values span {
  color: #2b8060;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-rate-card strong {
  color: var(--lp-text);
  font-size: clamp(1.25rem, 5.4vw, 1.8rem);
  line-height: 1;
}

.payment-rate-card--old {
  background: rgba(255, 255, 255, 0.74);
}

.payment-rate-card--old span {
  color: #66746c;
}

.payment-rate-card--kanmito {
  background:
    radial-gradient(circle at 86% 4%, rgba(101, 216, 242, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(232, 250, 240, 0.94), rgba(255, 255, 255, 0.82));
  border-color: rgba(82, 184, 139, 0.34);
  box-shadow: 0 16px 44px rgba(47, 159, 107, 0.09);
}

.payment-rate-card--kanmito strong {
  color: #1f6248;
}

.payment-comparison-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(212, 227, 216, 0.78);
  border-radius: 20px;
}

.payment-comparison-values {
  display: grid;
  gap: 8px;
}

.payment-comparison-values p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px;
  color: #53625a;
  line-height: 1.35;
  background: rgba(250, 252, 249, 0.82);
  border: 1px solid rgba(225, 232, 224, 0.72);
  border-radius: 15px;
}

.payment-comparison-values p:last-child {
  color: #1f4936;
  font-weight: 750;
  background: rgba(235, 248, 240, 0.9);
  border-color: rgba(47, 159, 107, 0.22);
}

.rules-note {
  width: min(100%, 720px);
  margin: 18px auto 0;
  text-align: center;
  font-weight: 600;
}

.final-cta__commitment {
  max-width: 360px;
  font-size: 0.9rem;
  text-align: left;
}

@media (max-width: 540px) {
  .hero__subtitle {
    gap: 2px;
    max-width: 350px;
  }

  .hero__eyebrow {
    margin-top: 12px;
    font-size: 0.68rem;
  }

  .payment-copy-panel {
    padding: 18px;
    border-radius: 28px;
  }

  .payment-math div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .final-cta__commitment {
    text-align: center;
  }
}

@media (min-width: 720px) {
  .payment-math {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-rate-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-rate-pair__label {
    grid-column: 1 / -1;
  }

  .payment-comparison-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
