/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--color-gold);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

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

:root {
  /* Palette — deepened for high-end editorial feel */
  --bg-dark: #0a0a0a;
  --bg-dark-warm: #181510;
  --bg-light: rgb(241, 240, 238);
  --bg-black: #000;
  --bg-white: #fff;
  --text-dark: #1a1a1a;
  --text-white: #fff;
  --font-geist: 'Geist', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --radius-btn: 12px;
  --radius-pill: 7px;
  --section-px: 48px;

  /* New variables */
  --bg-gray: #f5f5f5;
  --color-accent: #c8a96e;
  --color-accent-red: #c41e3a;
  --color-gold: #c8a96e;
  --color-gold-light: #d4b87a;
  --color-muted: #535353;
  --color-subtle: #999999;
  --color-border: #e0e0e0;
  --color-border-dark: #222222;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ===== SECTION COMMON ===== */
.section {
  padding: 160px 48px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  display: none;
}

.section-title {
  font-family: var(--font-geist);
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.section-lead {
  font-family: var(--font-noto);
  font-size: 17px;
  color: var(--color-muted);
  line-height: 2.2;
  margin-bottom: 56px;
  max-width: 720px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-noto);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-white);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #b8995e;
}

.btn-white {
  background: var(--bg-white);
  color: var(--text-dark);
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text-white);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.8);
}

/* ===== HEADER (FIXED) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 28px;
  width: auto;
}

.header-nav {
  display: none;
}

.header-cta {
  display: flex;
  gap: 12px;
}

/* ===== HAMBURGER MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-geist);
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--text-white);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.mobile-nav-cta .btn {
  width: 240px;
  text-align: center;
}

/* ===== HERO ===== */
.hero-brand {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 72px;
  background: var(--bg-black);
  color: var(--text-white);
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  z-index: 0;
}

.hero-brand-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.hero-split-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 48px;
}

.hero-split-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-photo-top,
.hero-photo-bottom {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.hero-photo-divider {
  height: 1px;
  background: rgba(200,169,110,0.4);
  flex-shrink: 0;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-bottom .hero-photo {
  object-position: 75% center;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-badge {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  padding: 6px 16px;
  border: 1px solid rgba(200,169,110,0.4);
  text-transform: uppercase;
}

.hero-logo-svg {
  width: 100%;
  max-width: 680px;
  height: auto;
  margin-bottom: 48px;
}

.hero-sub {
  font-family: var(--font-inter);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--color-gold);
  color: #000;
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--color-gold-light);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(200,169,110,0.5);
  color: var(--color-gold);
}

.btn-outline-gold:hover {
  border-color: var(--color-gold);
}

.hero-copy {
  font-family: var(--font-noto);
  font-size: clamp(20px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 56px;
  color: rgba(255,255,255,0.95);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.hero-cta .btn {
  padding: 16px 32px;
  font-size: 14px;
}

/* ===== COMPANIES ===== */
.companies-section {
  background: var(--bg-dark-warm);
  text-align: center;
}

.companies-headline {
  font-family: var(--font-geist);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--text-white);
}

.companies-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  line-height: 1.9;
}

/* Big stat number — instant scale perception */
.companies-stat {
  margin-bottom: 48px;
}
.companies-stat-number {
  display: block;
  font-family: var(--font-geist);
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 200;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.companies-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ===== COMPANIES GRID ===== */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 24px;
}

.company-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 8px;
  min-height: 88px;
}

.company-logo-cell img {
  max-width: 85%;
  max-height: 52px;
  object-fit: contain;
}

.company-logo-cell img.company-logo--square {
  max-height: 68px;
  max-width: 100%;
}

/* Placeholder when img src is empty — show alt text */
.company-logo-cell img[src=""] {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  min-height: 24px;
}

.companies-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== WHAT IS GRID ===== */
.what-is-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
}

.what-is-section .section-title {
  color: var(--text-white);
}

.what-is-definition {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 2;
  margin-bottom: 64px;
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--color-gold);
  color: rgba(255,255,255,0.85);
}
.what-is-definition strong {
  color: var(--text-white);
  font-weight: 600;
}

.value-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  padding: 48px 24px;
  background: rgba(0,0,0,0.2);
}

.formula-item {
  text-align: center;
  padding: 24px;
  min-width: 200px;
}

.formula-item-label {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--color-gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.formula-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}

.formula-item-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.formula-operator {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-gold);
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.value-card {
  padding: 32px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.value-card:last-child {
  border-bottom: none;
}

.value-card-num {
  font-family: var(--font-inter);
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.value-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-white);
}

.value-card-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ===== WHY NOW ===== */
.why-now-section {
  background: var(--bg-black);
  color: var(--text-white);
}

.why-now-section .section-title {
  color: var(--text-white);
}

.why-now-section .section-lead {
  color: rgba(255,255,255,0.6);
}

.gap-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.gap-card {
  background: transparent;
  padding: 48px 0 48px 32px;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.gap-card:hover {
  background: rgba(255,255,255,0.02);
}

.gap-card::before {
  content: attr(data-number);
  position: absolute;
  right: -10px;
  top: -15px;
  font-family: var(--font-geist);
  font-size: 120px;
  font-weight: 200;
  color: rgba(200,169,110,0.05);
  line-height: 1;
  pointer-events: none;
}

.gap-card:last-child {
  border-bottom: none;
}

/* .gap-card-icon removed — icons deleted for minimal design */

.gap-card-title {
  font-family: var(--font-geist);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text-white);
}

/* Progressive weight — each card feels slightly heavier */
.gap-card:nth-child(2) {
  padding-top: 52px;
  padding-bottom: 52px;
}
.gap-card:nth-child(3) {
  padding-top: 56px;
  padding-bottom: 56px;
  border-left-width: 4px;
}

.gap-card-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

/* ===== DIFFERENCE ===== */
.difference-section {
  background: var(--bg-white);
}

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

.compare-box {
  padding: 32px;
  border: 1px solid var(--color-border);
}

.compare-box.highlight {
  border: 2px solid var(--color-gold);
  background: rgba(200,169,110,0.04);
}

.compare-box-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.compare-box-subtitle {
  font-size: 14px;
  color: var(--color-accent-red);
  font-weight: 600;
  margin-bottom: 12px;
}

.compare-box-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.9;
}

.compare-box ul {
  list-style: none;
  margin-top: 16px;
}

.compare-box li {
  font-size: 16px;
  color: var(--color-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.compare-box li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  color: var(--color-muted);
}

.compare-box.highlight li::before {
  content: '\2713';
  color: var(--color-gold);
  font-size: 12px;
}

.compare-result {
  font-weight: 600;
  margin-top: 16px;
}

.compare-result.muted {
  color: var(--color-muted);
}

.compare-result.accent {
  color: var(--color-gold);
}

/* Problems row — 3 columns */
.compare-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.compare-box--problem {
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  opacity: 0.75;
}

.compare-box--problem .compare-box-title {
  font-size: 17px;
}

.compare-box--problem .compare-box-subtitle {
  color: var(--color-accent-red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compare-box--problem .compare-box-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* Arrow between problems and hero */
.compare-arrow {
  text-align: center;
  font-size: 32px;
  color: var(--color-gold);
  padding: 24px 0;
  opacity: 0.6;
}

/* GRID hero card */
.compare-hero {
  border: 2px solid var(--color-gold);
  background: rgba(200,169,110,0.04);
  padding: 48px 40px;
  text-align: center;
}

.compare-hero-label {
  font-family: var(--font-geist);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.compare-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.compare-hero-item strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.compare-hero-item p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
}

.compare-hero-result {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 16px;
}

.difference-summary {
  text-align: center;
  padding: 40px;
  background: var(--bg-dark);
}

.difference-summary p {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--color-gold);
}

/* ===== ACTIVITIES ===== */
.activities-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
}

.activities-section .section-title {
  color: var(--text-white);
}

.activity-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.activity-card {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,0.6);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.activity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.activity-card:nth-child(even) .activity-card-overlay {
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.activity-card-inner {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 520px;
}

.activity-card:nth-child(even) .activity-card-inner {
  margin-left: auto;
  text-align: right;
}

.activity-card-num {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  color: rgba(200,169,110,0.35);
  margin-bottom: 8px;
  line-height: 1;
}

.activity-card-title {
  font-family: var(--font-geist);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text-white);
}

.activity-card-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

/* ===== SESSION FLOW ===== */
.session-flow-section {
  background: var(--bg-black);
  color: var(--text-white);
}

.session-flow-section .section-title {
  color: var(--text-white);
}

.flow-intro {
  text-align: center;
  margin-bottom: 48px;
}

.flow-intro p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}

/* ===== CYCLE RING (Integrated) ===== */
.cycle-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.cycle-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  width: 100%;
  max-width: 640px;
  background: rgba(255,255,255,0.02);
}

/* Cycle center icon + animation */
.cycle-center-icon {
  display: none;
}

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

.cycle-card-badge {
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.cycle-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.cycle-card-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.cycle-card-steps {
  display: grid;
  gap: 20px;
}

.cycle-card-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cycle-card-step-num {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.cycle-card-step strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  display: block;
  margin-bottom: 4px;
}

.cycle-card-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Center label — hidden on mobile, shown on desktop */
.cycle-center-label {
  display: none;
}

/* Mobile: arrows between cycle cards */
.cycle-card + .cycle-card::before {
  content: '↓';
  display: block;
  text-align: center;
  color: var(--color-gold);
  font-size: 24px;
  padding: 16px 0;
  opacity: 0.5;
}

.cycle-card:last-child::after {
  content: '↻';
  display: block;
  text-align: center;
  color: var(--color-gold);
  font-size: 28px;
  padding: 16px 0;
  opacity: 0.4;
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.video-wrapper .interview-video {
  margin-bottom: 0;
}

/* ===== VOICE (TEXT) ===== */
.voice-section {
  background: var(--bg-white);
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.voice-card {
  padding: 40px 32px 32px 48px;
  border: none;
  border-left: 4px solid var(--color-gold);
  position: relative;
  background: rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 96px;
  color: rgba(200,169,110,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* Feature card styles removed — all cards uniform */

.voice-card-text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
  padding-left: 24px;
}

.voice-card-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 24px;
}

.voice-card-avatar {
  width: 56px;
  height: 56px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-gold);
  overflow: hidden;
}

.voice-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card-info {
  font-size: 13px;
}

.voice-card-company {
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.voice-card-name {
  font-weight: 600;
  font-size: 15px;
}

/* ===== VOICE VIDEO ===== */
.voice-video-section {
  background: var(--bg-black);
  color: var(--text-white);
}

.interview-video {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  margin-bottom: 24px;
}

.video-placeholder-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.video-placeholder-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
}

.video-placeholder p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.video-caption-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
}

.video-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ===== TARGET ===== */
.target-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
}

.target-section .section-title {
  color: var(--text-white);
}

.target-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.target-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.target-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.target-chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.target-chart-center span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.target-breakdown {
  display: grid;
  gap: 16px;
}

.target-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.target-item-percent {
  font-size: 36px;
  font-weight: 400;
  min-width: 70px;
  color: var(--color-gold);
}

.target-item-percent.blue { color: var(--color-gold); }
.target-item-percent.navy { color: var(--color-gold-light); }
.target-item-percent.red { color: #d4a574; }

.target-item-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.target-item-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.target-filter {
  padding: 24px;
  border: 2px solid var(--color-gold);
  background: rgba(200,169,110,0.05);
}

.target-filter-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.target-filter-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.target-filter-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
}

.target-filter-item span {
  color: var(--color-gold);
}

/* ===== POLICY ===== */
.policy-section {
  background: var(--bg-black);
  color: var(--text-white);
  padding: 160px 48px 240px;
}

.policy-section .section-label {
  color: rgba(255,255,255,0.6);
}

.policy-section .section-title {
  color: var(--text-white);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.policy-section .section-lead {
  font-size: 26px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

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

.policy-card {
  padding: 40px 32px 32px;
  border: 1px solid var(--color-border-dark);
  border-top: 2px solid var(--color-gold);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.policy-card-num {
  font-family: var(--font-geist);
  font-size: 48px;
  font-weight: 200;
  color: var(--color-gold);
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.6;
}

.policy-card-title {
  font-family: var(--font-geist);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.policy-card-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.policy-note {
  margin-top: 64px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding: 32px;
  border: 1px solid rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.04);
  line-height: 2;
}

/* ===== ONBOARDING ===== */
.onboarding-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
}

.onboarding-timeline {
  max-width: 560px;
}

.timeline-item {
  display: flex;
  gap: 24px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-gold), rgba(196,167,103,0.2));
  margin: 4px 0;
}

.timeline-content {
  padding: 4px 0 40px;
}

.timeline-title {
  font-family: var(--font-geist);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 40px;
}

.timeline-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--bg-black);
  color: var(--text-white);
}

.pricing-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(200,169,110,0.4);
  text-align: center;
  background: rgba(200,169,110,0.03);
  box-shadow: 0 0 60px rgba(200,169,110,0.06);
}

.pricing-info {
  margin-bottom: 40px;
}

.pricing-info-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  text-align: left;
}

.pricing-info-item:last-child {
  border-bottom: none;
}

.pricing-info-label {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.pricing-info-value {
  font-weight: 500;
  color: var(--text-white);
  text-align: right;
  font-size: 18px;
}

/* Highlight the price row */
.pricing-info-item:last-child .pricing-info-value {
  color: var(--color-gold);
  font-family: var(--font-geist);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 300;
}

.pricing-note {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.8;
  text-align: left;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid rgba(255,255,255,0.1);
}

/* ===== FAQ (Accordion) ===== */
.faq-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
  padding: 160px 48px 240px;
}

.faq-section .section-title {
  color: var(--text-white);
}

.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.faq-title-col {
  flex: 0 0 30%;
  position: sticky;
  top: 120px;
}

.faq-list {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-right: 24px;
}

.faq-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 24px;
  color: var(--color-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 30px;
}

.faq-answer-inner p {
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ===== FOUNDER ===== */
.founder-section {
  background: var(--bg-dark-warm);
  color: var(--text-white);
  padding: 0 48px 240px;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.founder-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.founder-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.founder-text {
  font-size: 17px;
  line-height: 2.2;
  color: rgba(255,255,255,0.75);
}

.founder-heading {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-white);
  margin-bottom: 32px;
}

.founder-text p {
  margin-bottom: 24px;
}

.founder-cta-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  color: var(--text-white);
}

.founder-bottom {
  margin-top: 48px;
}

.founder-profile {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--color-gold);
}

.founder-profile-label {
  display: block;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.founder-profile p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.founder-signature {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-title {
  font-size: 13px;
  color: var(--color-gold);
}

.founder-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
}

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: var(--bg-black);
  color: var(--text-white);
  text-align: center;
  padding: 160px 48px;
}

.final-cta-title {
  font-family: var(--font-geist);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.final-cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 64px;
  line-height: 2;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.final-cta-buttons .btn {
  padding: 20px 48px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.final-cta-buttons .btn-gold {
  padding: 20px 48px;
}

.final-cta-buttons .btn-outline-gold {
  padding: 20px 48px;
}

/* ===== FOOTER LOGO SECTION ===== */
.footer-logo-section {
  background: var(--bg-black);
  padding: 140px 32px 0;
  text-align: center;
}

.footer-logo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-svg {
  width: 100%;
  height: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-black);
  color: rgba(255,255,255,0.4);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-border-dark);
}

.footer-copy {
  font-size: 11px;
  white-space: nowrap;
}

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

.footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== THE LENS (Cinematic Transition) ===== */
.the-lens {
  background: var(--bg-black);
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.the-lens::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(200,169,110,0.05) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(200,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.lens-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 6px at center, rgba(200,169,110,0.25) 0%, transparent 100%);
  background-size: 120px 120px;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease 0.5s;
}

.the-lens.visible .lens-glow {
  opacity: 1;
}

.the-lens::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.lens-bar {
  width: 100%;
  height: 80px;
  background: var(--bg-black);
  position: relative;
  z-index: 2;
}

.lens-text {
  font-family: var(--font-inter);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  padding: 40px 0;
  opacity: 0;
  transition: opacity 1.2s ease 0.3s;
  position: relative;
  z-index: 2;
}

.the-lens.visible .lens-text {
  opacity: 1;
}

/* ===== THE UNCUT ===== */
.uncut-section {
  background: var(--bg-black);
  color: var(--text-white);
}

.uncut-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 24px;
}

.uncut-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 48px;
}

.uncut-cards {
  display: grid;
  gap: 16px;
}

.uncut-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.uncut-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-bg, none) center/cover no-repeat;
  filter: grayscale(100%) brightness(0.3);
  transition: filter 0.5s ease;
  z-index: 0;
}

.uncut-card:hover::before {
  filter: grayscale(100%) brightness(0.25);
}

.uncut-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.uncut-question {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 48px 40px;
  text-align: left;
  color: var(--text-white);
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
}

.uncut-question:hover {
  color: var(--color-gold);
}

.uncut-reveal {
  position: relative;
  z-index: 2;
}

.uncut-question-text {
  font-family: var(--font-noto);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.uncut-category {
  font-family: var(--font-inter);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.uncut-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.uncut-card.active .uncut-reveal {
  /* height set by JS */
}

.uncut-card.active .uncut-question {
  color: var(--color-gold);
}

.uncut-reveal-inner {
  padding: 0 40px 40px;
}

.uncut-situation {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid rgba(200,169,110,0.3);
}

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

.uncut-tensions li {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
}

.uncut-tensions li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
}

.uncut-cta {
  margin-top: 48px;
  text-align: center;
}

/* ===== THE WALL OF GIANTS ===== */
.wall-section {
  display: none;
  background: var(--bg-black);
  color: var(--text-white);
  padding-bottom: 0;
}

.wall-section .section-inner {
  margin-bottom: 48px;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 100%;
}

.wall-cell {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wall-cell-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
}

.wall-cell:nth-child(odd) .wall-cell-front { background: linear-gradient(160deg, #151515 0%, #0d0d0d 100%); }
.wall-cell:nth-child(even) .wall-cell-front { background: linear-gradient(160deg, #1a1612 0%, #0f0d0a 100%); }

.wall-cell-initial {
  font-family: var(--font-geist);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.08em;
}

.wall-cell-role {
  font-family: var(--font-inter);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.wall-cell-back {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wall-cell:hover .wall-cell-back,
.wall-cell.active .wall-cell-back {
  opacity: 1;
}

.wall-cell:hover .wall-cell-front,
.wall-cell.active .wall-cell-front {
  opacity: 0.2;
  transform: scale(1.05);
}

.wall-cell-why {
  font-family: var(--font-noto);
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--color-gold);
  text-align: center;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== COUNT-UP FLASH ===== */
[data-count-up] {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

[data-count-up].count-up-done {
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(200,169,110,0.3);
}

/* ===== LENS MINI (Section Dividers) ===== */
.the-lens-mini {
  min-height: 20vh;
}

/* ===== LENS LIGHT VARIANT ===== */
.the-lens-light {
  background: #f5f0e8;
}

.the-lens-light::before {
  background:
    linear-gradient(45deg, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.the-lens-light .lens-glow {
  background: radial-gradient(circle 6px at center, rgba(200,169,110,0.35) 0%, transparent 100%);
  background-size: 120px 120px;
}

.the-lens-light::after {
  background: radial-gradient(ellipse at center, transparent 30%, rgba(245,240,232,0.8) 100%);
}

.the-lens-light .lens-text {
  color: #1a1a1a;
}

.the-lens-light .lens-bar {
  background: #f5f0e8;
}

/* ===== SHIMMER EFFECT FOR CTA BUTTONS ===== */
.btn-gold,
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-gold::after,
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
}

.btn-gold:hover::after,
.btn-primary:hover::after {
  animation: shimmer 0.6s ease forwards;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(200,169,110,0.12) 20%,
    rgba(200,169,110,0.12) 80%,
    transparent);
}

/* ===== UTILITIES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Wall of Giants stagger entrance */
.wall-cell {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.wall-cell.wall-cell-visible {
  opacity: 1;
  transform: scale(1);
}

/* Generic stagger children */
[data-stagger] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-stagger].stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE: DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .header-nav a {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
  }

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

@media (min-width: 768px) {
  .value-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .gap-cards {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-table {
    grid-template-columns: 1fr 1.3fr;
  }

  .activity-card {
    min-height: 420px;
  }

  .activity-card-inner {
    padding: 56px 64px;
  }

  /* Cycle ring — triangular layout */
  .cycle-ring {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 60px auto;
    column-gap: 32px;
    row-gap: 0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
  }

  .cycle-card {
    max-width: none;
  }

  /* Phase 1: top center, spanning both columns */
  .cycle-card-top {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 560px;
    justify-self: center;
  }

  /* Phase 2: bottom-left */
  .cycle-card-right {
    grid-column: 1;
    grid-row: 3;
  }

  /* Phase 3: bottom-right */
  .cycle-card-left {
    grid-column: 2;
    grid-row: 3;
  }

  /* Center label + cycle icon — in the gap between top card and bottom cards */
  .cycle-center-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    grid-row: 2;
    font-family: var(--font-inter);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1.4;
    gap: 6px;
  }

  .cycle-center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(200,169,110,0.35);
    border-radius: 50%;
    color: var(--color-gold);
    animation: cycle-spin 8s linear infinite;
  }

  /* Hide mobile arrows on desktop */
  .cycle-card + .cycle-card::before,
  .cycle-card:last-child::after {
    display: none;
  }

  /* Voice — 2 columns on desktop */
  .voice-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .report-cards removed — replaced by .uncut-cards */

  .policy-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .target-main {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }

  .founder-content {
    grid-template-columns: 420px 1fr;
    gap: 40px;
  }
}

/* ===== RESPONSIVE: TABLET (991px) ===== */
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 991px) {
  :root {
    --section-px: 32px;
  }
}

/* ===== RESPONSIVE: MOBILE LANDSCAPE (767px) ===== */
@media (max-width: 767px) {
  :root {
    --section-px: 24px;
  }

  .section {
    padding: 100px 24px;
  }

  .voice-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Difference — compare boxes */
  .compare-table {
    grid-template-columns: 1fr;
  }

  .compare-problems {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .compare-hero {
    padding: 32px 24px;
  }

  /* Session Flow — cycle cards */
  .cycle-card {
    padding: 28px 24px;
  }

  .faq-section {
    padding: 100px 24px 160px;
  }

  .faq-inner {
    flex-direction: column;
    gap: 24px;
  }

  .faq-title-col {
    flex: none;
    position: static;
  }

  .final-cta-section {
    padding: 100px 24px;
  }

  .hero-brand {
    padding: 0;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-text {
    padding: 100px 24px 40px;
  }

  .hero-split-photo {
    height: 50vh;
  }

  .policy-section {
    padding: 100px 24px;
  }

  .founder-section {
    padding: 0 24px 160px;
  }

  .footer-logo-section {
    padding: 80px 24px 0;
  }

  .companies-headline {
    font-size: 28px;
  }

  .hero-copy {
    font-size: clamp(18px, 4vw, 28px);
  }

  .hero-sub {
    font-size: 11px;
  }

  .hero-logo-svg {
    max-width: 400px;
  }

  .hero-cta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section-title {
    font-size: clamp(28px, 5vw, 42px);
  }

  .final-cta-title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .final-cta-buttons .btn {
    padding: 16px 32px;
  }

  .activity-card {
    min-height: 280px;
  }

  .activity-card-overlay,
  .activity-card:nth-child(even) .activity-card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0.5) 50%,
      rgba(0,0,0,0.85) 100%
    );
  }

  .activity-card-inner,
  .activity-card:nth-child(even) .activity-card-inner {
    padding: 24px;
    margin-left: 0;
    text-align: left;
  }

  .activity-card-num {
    font-size: 48px;
  }

  .activity-card-title {
    font-size: 20px;
  }

  .policy-card-title {
    font-size: 24px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .timeline-content {
    padding: 4px 0 32px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .flow-visual {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .wall-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .the-lens {
    min-height: 30vh;
  }

  .the-lens::before {
    background-size: 40px 40px;
  }

  .lens-glow,
  .the-lens-light .lens-glow {
    background-size: 80px 80px;
  }

  .the-lens-mini {
    min-height: 15vh;
  }

  .pricing-box {
    padding: 40px 24px;
  }

  .hero-badges {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .uncut-question {
    padding: 32px 24px;
  }

  .uncut-card::before {
    filter: grayscale(100%) brightness(0.2);
  }

  .uncut-reveal-inner {
    padding: 0 24px 32px;
  }

  .wall-cell.active .wall-cell-back {
    border-color: rgba(200,169,110,0.4);
  }
}

/* ===== RESPONSIVE: MOBILE (479px) ===== */
@media (max-width: 479px) {
  :root {
    --section-px: 16px;
  }

  .section {
    padding: 80px 16px;
  }

  .faq-section {
    padding: 80px 16px 120px;
  }

  .final-cta-section {
    padding: 80px 16px;
  }

  .hero-brand {
    padding: 80px 16px 48px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-logo-svg {
    max-width: 280px;
  }

  .hero-sub {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .policy-section {
    padding: 80px 16px;
  }

  .policy-section .section-title {
    font-size: 28px;
  }

  .policy-card-title {
    font-size: 20px;
  }

  .companies-headline {
    font-size: 24px;
  }

  .founder-section {
    padding: 0 16px 120px;
  }

  .footer-logo-section {
    padding: 60px 16px 0;
  }

  .faq-question-text {
    font-size: 17px;
  }

  .header {
    padding: 0 16px;
  }

  .header-cta .btn-outline {
    display: none;
  }

  .target-filter-items {
    grid-template-columns: 1fr;
  }

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

  .wall-cell-why {
    font-size: 12px;
  }

  .wall-cell-back {
    padding: 16px;
  }

  .the-lens {
    min-height: 25vh;
  }

  .the-lens-mini {
    min-height: 12vh;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }

  .scroll-arrow {
    width: 16px;
    height: 16px;
  }

  .uncut-question {
    padding: 24px 16px;
  }

  .uncut-reveal-inner {
    padding: 0 16px 24px;
  }

  .pricing-info-item {
    grid-template-columns: 1fr;
  }

  .pricing-info-label {
    margin-bottom: 4px;
  }

  .pricing-info-value {
    text-align: left;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .company-logo-cell {
    padding: 16px 20px;
    min-height: 60px;
  }

  .company-logo-cell img {
    max-height: 28px;
  }

  .voice-cards {
    grid-template-columns: 1fr;
  }

  .voice-card {
    padding: 32px 16px 24px 32px;
  }

  .voice-card::before {
    font-size: 64px;
    top: -4px;
    left: 8px;
  }

  .voice-card-text {
    font-size: 15px;
    line-height: 1.85;
    padding-left: 12px;
  }

  .voice-card-author {
    padding-left: 12px;
  }

  .voice-card-avatar {
    width: 44px;
    height: 44px;
  }

  .voice-card-company {
    font-size: 12px;
  }

  .voice-card-name {
    font-size: 13px;
  }

  .value-formula {
    padding: 32px 16px;
  }

  .formula-operator {
    font-size: 28px;
  }

  .target-item-percent {
    font-size: 28px;
  }

  .pricing-box {
    padding: 32px 16px;
  }
}
