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

html { scroll-behavior: smooth; }

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

::selection {
  background: var(--gold);
  color: var(--black);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

.section-block {
  padding: var(--section-gap) 0;
  background: var(--paper);
  position: relative;
}

.section-block:nth-child(even) {
  background: var(--surface);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-label {
  justify-content: flex-start;
}

.section-header--left .section-heading {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-label--plain::before {
  display: none;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 auto;
}

#idea.section-block {
  padding: 0;
  background: var(--white);
}

.idea-hero {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background: var(--white);
}

.idea-hero::after {
  content: '';
  display: block;
  width: 100%;
  height: clamp(44px, 5vw, 60px);
  background: var(--paper);
}

.idea-hero__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--white);
  overflow: hidden;
  padding: 48px 0 52px;
}

.idea-hero__panel .section-lamp {
  display: none;
}

.idea-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  width: 100%;
  background: transparent;
}

.idea-hero .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.idea-hero .scroll-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.idea-hero .pillars-table,
.idea-hero .pillars-cell,
.idea-hero .pillars-cell__inner {
  opacity: 1;
  transform: none;
  animation: none !important;
  transition: none !important;
}

/* Section lamp - Hero component style, gold & black */
.section-lamp {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  display: flex;
  width: 100vw;
  align-items: flex-start;
  justify-content: center;
  transform: translateX(-50%);
  isolation: isolate;
  pointer-events: none;
}

.section-lamp__blur {
  position: absolute;
  top: 0;
  z-index: 50;
  width: 100vw;
  height: 12rem;
  background: transparent;
  opacity: 0.1;
  backdrop-filter: blur(12px);
}

.section-lamp__glow {
  position: absolute;
  top: 0;
  z-index: 50;
  width: 28rem;
  height: 9rem;
  border-radius: 9999px;
  background: rgba(197, 162, 110, 0.6);
  opacity: 0.8;
  filter: blur(48px);
  transform: translateY(-30%);
}

.section-lamp__beam {
  position: absolute;
  top: 0;
  z-index: 30;
  height: 9rem;
  width: 8rem;
  border-radius: 9999px;
  background: rgba(197, 162, 110, 0.55);
  filter: blur(32px);
  transform: translateY(-20%);
}

.section-lamp__line {
  position: absolute;
  top: 0;
  z-index: 50;
  height: 2px;
  width: 15rem;
  background: rgba(197, 162, 110, 0.65);
  transform: translateY(-10%);
}

.section-lamp__cone {
  position: absolute;
  top: 0;
  height: 14rem;
  width: 15rem;
  overflow: visible;
  opacity: 0.5;
}

.section-lamp__cone--left {
  right: 50%;
  background: conic-gradient(from 70deg at center top, rgba(197, 162, 110, 0.55), transparent, transparent);
}

.section-lamp__cone--left::before,
.section-lamp__cone--left::after,
.section-lamp__cone--right::before,
.section-lamp__cone--right::after {
  content: '';
  position: absolute;
  z-index: 20;
  background: var(--paper);
}

.section-lamp__cone--left::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10rem;
  mask-image: linear-gradient(to top, white, transparent);
}

.section-lamp__cone--left::after {
  left: 0;
  bottom: 0;
  width: 10rem;
  height: 100%;
  mask-image: linear-gradient(to right, white, transparent);
}

.section-lamp__cone--right {
  left: 50%;
  background: conic-gradient(from 290deg at center top, transparent, transparent, rgba(197, 162, 110, 0.55));
}

.section-lamp__cone--right::before {
  right: 0;
  bottom: 0;
  width: 10rem;
  height: 100%;
  mask-image: linear-gradient(to left, white, transparent);
}

.section-lamp__cone--right::after {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 10rem;
  mask-image: linear-gradient(to top, white, transparent);
}

@keyframes sectionLampBeam {
  to { width: 16rem; }
}

@keyframes sectionLampLine {
  to { width: 30rem; }
}

@keyframes sectionLampGlow {
  to { opacity: 0.8; }
}

@keyframes sectionLampCone {
  to {
    width: 30rem;
    opacity: 1;
  }
}

#idea .section-header {
  margin-top: 102px;
  margin-bottom: 0;
}

#idea .section-heading {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--black);
}

#idea .idea-hero__content .section-heading em {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#idea .idea-hero__content .idea-prose {
  color: rgba(var(--black-rgb), 0.72);
}

#idea .idea-hero__content .idea-prose strong {
  color: var(--black);
}

#process .section-heading {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.section-heading em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-interactive {
  background: var(--surface-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-interactive.glitter-border {
  border: 1px solid var(--rule);
}

.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), var(--glow-gold);
  border-color: rgba(197, 162, 110, 0.35);
}

/* === MASTHEAD === */
.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  --masthead-control-h: 46px;
  --masthead-glass-bg: transparent;
  --masthead-glass-border: transparent;
  --masthead-glass-shadow: none;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.masthead.is-scrolled:not(.masthead--on-light) {
  --masthead-glass-bg: rgba(24, 23, 23, 0.38);
  --masthead-glass-border: rgba(255, 255, 255, 0.06);
  --masthead-glass-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Light page sections (Process, Guardrails, Nominate form) */
.masthead--on-light {
  --masthead-glass-bg: rgba(255, 255, 255, 0.42);
  --masthead-glass-border: rgba(255, 255, 255, 0.5);
  --masthead-glass-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.masthead--on-light.is-scrolled {
  --masthead-glass-bg: rgba(255, 255, 255, 0.5);
  --masthead-glass-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.masthead.is-scrolled,
.masthead--on-light {
  background: var(--masthead-glass-bg);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  border-bottom-color: var(--masthead-glass-border);
  box-shadow: var(--masthead-glass-shadow);
}

.masthead--on-light .brand-logo {
  filter: brightness(0);
  opacity: 0.9;
}

.masthead--on-light .brand-tag {
  color: rgba(0, 0, 0, 0.45);
}

.masthead--on-light .nav-tabs__item {
  color: rgba(0, 0, 0, 0.52);
}

.masthead--on-light .nav-tabs__item:hover,
.masthead--on-light .nav-tabs__item:focus-visible {
  color: rgba(0, 0, 0, 0.82);
}

.masthead--on-light .nav-tabs__item.is-active {
  color: var(--gold-deep);
}

.masthead--on-light .nav-tabs__line {
  background: var(--gold-deep);
}

.masthead-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px clamp(24px, 4vw, 56px) 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.masthead-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.masthead-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 24px);
  margin-left: auto;
  flex-shrink: 0;
}

.nav-tabs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 4px 10px;
  flex-shrink: 0;
}

.nav-tabs__item {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--champagne-muted);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.nav-tabs__label {
  display: block;
  padding: 8px 20px;
  border-radius: 6px;
}

.nav-tabs__item:hover,
.nav-tabs__item:focus-visible {
  color: var(--champagne-soft);
}

.nav-tabs__item.is-active {
  color: var(--gold-light);
}

.nav-tabs__hover-bg,
.nav-tabs__line {
  position: absolute;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.2s ease;
}

.nav-tabs__hover-bg {
  display: none;
}

.nav-tabs__line {
  z-index: 2;
  bottom: 4px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .nav-tabs__hover-bg,
  .nav-tabs__line {
    transition: none;
  }
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.masthead-edition {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lux-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(197, 162, 110, 0.16) 0%,
    rgba(242, 198, 132, 0.07) 48%,
    rgba(197, 162, 110, 0.12) 100%
  );
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--champagne);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(197, 162, 110, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(242, 198, 132, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nominate-btn {
  min-height: var(--masthead-control-h);
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(165deg, #F2C684 0%, #C5A26E 52%, #9E8256 100%);
  color: var(--black);
  border: 1px solid rgba(242, 198, 132, 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 4px 20px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(197, 162, 110, 0.42),
    0 0 36px rgba(242, 198, 132, 0.22);
}

.lux-cta:not(.nominate-btn) {
  min-height: 52px;
  padding: 0 36px;
  border-radius: 999px;
}

.lux-cta__arrow {
  font-size: 14px;
  line-height: 1;
  opacity: 0.95;
}

.nominate-btn:hover {
  background: linear-gradient(165deg, #F2C684 0%, #C5A26E 46%, #8A7358 100%);
  color: var(--black);
  border-color: rgba(242, 198, 132, 0.85);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 6px 22px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(242, 198, 132, 0.55),
    0 0 48px rgba(197, 162, 110, 0.35);
}

.lux-cta--dark:hover:not(.nominate-btn) {
  background: linear-gradient(
    135deg,
    rgba(197, 162, 110, 0.34) 0%,
    rgba(242, 198, 132, 0.18) 48%,
    rgba(197, 162, 110, 0.28) 100%
  );
  color: var(--gold-sparkle);
  border-color: rgba(242, 198, 132, 0.65);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(242, 198, 132, 0.28),
    var(--glow-gold);
}

.lux-cta--light {
  background: linear-gradient(
    135deg,
    rgba(197, 162, 110, 0.16) 0%,
    rgba(242, 198, 132, 0.08) 48%,
    rgba(197, 162, 110, 0.12) 100%
  );
  color: var(--black);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.08);
}

.lux-cta--light:hover {
  background: linear-gradient(
    135deg,
    rgba(197, 162, 110, 0.3) 0%,
    rgba(242, 198, 132, 0.16) 48%,
    rgba(197, 162, 110, 0.24) 100%
  );
  color: var(--gold-bronze);
  border-color: rgba(242, 198, 132, 0.55);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 24px rgba(0, 0, 0, 0.1),
    var(--glow-gold);
}

.lux-cta--ghost {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.48) 100%
  );
  border-color: rgba(197, 162, 110, 0.28);
}

.lux-cta--dark.lux-cta--ghost {
  color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 220, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.22);
}

.lux-cta--light.lux-cta--ghost {
  color: rgba(var(--black-rgb), 0.72);
}

.lux-cta--ghost:hover {
  border-color: rgba(242, 198, 132, 0.5);
}

.lux-cta.glitter-border::before {
  opacity: 0.75;
}

.lux-cta.glitter-border:hover::before {
  opacity: 1;
}

.nominate-btn.glitter-border::before {
  padding: 1.5px;
  opacity: 0.9;
  transform: translateZ(0);
  will-change: background-position;
  filter:
    drop-shadow(0 0 4px rgba(242, 198, 132, 0.75))
    drop-shadow(0 0 12px rgba(197, 162, 110, 0.5));
}

.nominate-btn.glitter-border:hover::before {
  opacity: 1;
  filter:
    drop-shadow(0 0 6px rgba(242, 198, 132, 0.95))
    drop-shadow(0 0 20px rgba(197, 162, 110, 0.65));
}

/* === HERO === */
.hero {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 72% 8%, rgba(197, 162, 110, 0.16), transparent 52%),
    radial-gradient(ellipse at 18% 82%, rgba(242, 198, 132, 0.08), transparent 48%),
    var(--black);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gradient-brand);
}

.hero-spiral {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  filter: none;
  transition: opacity 0.55s ease;
}

.hero-spiral.is-ready {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
}

/* Aurora cover - subtle wash beneath spiral */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.32;
}

.hero-aurora__layer {
  position: absolute;
  inset: -10px;
  opacity: 0.42;
  filter: blur(10px);
  pointer-events: none;
  background-image: var(--aurora-dark-gradient), var(--aurora-gold-gradient);
  background-size: 300% 200%, 300% 200%;
  background-position: 50% 50%, 50% 50%;
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

.hero-aurora__layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--aurora-dark-gradient), var(--aurora-gold-gradient);
  background-size: 200% 100%, 200% 100%;
  background-position: 50% 50%, 50% 50%;
  background-attachment: scroll;
  mix-blend-mode: soft-light;
  animation: heroAurora var(--aurora-duration) linear infinite;
}

.hero.is-banner-ready .hero-aurora__layer::after {
  mix-blend-mode: difference;
}

@keyframes heroAurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

.hero-inner {
  position: relative;
  z-index: 50;
  display: flex;
  width: 100%;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: heroContentRise 0.8s ease-in-out 0.3s both;
}

@keyframes heroContentRise {
  from {
    opacity: 0.5;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: rgba(197, 162, 110, 0.06);
}

.hero .glitter-border::before {
  transform: translateZ(0);
  will-change: background-position;
}

.badge-open {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--champagne);
  margin-bottom: 28px;
}

.hero-title .num-25 {
  font-family: inherit;
  font-weight: 400;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleShimmer 4s linear infinite;
}

@keyframes titleShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-title em {
  font-family: inherit;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-deck {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-byline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.hero-byline__sep {
  width: 1px;
  height: 12px;
  background: rgba(197, 162, 110, 0.45);
  flex-shrink: 0;
}

/* === STATS === */
.stats-strip {
  padding: 0;
  background: var(--paper);
  width: 100%;
  cursor: default;
}

.stats-strip.is-hover-active .stat-cell,
.stats-strip.is-hover-active .stat-cell.is-counting {
  background: rgba(197, 162, 110, 0.04);
  transition: background 0.45s ease;
}

.stats-strip:not(.is-hover-active) .stat-value {
  color: var(--gold);
  transition: color 0.3s ease, transform 0.3s ease;
}

.stats-strip.is-hover-active .stat-value,
.stats-strip.is-hover-active .stat-value.is-counting {
  color: var(--gold-sparkle);
}


.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.stats-glow-line {
  display: none;
}

.stat-cell {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease;
  isolation: isolate;
}

.stat-cell::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: 0;
  width: min(140px, 80%);
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242, 198, 132, 0.34) 0%, rgba(197, 162, 110, 0.12) 42%, transparent 72%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.88);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.stats-strip.is-hover-active .stat-cell::after,
.stat-cell.is-counting::after,
.stat-cell:hover::after {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.stat-cell.is-counting::after {
  transform: translate3d(-50%, -50%, 0) scale(1.04);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell.is-counting {
  background: rgba(197, 162, 110, 0.04);
}

.stat-cell:hover {
  background: rgba(197, 162, 110, 0.04);
}

.stat-cell:hover .stat-value {
  color: var(--gold-sparkle);
  transform: scale(1.04);
}

.stat-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: var(--weight-heading);
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.stat-value.is-done {
  opacity: 1;
  transform: scale(1);
}

.stat-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
}

/* === IDEA === */
.idea-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin-bottom: 0;
}

.idea-prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.idea-prose p {
  margin-bottom: 16px;
}

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

#idea .idea-prose p:first-child::first-letter {
  float: none;
  font-size: inherit;
  line-height: inherit;
  padding: 0;
  color: inherit;
}

.idea-prose strong {
  font-weight: 600;
  color: var(--ink);
}

#idea .section-lamp__cone--left::before,
#idea .section-lamp__cone--left::after,
#idea .section-lamp__cone--right::before,
#idea .section-lamp__cone--right::after {
  background: var(--white);
}

.idea-hero .section-lamp__cone {
  display: none;
}

/* === PILLARS TABLE (Vision / Mission / Principle) === */
.pillars-table {
  --pillars-line: rgba(201, 169, 98, 0.28);
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  background: var(--white);
  padding: 0;
  border-top: none;
  border-bottom: none;
}

.pillars-table__grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pillars-table__grid tr {
  height: auto;
}

.pillars-cell {
  position: relative;
  width: 33.333%;
  vertical-align: top;
  padding: 0;
  background: transparent;
  border: none;
  border-right: 1px solid var(--pillars-line);
  overflow: hidden;
  cursor: default;
}

.pillars-cell:last-child {
  border-right: none;
}

/* Full-cell diagonal gradient: light gold accent on white */
.pillars-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(var(--gold-rgb), 0.1) 0%,
      rgba(var(--gold-rgb), 0.04) 38%,
      rgba(var(--gold-rgb), 0.14) 52%,
      rgba(var(--gold-rgb), 0.06) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(var(--gold-rgb), 0.05) 1px,
      transparent 1px
    );
  background-size: 100% 100%, 4px 4px;
  background-repeat: no-repeat;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.pillars-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  opacity: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.08) 0%,
    rgba(var(--gold-rgb), 0.28) 48%,
    rgba(var(--gold-rgb), 0.18) 52%,
    rgba(var(--gold-rgb), 0.08) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 0.35s ease;
}

.pillars-cell__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  height: 100%;
  padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 56px);
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.35s ease;
}

.pillars-cell__head,
.pillars-text {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .pillars-table__grid tr:has(.pillars-cell:hover) .pillars-cell:not(:hover)::before {
    opacity: 0.72;
  }

  .pillars-table__grid tr:has(.pillars-cell:hover) .pillars-cell:not(:hover)::after {
    opacity: 0.72;
  }

  .pillars-cell:hover::before {
    background:
      linear-gradient(
        135deg,
        rgba(var(--gold-rgb), 0.18) 0%,
        rgba(var(--gold-rgb), 0.08) 38%,
        rgba(var(--gold-rgb), 0.24) 52%,
        rgba(var(--gold-rgb), 0.1) 100%
      ),
      radial-gradient(
        circle at center,
        rgba(var(--gold-rgb), 0.08) 1px,
        transparent 1px
      );
  }

  .pillars-cell:hover::after {
    opacity: 1;
  }

  .pillars-cell:hover .pillars-cell__inner {
    transform: translateY(-5px);
  }

  .pillars-cell:hover .pillars-icon {
    transform: scale(1.08);
    border-color: rgba(var(--gold-rgb), 0.62);
    background: linear-gradient(
      135deg,
      rgba(var(--gold-rgb), 0.34) 0%,
      rgba(var(--gold-rgb), 0.16) 100%
    );
    box-shadow:
      0 0 0 1px rgba(var(--gold-rgb), 0.18),
      0 0 18px rgba(var(--gold-rgb), 0.28);
  }

  .pillars-cell:hover .pillars-title {
    color: var(--gold-deep);
  }
}

.pillars-cell__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-height: calc(44px + 14px + clamp(25px, 2.2vw, 32px));
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.pillars-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.2) 0%,
    rgba(var(--gold-rgb), 0.1) 100%
  );
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.pillars-icon svg {
  width: 22px;
  height: 22px;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0;
  min-height: 1.15em;
  transition: color 0.35s ease;
}

.pillars-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(var(--black-rgb), 0.72);
  margin: 0;
  max-width: 36ch;
  flex: 1;
}

/* === CATEGORIES === */
.cat-table {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto auto 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 20px;
  align-content: start;
  padding: 44px 36px;
  min-height: 300px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.25s ease;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-card:hover {
  background: rgba(197, 162, 110, 0.04);
  box-shadow: none;
}

.feature-card__decor {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: none;
  -webkit-mask-image: linear-gradient(to bottom, #fff, transparent);
  mask-image: linear-gradient(to bottom, #fff, transparent);
}

.feature-card__decor-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(197, 162, 110, 0.05) 0%,
    rgba(197, 162, 110, 0.01) 100%
  );
  -webkit-mask-image: radial-gradient(farthest-side at top, #fff, transparent);
  mask-image: radial-gradient(farthest-side at top, #fff, transparent);
  opacity: 0.85;
}

.feature-card__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: 0.65;
}

.feature-card__grid .grid-pattern-stroke {
  stroke: rgba(197, 162, 110, 0.2);
}

.feature-card__grid .grid-pattern-fill {
  fill: rgba(197, 162, 110, 0.05);
}

.feature-card__icon {
  position: relative;
  z-index: 2;
  display: flex;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.92);
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
  align-self: start;
  min-height: calc(2 * 1.45em);
}

.feature-card__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.feature-card__desc {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
  align-self: start;
}

@supports not (grid-template-rows: subgrid) {
  .feature-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }

  .feature-card__title {
    margin-top: 20px;
    min-height: calc(2 * 1.45em);
  }

  .feature-card__desc {
    margin-top: 14px;
  }
}

/* === PROCESS === */
#process .section-header {
  margin-bottom: clamp(88px, 9vw, 120px);
}

#process.section-block {
  background: var(--champagne);
  color: var(--black);
  padding: clamp(128px, 13vw, 168px) 0 clamp(144px, 14vw, 192px);
}

#process .section-heading {
  color: var(--black);
}

#process .section-heading em {
  color: var(--gold-deep);
  background: none;
  -webkit-text-fill-color: var(--gold-deep);
}

#process .process-step-title {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 18px;
}

#process .process-step-desc {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.82;
  line-height: 1.72;
}

#process .process-step-num {
  color: #3F3020;
  text-shadow: none;
}

#process .process-step-node {
  background: none;
  border: none;
  box-shadow: none;
}

#process .process-step-node::before {
  opacity: 1;
}

.process-flow {
  width: 100%;
  padding-inline: clamp(32px, 5vw, 96px);
  padding-bottom: clamp(16px, 2vw, 32px);
}

.process-list {
  --process-gap: clamp(48px, 5.5vw, 88px);
  --process-flow-duration: 0.28s;
  --process-node-fill: rgba(var(--gold-rgb), 0.6);
  --process-node-fill-active: rgba(var(--gold-rgb), 0.6);
  --process-node-text: #3F3020;
  --process-node-size: 52px;
  --process-surface-px: 18px;
  --process-surface-pt: 24px;
  --process-node-center-x: calc(var(--process-surface-px) + var(--process-node-size) / 2);
  --process-node-center-y: calc(var(--process-surface-pt) + var(--process-node-size) / 2);
  --process-node-right: calc(var(--process-node-center-x) + var(--process-node-size) / 2);
  --process-segment-width: calc(100% - var(--process-node-right) + var(--process-gap) + var(--process-surface-px));
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--process-gap);
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.process-step-rail {
  display: block;
  position: absolute;
  top: var(--process-node-center-y);
  left: 0;
  width: 100%;
  height: 0;
  padding: 0;
  pointer-events: none;
  z-index: 1;
}

.process-step-rail::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--process-node-right);
  width: var(--process-segment-width);
  height: 2px;
  background: rgba(197, 162, 110, 0.18);
  transform: translateY(-50%);
  pointer-events: none;
  transition: background var(--process-flow-duration) ease, box-shadow var(--process-flow-duration) ease;
}

.process-step-rail::after {
  display: none;
}

.process-step:last-child .process-step-rail::before {
  display: none;
}

/* Progressive line fill: connectors light up from 01 toward active step */
.process-list[data-active-step="2"] .process-step:nth-child(1) .process-step-rail::before,
.process-list[data-active-step="3"] .process-step:nth-child(-n+2) .process-step-rail::before,
.process-list[data-active-step="4"] .process-step:nth-child(-n+3) .process-step-rail::before {
  background: linear-gradient(90deg, #C5A26E 0%, #F2C684 100%);
  box-shadow: 0 0 12px rgba(197, 162, 110, 0.35);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 100%;
  position: relative;
  transition: opacity var(--process-flow-duration) ease;
}

.process-step__surface {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: clamp(260px, 24vw, 300px);
  padding: 24px 18px 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
  box-shadow: none;
}

.process-step-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--process-flow-duration) ease,
    transform var(--process-flow-duration) ease,
    visibility 0s linear var(--process-flow-duration);
}

/* Reveal title + body in sync with 01 → 04 pointer progression */
.process-list.is-complete .process-step-panel,
.process-list[data-active-step="1"] .process-step:nth-child(1) .process-step-panel,
.process-list[data-active-step="2"] .process-step:nth-child(-n+2) .process-step-panel,
.process-list[data-active-step="3"] .process-step:nth-child(-n+3) .process-step-panel,
.process-list[data-active-step="4"] .process-step:nth-child(-n+4) .process-step-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity var(--process-flow-duration) ease,
    transform var(--process-flow-duration) ease,
    visibility 0s;
}

@media (hover: hover) {
  #process .process-step:hover .process-step-node {
    transform: scale(1.08);
  }

  #process .process-step:hover .process-step-node::before {
    background: var(--process-node-fill-active);
    box-shadow: none;
  }

  #process .process-list:has(.process-step:nth-child(2):hover) .process-step:nth-child(1) .process-step-rail::before,
  #process .process-list:has(.process-step:nth-child(3):hover) .process-step:nth-child(-n+2) .process-step-rail::before,
  #process .process-list:has(.process-step:nth-child(4):hover) .process-step:nth-child(-n+3) .process-step-rail::before {
    background: linear-gradient(90deg, #C5A26E 0%, #F2C684 100%);
    box-shadow: 0 0 12px rgba(197, 162, 110, 0.35);
  }
}

.process-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--process-node-size);
  height: var(--process-node-size);
  margin-bottom: 20px;
  border-radius: 50%;
  background: none;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  transition: transform var(--process-flow-duration) cubic-bezier(0.2, 0.6, 0.2, 1);
}

.process-step-node::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 1;
  background: var(--process-node-fill);
  box-shadow: none;
  transition:
    background var(--process-flow-duration) ease,
    transform var(--process-flow-duration) ease;
}

/* Progressive activation: circles 01 → active step */
.process-list[data-active-step="1"] .process-step:nth-child(1) .process-step-node::before,
.process-list[data-active-step="2"] .process-step:nth-child(-n+2) .process-step-node::before,
.process-list[data-active-step="3"] .process-step:nth-child(-n+3) .process-step-node::before,
.process-list[data-active-step="4"] .process-step:nth-child(-n+4) .process-step-node::before {
  background: var(--process-node-fill-active);
  box-shadow: none;
}

.process-list[data-active-step="0"] .process-step-node::before {
  background: var(--process-node-fill);
}

/* Active step: numbers and line only (no card container) */
.process-list.is-in-view:not(.is-complete)[data-active-step="1"] .process-step:nth-child(1) .process-step-node,
.process-list.is-in-view:not(.is-complete)[data-active-step="2"] .process-step:nth-child(2) .process-step-node,
.process-list.is-in-view:not(.is-complete)[data-active-step="3"] .process-step:nth-child(3) .process-step-node,
.process-list.is-in-view:not(.is-complete)[data-active-step="4"] .process-step:nth-child(4) .process-step-node {
  transform: scale(1.08);
}

.process-list.is-in-view:not(.is-complete)[data-active-step="1"] .process-step:nth-child(1) .process-step-node::before,
.process-list.is-in-view:not(.is-complete)[data-active-step="2"] .process-step:nth-child(2) .process-step-node::before,
.process-list.is-in-view:not(.is-complete)[data-active-step="3"] .process-step:nth-child(3) .process-step-node::before,
.process-list.is-in-view:not(.is-complete)[data-active-step="4"] .process-step:nth-child(4) .process-step-node::before {
  background: var(--process-node-fill-active);
  box-shadow: none;
}

.process-list.is-complete .process-step {
  opacity: 1;
}

#process .process-step.scroll-reveal {
  opacity: 1;
  transform: none;
}

.process-step-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--process-node-text, #3F3020);
  text-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--process-flow-duration) ease,
    color var(--process-flow-duration) ease,
    visibility 0s linear var(--process-flow-duration);
}

/* Numbers appear only when that step’s node / connector has activated */
.process-list[data-active-step="1"] .process-step:nth-child(1) .process-step-num,
.process-list[data-active-step="2"] .process-step:nth-child(-n+2) .process-step-num,
.process-list[data-active-step="3"] .process-step:nth-child(-n+3) .process-step-num,
.process-list[data-active-step="4"] .process-step:nth-child(-n+4) .process-step-num,
.process-list.is-complete .process-step-num {
  opacity: 1;
  visibility: visible;
  color: var(--process-node-text, #3F3020);
  transition:
    opacity var(--process-flow-duration) ease,
    color var(--process-flow-duration) ease,
    visibility 0s;
}

@media (hover: hover) {
  #process .process-step:hover .process-step-num {
    opacity: 1;
    visibility: visible;
  }
}

.process-step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
  transition: color var(--process-flow-duration) ease;
}

.process-step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--champagne-soft);
  transition: color var(--process-flow-duration) ease;
  flex: 1;
}

/* === RUBRIC === */
.rubric.section-block {
  overflow: hidden;
}

.rubric.section-block::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(197, 162, 110, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 162, 110, 0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center bottom;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 100%);
}

.rubric .section-inner {
  position: relative;
  z-index: 1;
}

.rubric .section-heading {
  max-width: 28ch;
  margin-inline: auto;
}

.rubric-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 24px auto 0;
}

.rubric-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1180px;
  margin: 56px auto 0;
  --rubric-stroke: 1.8;
}

.rubric-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.rubric-card__inner {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.rubric-card__inner--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 36px 32px 32px;
}

.rubric-card__inner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.rubric-card__visual {
  color: rgba(197, 162, 110, 0.35);
}

.rubric-card__visual--hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 200px;
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin-inline: auto;
}

.rubric-card__visual--hero.rubric-card__visual--sketch,
.rubric-card__visual--hero.rubric-card__visual--impact,
.rubric-card__visual--hero.rubric-card__visual--depth,
.rubric-card__visual--hero.rubric-card__visual--wide {
  flex: 0 0 200px;
  height: 200px;
  max-width: 100%;
}

.rubric-card__wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(197, 162, 110, 0.55);
}

.rubric-card__sketch-fill {
  fill: currentColor;
  opacity: 0.32;
}

.rubric-card__sketch-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--rubric-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.52;
}

.rubric-card__visual--sketch svg {
  width: 100%;
  height: 100%;
  color: rgba(197, 162, 110, 0.55);
}

.rubric-card__scale-fill {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0.55);
}

.rubric-card__scale-graph {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(242, 198, 132, 0.28));
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.rubric-card__scale-dot {
  filter: drop-shadow(0 0 6px rgba(242, 198, 132, 0.65));
  opacity: 0;
}

.rubric-card__visual--wide svg {
  width: 100%;
  height: 100%;
}

.rubric-card__sketch-stroke--fine {
  opacity: 0.38;
}

.rubric-card__sketch-dot {
  fill: currentColor;
  opacity: 0.45;
}

.rubric-card__visual--impact {
  position: relative;
  max-width: 100%;
}

.rubric-card__visual--impact::before {
  content: '';
  position: absolute;
  inset: 8% 12% 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 22%, rgba(242, 198, 132, 0.24), transparent 68%);
  pointer-events: none;
}

.rubric-card__visual--impact svg {
  position: relative;
  z-index: 1;
  color: rgba(197, 162, 110, 0.55);
  filter: drop-shadow(0 0 12px rgba(242, 198, 132, 0.28));
}

.rubric-card__impact-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0.15);
  opacity: 0.35;
  filter: drop-shadow(0 0 4px rgba(242, 198, 132, 0.28));
}

.rubric-card__impact-bar--tall {
  filter: drop-shadow(0 0 7px rgba(255, 240, 200, 0.42));
}

/* Card 01 - bar chart */
.rubric-card--1.is-in-view .rubric-card__impact-bar,
.rubric-card--1.is-animating .rubric-card__impact-bar {
  animation: impactBarRise 0.85s cubic-bezier(0.22, 0.85, 0.28, 1) forwards;
}

.rubric-card--1.is-in-view .rubric-card__impact-bar:nth-child(2),
.rubric-card--1.is-animating .rubric-card__impact-bar:nth-child(2) {
  animation-delay: 0.05s;
}

.rubric-card--1.is-in-view .rubric-card__impact-bar:nth-child(3),
.rubric-card--1.is-animating .rubric-card__impact-bar:nth-child(3) {
  animation-delay: 0.18s;
}

.rubric-card--1.is-in-view .rubric-card__impact-bar:nth-child(4),
.rubric-card--1.is-animating .rubric-card__impact-bar:nth-child(4) {
  animation-delay: 0.32s;
}

@keyframes impactBarRise {
  0% {
    transform: scaleY(0.15);
    opacity: 0.35;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes impactBarPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(242, 198, 132, 0.35)); }
  50% { filter: drop-shadow(0 0 10px rgba(255, 240, 200, 0.65)); }
}

.rubric-card--1:hover .rubric-card__visual--impact::before {
  opacity: 1;
  transform: scale(1.06);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.rubric-card__visual--impact::before {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.rubric-card__visual--depth {
  position: relative;
  max-width: 100%;
  width: 100%;
}

.rubric-card__visual--depth::before {
  content: '';
  position: absolute;
  inset: 4% 8% 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 18%, rgba(242, 198, 132, 0.26), transparent 68%);
  pointer-events: none;
}

.rubric-card__visual--depth svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(242, 198, 132, 0.28));
}

.rubric-card__depth-line {
  fill: none;
  stroke-width: 0.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
  opacity: 0.4;
}

.rubric-card__depth-line--fine {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}

.rubric-card__depth-line--marked {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.35;
  stroke-width: 0.8;
  filter: drop-shadow(0 0 4px rgba(242, 198, 132, 0.5));
}

.rubric-card--2.is-in-view .rubric-card__depth-line--marked,
.rubric-card--2.is-animating .rubric-card__depth-line--marked {
  animation: depthLineDraw 1.35s ease forwards;
}

.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(1),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(1) { animation-delay: 0s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(2),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(2) { animation-delay: 0.07s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(3),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(3) { animation-delay: 0.14s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(4),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(4) { animation-delay: 0.21s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(5),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(5) { animation-delay: 0.28s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(6),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(6) { animation-delay: 0.35s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--marked:nth-child(7),
.rubric-card--2.is-animating .rubric-card__depth-line--marked:nth-child(7) { animation-delay: 0.42s; }

.rubric-card--2.is-in-view .rubric-card__depth-line--fine,
.rubric-card--2.is-animating .rubric-card__depth-line--fine {
  animation: depthFineDraw 1s ease forwards;
}

.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(8),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(8) { animation-delay: 0.55s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(9),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(9) { animation-delay: 0.62s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(10),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(10) { animation-delay: 0.69s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(11),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(11) { animation-delay: 0.76s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(12),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(12) { animation-delay: 0.83s; }
.rubric-card--2.is-in-view .rubric-card__depth-line--fine:nth-child(13),
.rubric-card--2.is-animating .rubric-card__depth-line--fine:nth-child(13) { animation-delay: 0.9s; }

@keyframes depthLineDraw {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes depthFineDraw {
  to {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }
}

@keyframes depthLineGlow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(242, 198, 132, 0.42)); }
  50% { filter: drop-shadow(0 0 7px rgba(255, 240, 200, 0.72)); }
}

.rubric-card__depth-dot {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(242, 198, 132, 0.75));
}

.rubric-card--2.is-in-view .rubric-card__depth-dot,
.rubric-card--2.is-animating .rubric-card__depth-dot {
  animation: depthDotIn 0.55s ease forwards;
}

.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(1),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(1) { animation-delay: 0.45s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(2),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(2) { animation-delay: 0.52s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(3),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(3) { animation-delay: 0.59s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(4),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(4) { animation-delay: 0.66s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(5),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(5) { animation-delay: 0.73s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(6),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(6) { animation-delay: 0.8s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(7),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(7) { animation-delay: 0.87s; }
.rubric-card--2.is-in-view .rubric-card__depth-dot:nth-of-type(8),
.rubric-card--2.is-animating .rubric-card__depth-dot:nth-of-type(8) { animation-delay: 0.94s; }

.rubric-card--2:hover .rubric-card__visual--depth::before {
  opacity: 1;
  transform: scale(1.05);
}

.rubric-card__visual--depth::before {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

/* Card 03 - scale line chart */
.rubric-card--3.is-in-view .rubric-card__scale-graph,
.rubric-card--3.is-animating .rubric-card__scale-graph {
  animation: scaleLineDraw 1.35s ease forwards;
}

.rubric-card--3.is-in-view .rubric-card__scale-fill,
.rubric-card--3.is-animating .rubric-card__scale-fill {
  animation: scaleFillIn 1s cubic-bezier(0.22, 0.85, 0.28, 1) 0.25s forwards;
}

.rubric-card--3.is-in-view .rubric-card__scale-dot,
.rubric-card--3.is-animating .rubric-card__scale-dot {
  animation: scaleDotFade 0.45s ease 1.1s forwards;
}

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

@keyframes scaleLineGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(242, 198, 132, 0.3)); }
  50% { filter: drop-shadow(0 0 14px rgba(255, 240, 200, 0.55)); }
}

@keyframes scaleFillIn {
  to {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

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

@keyframes scaleDotPulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.rubric-card__scale-dot {
  transform-box: fill-box;
  transform-origin: center;
}

.rubric-card--3:hover .rubric-card__visual--wide::before {
  opacity: 1;
  transform: scale(1.04);
}

.rubric-card__visual--wide {
  position: relative;
}

.rubric-card__visual--wide::before {
  content: '';
  position: absolute;
  inset: 8% 4% 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(242, 198, 132, 0.22), transparent 70%);
  pointer-events: none;
  opacity: 0.75;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

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

@keyframes depthDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.rubric-card__depth-dot--bright {
  filter: drop-shadow(0 0 7px rgba(255, 240, 200, 0.95));
}

.rubric-card__copy {
  margin-top: 28px;
  width: 100%;
}

.rubric-card__copy--center {
  text-align: center;
}

.rubric-card__inner--hero .rubric-card__index {
  min-height: 1.2em;
}

.rubric-card__inner--hero .rubric-card__title {
  min-height: 2.6em;
}

.rubric-card__inner--hero .rubric-card__desc {
  min-height: 6.6em;
}

.rubric-card__index {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

.rubric-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 12px;
}

.rubric-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--champagne-soft);
}

.rubric-card__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding: 32px;
}

.rubric-card__icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(197, 162, 110, 0.28);
  box-shadow: 0 0 0 8px rgba(197, 162, 110, 0.04);
  color: var(--gold-rich);
}

.rubric-card__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.rubric-card__panel--sketch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 20px 24px 24px;
}

.rubric-card__panel--sketch svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  color: rgba(197, 162, 110, 0.55);
}

.rubric-card__panel--sketch .rubric-card__sketch-stroke {
  stroke-width: var(--rubric-stroke);
}

.rubric-card__panel {
  position: relative;
  margin-top: 24px;
  padding: 24px 20px 16px;
  border-top: 1px solid rgba(197, 162, 110, 0.16);
  border-left: 1px solid rgba(197, 162, 110, 0.16);
  border-top-left-radius: 14px;
  color: var(--gold-rich);
}

.rubric-card__panel:not(.rubric-card__panel--tags) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.rubric-card__panel svg {
  width: 100%;
  height: auto;
}

.rubric-card__panel:not(.rubric-card__panel--tags) svg {
  max-width: 220px;
  margin-inline: auto;
}

.rubric-card__panel--tags {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 180px;
  padding-inline: 24px;
}

.rubric-card__panel-dots {
  position: absolute;
  top: 10px;
  left: 14px;
  display: flex;
  gap: 6px;
}

.rubric-card__panel-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(197, 162, 110, 0.25);
  background: rgba(197, 162, 110, 0.08);
}

.rubric-card__tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rubric-card__tag-row--end {
  justify-content: flex-end;
}

.rubric-card__tag-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 198, 132, 0.82);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 198, 132, 0.35), transparent 55%),
    linear-gradient(155deg, #181717, #000000);
  box-shadow:
    0 0 0 1px rgba(197, 162, 110, 0.5),
    0 0 10px rgba(242, 198, 132, 0.42),
    0 0 20px rgba(242, 198, 132, 0.24),
    inset 0 0 8px rgba(242, 198, 132, 0.1);
  filter: drop-shadow(0 0 6px rgba(242, 198, 132, 0.45));
}

.rubric-card__tag-dot--lg {
  width: 32px;
  height: 32px;
  box-shadow:
    0 0 0 1px rgba(197, 162, 110, 0.55),
    0 0 12px rgba(242, 198, 132, 0.48),
    0 0 24px rgba(242, 198, 132, 0.28),
    inset 0 0 10px rgba(242, 198, 132, 0.12);
  filter: drop-shadow(0 0 8px rgba(255, 240, 200, 0.5));
}

.rubric-card__tag {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(197, 162, 110, 0.28);
  border-radius: 8px;
  background: rgba(197, 162, 110, 0.06);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
}

/* Card 04 - leadership panel chart */
.rubric-card__panel-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 6px rgba(242, 198, 132, 0.25));
}

.rubric-card__panel-fill {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0.45);
}

.rubric-card__panel-dots span {
  opacity: 0;
  transform: scale(0.4);
}

.rubric-card__icon-stroke {
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.rubric-card__icon-dot {
  opacity: 0;
  transform: scale(0.6);
  transform-box: fill-box;
  transform-origin: center;
}

.rubric-card--4.is-in-view .rubric-card__icon-wrap,
.rubric-card--4.is-animating .rubric-card__icon-wrap,
.rubric-card--5.is-in-view .rubric-card__icon-wrap,
.rubric-card--5.is-animating .rubric-card__icon-wrap {
  animation: iconWrapIn 0.55s ease forwards;
}

.rubric-card--4.is-in-view .rubric-card__icon-stroke,
.rubric-card--4.is-animating .rubric-card__icon-stroke,
.rubric-card--5.is-in-view .rubric-card__icon-stroke,
.rubric-card--5.is-animating .rubric-card__icon-stroke {
  animation: iconStrokeDraw 0.9s ease 0.12s forwards;
}

.rubric-card--5.is-in-view .rubric-card__icon-dot,
.rubric-card--5.is-animating .rubric-card__icon-dot {
  animation: iconDotIn 0.5s ease 0.35s forwards;
}

.rubric-card--4.is-in-view .rubric-card__panel-line,
.rubric-card--4.is-animating .rubric-card__panel-line {
  animation: panelLineDraw 1.25s ease forwards;
}

.rubric-card--4.is-in-view .rubric-card__panel-fill,
.rubric-card--4.is-animating .rubric-card__panel-fill {
  animation: scaleFillIn 0.95s cubic-bezier(0.22, 0.85, 0.28, 1) 0.22s forwards;
}

.rubric-card--4.is-in-view .rubric-card__panel-dots span,
.rubric-card--4.is-animating .rubric-card__panel-dots span {
  animation: panelDotIn 0.45s ease forwards;
}

.rubric-card--4.is-in-view .rubric-card__panel-dots span:nth-child(1),
.rubric-card--4.is-animating .rubric-card__panel-dots span:nth-child(1) { animation-delay: 0.08s; }

.rubric-card--4.is-in-view .rubric-card__panel-dots span:nth-child(2),
.rubric-card--4.is-animating .rubric-card__panel-dots span:nth-child(2) { animation-delay: 0.16s; }

.rubric-card--4.is-in-view .rubric-card__panel-dots span:nth-child(3),
.rubric-card--4.is-animating .rubric-card__panel-dots span:nth-child(3) { animation-delay: 0.24s; }

.rubric-card--4:hover .rubric-card__panel {
  box-shadow: inset 0 0 40px rgba(242, 198, 132, 0.06);
  transition: box-shadow 0.45s ease;
}

/* Card 05 - ethics tags */
.rubric-card__tag-dot {
  opacity: 0;
  transform: scale(0.5);
}

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(1) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(1) .rubric-card__tag,
.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(2) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(2) .rubric-card__tag,
.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(3) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(3) .rubric-card__tag {
  animation: tagItemIn 0.55s ease forwards;
}

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(1) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(1) .rubric-card__tag-dot,
.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(2) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(2) .rubric-card__tag-dot,
.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(3) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(3) .rubric-card__tag-dot {
  animation: tagDotIn 0.55s ease forwards;
}

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(1) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(1) .rubric-card__tag { animation-delay: 0.08s; }

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(1) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(1) .rubric-card__tag-dot { animation-delay: 0.15s; }

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(2) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(2) .rubric-card__tag { animation-delay: 0.22s; }

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(2) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(2) .rubric-card__tag-dot { animation-delay: 0.3s; }

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(3) .rubric-card__tag,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(3) .rubric-card__tag { animation-delay: 0.36s; }

.rubric-card--5.is-in-view .rubric-card__tag-row:nth-child(3) .rubric-card__tag-dot,
.rubric-card--5.is-animating .rubric-card__tag-row:nth-child(3) .rubric-card__tag-dot { animation-delay: 0.44s; }

.rubric-card--5:hover .rubric-card__panel--tags {
  background: radial-gradient(ellipse at 50% 50%, rgba(242, 198, 132, 0.08), transparent 72%);
  transition: background 0.45s ease;
}

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

@keyframes panelDotIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes iconWrapIn {
  from {
    opacity: 0.5;
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(197, 162, 110, 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(197, 162, 110, 0.04);
  }
}

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

@keyframes iconDotIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tagItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tagDotIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tagDotPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(242, 198, 132, 0.4));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(255, 240, 200, 0.65));
  }
}

@media (min-width: 561px) {
  .rubric-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .rubric-card--1,
  .rubric-card--4,
  .rubric-card--5 {
    grid-column: span 2;
  }

  .rubric-card--1,
  .rubric-card--2,
  .rubric-card--3 {
    display: flex;
  }
}

@media (min-width: 981px) {
  .rubric-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .rubric-card--1 {
    grid-column: span 2;
  }

  .rubric-card--2,
  .rubric-card--3 {
    grid-column: span 2;
  }

  .rubric-card--4,
  .rubric-card--5 {
    grid-column: span 3;
  }

  .rubric-card--1,
  .rubric-card--2,
  .rubric-card--3 {
    display: flex;
  }

  .rubric-card__inner--split {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
  }

  .rubric-card__panel {
    margin-top: 0;
    margin-right: -1px;
    margin-bottom: -1px;
  }

  .rubric-card__inner--split .rubric-card__panel:not(.rubric-card__panel--tags) {
    min-height: 100%;
  }

  .rubric-card__panel--tags {
    min-height: 100%;
  }
}

/* === GUARDRAILS === */
.guardrails.section-block {
  position: relative;
  background: var(--champagne);
  color: var(--black);
  overflow: hidden;
  padding: clamp(140px, 14vw, 184px) 0 clamp(152px, 15vw, 200px);
}

.guardrails::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.04) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.guardrails-inner {
  position: relative;
  z-index: 1;
  max-width: min(1320px, calc(100% - 48px));
}

.guardrails-header {
  text-align: center;
  margin-top: 0;
  margin-bottom: clamp(96px, 10vw, 128px);
}

.guardrails-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 22ch;
  margin: 0 auto;
}

.guardrails-quote em {
  font-family: inherit;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  background: none;
  -webkit-text-fill-color: var(--gold-deep);
}

.guardrails-pillars {
  --guardrails-icon-size: 64px;
  --guardrails-icon-glyph-size: 32px;
  --guardrails-icon-gap: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
  padding-top: calc(var(--guardrails-icon-size) + var(--guardrails-icon-gap));
  padding-bottom: clamp(16px, 2vw, 32px);
}

.guardrails-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  padding: 0;
  transition: border-color 0.35s ease;
}

.guardrails-pillar__surface {
  position: static;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin-top: 12px;
  padding: 16px 14px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  box-sizing: border-box;
  transform-origin: center center;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.guardrails-pillar__icon {
  position: absolute;
  top: calc(-1 * (var(--guardrails-icon-size, 64px) + var(--guardrails-icon-gap, 16px)));
  left: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--guardrails-icon-size, 64px);
  height: var(--guardrails-icon-size, 64px);
  margin-bottom: 0;
  border-radius: 50%;
  color: #3F3020;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
    background 0.35s ease,
    color 0.35s ease;
  background: rgba(var(--gold-rgb), 0.7);
  border: none;
  box-shadow: none;
}

.guardrails-pillar__icon svg {
  position: relative;
  z-index: 1;
  width: var(--guardrails-icon-glyph-size, 28px);
  height: var(--guardrails-icon-glyph-size, 28px);
  color: #3F3020;
  stroke: currentColor;
}

.guardrails-pillar:hover .guardrails-pillar__surface {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(197, 162, 110, 0.22);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.guardrails-pillar:hover .guardrails-pillar__icon {
  transform: scale(1.06);
  background: rgba(var(--gold-rgb), 0.7);
  color: #2A2014;
  box-shadow: none;
}

.guardrails-pillar:hover .guardrails-pillar__icon svg {
  color: #2A2014;
}

.guardrails-pillar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.guardrails-pillar:hover {
  z-index: 2;
  border-top-color: transparent;
}

.guardrails-pillar:hover::before {
  transform: scaleX(1);
}

.guardrails-pillar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 10px;
  min-height: calc(2 * 1.25em);
}

.guardrails-pillar__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
  flex: 1;
  min-height: calc(4 * 1.6em);
}

/* === GALA === */
.gala-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.gala-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  text-align: left;
}

.gala-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
  margin: 0;
  text-align: left;
}

.gala-heading em {
  font-style: normal;
  color: var(--gold-light);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gala-deck {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  margin-top: auto;
  padding-top: clamp(32px, 4vw, 56px);
  max-width: 38ch;
  text-align: left;
}

.gala-details {
  width: 100%;
  margin: 0;
  padding: 0;
}

.gala-details__row {
  display: grid;
  grid-template-columns: clamp(44px, 5vw, 56px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: center;
  padding: clamp(24px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.28);
}

.gala-details__row:first-child {
  border-top: 1px solid rgba(201, 169, 98, 0.28);
}

.gala-details__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  color: var(--gold-light);
}

.gala-details__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gala-details__content {
  min-width: 0;
}

.gala-details__label {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}

.gala-details__value {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 42ch;
}

/* === BENEFITS === */
.benefits-table {
  --benefit-line: rgba(255, 255, 255, 0.32);
  --benefit-line-soft: rgba(255, 255, 255, 0.2);
  width: 100%;
  border-top: 1px solid var(--benefit-line);
  border-bottom: 1px solid var(--benefit-line);
}

.benefits-table__grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.benefit-cell {
  width: 50%;
  vertical-align: top;
  padding: 0;
  background: transparent;
  border: none;
  border-right: 1px solid var(--benefit-line);
  border-radius: 0;
  box-shadow: none;
}

.benefit-cell:last-child {
  border-right: none;
}

.benefit-cell-inner {
  padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 56px);
}

.benefit-col-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit-col-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-col-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--gold-light);
}

.benefit-list { list-style: none; }

.benefit-list li {
  padding: 20px clamp(10px, 1.5vw, 14px);
  margin: 0 calc(-1 * clamp(10px, 1.5vw, 14px));
  border-bottom: 1px solid var(--benefit-line-soft);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: baseline;
  position: relative;
  z-index: 0;
  transform-origin: left center;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

@media (hover: hover) {
  .benefit-list:hover li:not(:hover) {
    opacity: 0.72;
  }

  .benefit-list li:hover {
    z-index: 2;
    transform: scale(1.03);
    background: rgba(201, 169, 98, 0.06);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      inset 0 0 0 1px rgba(201, 169, 98, 0.1);
    border-radius: 6px;
  }

  .gala-details__row {
    position: relative;
    z-index: 0;
    padding-left: clamp(10px, 1.5vw, 14px);
    padding-right: clamp(10px, 1.5vw, 14px);
    margin: 0 calc(-1 * clamp(10px, 1.5vw, 14px));
    transform-origin: left center;
    transition:
      transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
      background 0.35s ease,
      box-shadow 0.35s ease,
      opacity 0.35s ease;
  }

  .gala-details:hover .gala-details__row:not(:hover) {
    opacity: 0.72;
  }

  .gala-details__row:hover {
    z-index: 2;
    transform: scale(1.03);
    background: rgba(201, 169, 98, 0.06);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      inset 0 0 0 1px rgba(201, 169, 98, 0.1);
    border-radius: 6px;
  }
}

.benefit-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* === CALENDAR === */
.calendar-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  background: rgba(197, 162, 110, 0.06);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calendar-tag__base {
  color: var(--muted);
}

.calendar-tag__date {
  color: var(--gold-light);
  font-weight: 600;
}

.calendar-tag.glitter-border::before {
  opacity: 0.7;
}

.calendar-tag.glitter-border:hover::before {
  opacity: 1;
}

.calendar-table-wrap {
  --calendar-line: rgba(201, 169, 98, 0.22);
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid var(--calendar-line);
  border-bottom: 1px solid var(--calendar-line);
  overflow: visible;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
}

.calendar-table tbody {
  display: block;
}

.calendar-table tbody tr {
  display: grid;
  grid-template-columns: minmax(11rem, 20%) minmax(14rem, 32%) minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--calendar-line);
  position: relative;
  z-index: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.45s ease;
  transform-origin: center center;
}

.calendar-table tbody tr:last-child {
  border-bottom: none;
}

.calendar-table tbody tr:hover {
  transform: scale(1.02);
  z-index: 2;
  background: rgba(197, 162, 110, 0.08);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(197, 162, 110, 0.12);
}

.calendar-table td {
  padding: clamp(24px, 3vw, 32px) clamp(24px, 4vw, 56px);
  vertical-align: middle;
}

.calendar-date {
  width: auto;
  min-width: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
}

.calendar-milestone {
  width: auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  white-space: nowrap;
}

.calendar-now {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.calendar-now::before {
  content: '· ';
  color: var(--gold-muted);
}

.calendar-detail {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: min(42ch, 100%);
}

.calendar-table tbody tr.is-now {
  background: rgba(197, 162, 110, 0.1);
}

.calendar-table tbody tr.is-now:hover {
  background: rgba(197, 162, 110, 0.14);
}

/* === CTA === */
.cta {
  text-align: center;
  background: var(--black);
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(197, 162, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta .section-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.cta-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: none;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.cta-heading em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-deck {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}

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

.cta-btn-row .lux-cta {
  min-height: 52px;
  padding: 0 36px;
}

/* === FORM === */
.form-section.section-block {
  position: relative;
  background: var(--champagne);
  color: var(--black);
  overflow: hidden;
}

.form-section.section-block:nth-child(even) {
  background: var(--champagne);
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.form-section .section-label {
  color: var(--gold-deep);
}

.form-section .section-heading {
  color: var(--black);
}

.form-section .section-heading em {
  color: var(--gold-deep);
  background: none;
  -webkit-text-fill-color: var(--gold-deep);
}

.form-inner {
  position: relative;
  z-index: 1;
  max-width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

.form-intro {
  font-size: 17px;
  color: rgba(var(--black-rgb), 0.72);
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 4vw, 48px);
  line-height: 1.65;
}

.form-wizard {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 36px);
}

.form-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}

.form-pagination__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}

.form-pagination__rail {
  position: relative;
  width: 100%;
  padding-top: 18px;
}

.form-pagination__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(var(--black-rgb), 0.08);
  overflow: hidden;
}

.form-pagination__fill {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--gradient-brand);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.form-pagination__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 40px);
}

.form-pagination__step {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-pagination__step:hover:not(:disabled) {
  transform: translateY(-1px);
}

.form-pagination__step.is-active {
  transform: none;
}

.form-pagination__step:disabled {
  cursor: default;
  opacity: 0.42;
}

.form-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(var(--black-rgb), 0.12);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(var(--black-rgb), 0.32);
  background: rgba(var(--white-rgb), 0.6);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.form-pagination__step.is-active .form-pagination__num {
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.45);
  background: rgba(var(--gold-rgb), 0.1);
}

.form-pagination__step.is-complete .form-pagination__num {
  color: var(--gold-deep);
  border-color: rgba(var(--gold-rgb), 0.28);
  background: rgba(var(--gold-rgb), 0.06);
}

.form-pagination__name {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(var(--black-rgb), 0.38);
  text-align: left;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.form-pagination__step.is-active .form-pagination__name {
  color: var(--black);
}

.form-pagination__step.is-complete .form-pagination__name {
  color: rgba(var(--black-rgb), 0.62);
}

.form-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 62vh, 720px);
  padding: clamp(28px, 3.5vw, 44px);
  background: rgba(var(--white-rgb), 0.78);
  border: 1px solid rgba(var(--black-rgb), 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.04);
}

.form-steps__content {
  flex: 1;
  min-height: 0;
}

.form-step {
  display: none !important;
}

.form-step.is-active {
  display: grid !important;
}

.form-step[hidden] {
  display: none !important;
}

.form-step-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  padding-bottom: clamp(14px, 1.8vw, 18px);
  border-bottom: 1px solid rgba(var(--black-rgb), 0.08);
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(var(--black-rgb), 0.08);
}

.form-nav .lux-cta {
  min-height: 52px;
  padding: 0 36px;
}

.form-nav-btn--back {
  margin-right: auto;
}

.form-nav-btn--back[hidden],
#formNext[hidden],
#formSubmit[hidden] {
  display: none !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 28px) clamp(36px, 5vw, 72px);
  align-items: start;
}

.form-grid > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-row-full { grid-column: 1 / -1; }

.form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}

.form-label .req { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 10px;
  background: rgba(var(--white-rgb), 0.92);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--black);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(var(--black-rgb), 0.38);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 162, 110, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.55;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5A26E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-row input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.checkbox-row label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(var(--black-rgb), 0.72);
}

.form-success {
  display: none;
  padding: 48px 32px;
  text-align: center;
  background: rgba(var(--white-rgb), 0.82);
  border: 1px solid rgba(var(--black-rgb), 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.form-success.active { display: block; }

.form-success-title {
  font-family: var(--font-display);
  font-weight: var(--weight-heading);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--black);
}

.form-success-text {
  font-size: 16px;
  color: rgba(var(--black-rgb), 0.72);
  max-width: 480px;
  margin: 0 auto;
}

/* === FOOTER === */
.colophon {
  padding: 64px 0 32px;
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.colophon-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--rule);
}

.colophon-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.colophon-logo {
  height: 32px;
  width: auto;
}

.colophon-brand {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
}

.colophon-brand b {
  font-family: var(--font-display);
  font-weight: var(--weight-heading);
  font-size: 18px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.colophon-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.colophon-col ul { list-style: none; }

.colophon-col li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.colophon-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.colophon-col a:hover { color: var(--gold); }

.colophon-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* === ANIMATIONS === */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: rise 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.scroll-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  :root { --section-gap: 72px; }

  .nav-tabs { display: none; }

  .masthead-actions { margin-left: auto; }

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

  .stat-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }

  .rubric-bento {
    max-width: 100%;
    margin-top: 48px;
  }

  .gala-grid { grid-template-columns: 1fr; }

  .benefits-table__grid,
  .benefits-table__grid tbody,
  .benefits-table__grid tr {
    display: block;
    width: 100%;
  }

  .benefit-cell {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--benefit-line);
  }

  .benefit-cell:last-child {
    border-bottom: none;
  }

  .pillars-table__grid,
  .pillars-table__grid tbody,
  .pillars-table__grid tr {
    display: block;
    width: 100%;
  }

  .pillars-cell {
    display: block;
    width: 100%;
    vertical-align: top;
    border-right: none;
    border-bottom: 1px solid var(--pillars-line);
  }

  .pillars-table__grid tr {
    min-height: 0;
  }

  .idea-hero::after {
    height: clamp(36px, 5vw, 48px);
  }

  .pillars-table {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pillars-cell:last-child {
    border-bottom: none;
  }

  .pillars-cell__head {
    min-height: 0;
  }

  .pillars-text {
    max-width: none;
  }

  .gala-copy {
    display: block;
    min-height: auto;
  }

  .gala-heading {
    margin-bottom: 24px;
  }

  .gala-deck {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 32px;
    max-width: none;
  }

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

  .feature-card {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-card:nth-child(3n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }

  .process-flow {
    padding-inline: clamp(24px, 4vw, 48px);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px var(--process-gap, 56px);
  }

  .process-step-rail::before {
    left: var(--process-node-right);
    width: var(--process-segment-width);
  }

  .process-step:nth-child(2n) .process-step-rail::before {
    display: none;
  }

  .process-step:last-child .process-step-rail::before {
    display: none;
  }

  .process-list[data-active-step="2"] .process-step:nth-child(1) .process-step-rail::before,
  .process-list[data-active-step="3"] .process-step:nth-child(-n+2) .process-step-rail::before,
  .process-list[data-active-step="4"] .process-step:nth-child(-n+3) .process-step-rail::before {
    background: linear-gradient(90deg, #C5A26E 0%, #F2C684 100%);
    box-shadow: 0 0 12px rgba(197, 162, 110, 0.35);
  }

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

  .guardrails-header {
    margin-top: 0;
    margin-bottom: 64px;
  }

  .colophon-inner { grid-template-columns: 1fr 1fr; }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-steps {
    min-height: auto;
    padding: 24px 20px;
  }

  .form-pagination__steps {
    gap: 6px;
  }

  .form-pagination__step {
    gap: 6px;
  }

  .form-pagination__num {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  .form-pagination__name {
    font-size: 11px;
  }

  .calendar-table tbody tr:hover {
    transform: none;
    box-shadow: none;
  }

  .calendar-table tbody tr {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }

  .calendar-table,
  .calendar-table tbody {
    display: block;
    width: 100%;
  }

  .calendar-table td {
    display: block;
    width: 100%;
    padding: 12px clamp(24px, 4vw, 56px);
  }

  .calendar-table td:first-child {
    padding-top: 24px;
  }

  .calendar-table tr:last-child td:last-child {
    padding-bottom: 24px;
  }

  .calendar-date,
  .calendar-milestone {
    width: 100%;
  }

  .calendar-date {
    white-space: nowrap;
    letter-spacing: 0.14em;
  }

  .calendar-milestone {
    white-space: normal;
  }

  .colophon-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 560px) {
  .stats-inner { grid-template-columns: 1fr; }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-cell:last-child { border-bottom: none; }

  .cat-grid,
  .process-list,
  .guardrails-pillars { grid-template-columns: 1fr; }

  .process-step-rail {
    display: block;
    position: absolute;
    top: var(--process-node-center-y);
    left: var(--process-node-center-x);
    width: 0;
    height: 0;
    min-height: 0;
  }

  .process-step__surface {
    min-height: 220px;
  }

  .process-step-panel {
    margin-bottom: 0;
  }

  .process-step-rail::before {
    top: calc(var(--process-node-size) / 2);
    left: 0;
    width: 2px;
    height: calc(100% - var(--process-node-center-y) - (var(--process-node-size) / 2) + var(--process-gap) + var(--process-surface-pt));
    background: rgba(197, 162, 110, 0.18);
    transform: translateX(-50%);
  }

  .process-list[data-active-step="2"] .process-step:nth-child(1) .process-step-rail::before,
  .process-list[data-active-step="3"] .process-step:nth-child(-n+2) .process-step-rail::before,
  .process-list[data-active-step="4"] .process-step:nth-child(-n+3) .process-step-rail::before {
    background: linear-gradient(180deg, #C5A26E 0%, #F2C684 100%);
    box-shadow: 0 0 12px rgba(197, 162, 110, 0.35);
  }

  @media (hover: hover) {
    #process .process-list:has(.process-step:nth-child(2):hover) .process-step:nth-child(1) .process-step-rail::before,
    #process .process-list:has(.process-step:nth-child(3):hover) .process-step:nth-child(-n+2) .process-step-rail::before,
    #process .process-list:has(.process-step:nth-child(4):hover) .process-step:nth-child(-n+3) .process-step-rail::before {
      background: linear-gradient(180deg, #C5A26E 0%, #F2C684 100%);
      box-shadow: 0 0 12px rgba(197, 162, 110, 0.35);
    }
  }

  .process-step-rail::after {
    display: none;
  }

  .process-step:last-child .process-step-rail::before {
    display: none;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .colophon-inner { grid-template-columns: 1fr; }

  .hero-byline {
    flex-direction: column;
    gap: 10px;
  }

  .hero-byline__sep { display: none; }

  .idea-hero {
    padding: 0;
  }

  .idea-hero__panel {
    padding: 36px 0 52px;
  }

  .section-lamp__glow { width: 18rem; }
  .section-lamp__line { max-width: 90vw; }

  .masthead-edition { display: none; }

  .cta-heading {
    white-space: normal;
    font-size: clamp(22px, 6.5vw, 32px);
  }

  .cta-btn-row .lux-cta {
    width: 100%;
    max-width: 320px;
  }

  .form-nav .lux-cta {
    width: 100%;
    max-width: 320px;
  }

  .form-nav-btn--back {
    margin-right: 0;
  }
}

html.perf-lite .section-lamp__glow,
html.perf-lite .section-lamp__beam {
  filter: none;
}

html.perf-lite .section-lamp__blur {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.perf-lite .masthead.is-scrolled,
html.perf-lite .masthead--on-light {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.perf-lite .masthead.is-scrolled:not(.masthead--on-light) {
  background: rgba(24, 23, 23, 0.9);
}

html.perf-lite .masthead--on-light {
  background: rgba(255, 255, 255, 0.94);
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora__layer::after {
    animation: none !important;
  }

  .hero-inner { opacity: 1; transform: none; animation: none !important; }

  .hero-title .num-25 {
    animation: none !important;
  }

  .idea-hero.is-visible .section-lamp__beam,
  .idea-hero.is-visible .section-lamp__line,
  .idea-hero.is-visible .section-lamp__glow {
    animation: none !important;
  }

  .idea-hero:not(.is-visible) .section-lamp__glow {
    opacity: 0.8;
  }

  .idea-hero__content,
  .idea-hero .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-lamp__beam { width: 16rem; }
  .section-lamp__line { width: 30rem; }
  .section-lamp__cone { width: 30rem; opacity: 1; }

  .stat-value.is-counting {
    animation: none !important;
  }

  .guardrails-pillar:hover {
    transform: none;
  }

  .calendar-table tbody tr:hover {
    transform: none;
    box-shadow: none;
  }

  .guardrails-pillar:hover .guardrails-pillar__surface {
    transform: none;
  }

  .gala-details__row:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .gala-details:hover .gala-details__row:not(:hover) {
    opacity: 1;
  }

  .benefit-list li:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  .benefit-list:hover li:not(:hover) {
    opacity: 1;
  }

  .guardrails-pillar:hover .guardrails-pillar__icon {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }

  .pillars-cell::before,
  .pillars-cell::after {
    opacity: 1;
    transition: none;
  }

  .pillars-cell:hover .pillars-cell__inner,
  .pillars-cell:hover .pillars-icon {
    transform: none;
  }

  .guardrails-pillar::before {
    transition: none;
  }

  .reveal,
  .scroll-reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rubric-card--1.is-in-view .rubric-card__impact-bar,
  .rubric-card--2.is-in-view .rubric-card__depth-line--marked,
  .rubric-card--2.is-in-view .rubric-card__depth-line--fine,
  .rubric-card--2.is-in-view .rubric-card__depth-dot,
  .rubric-card--3.is-in-view .rubric-card__scale-graph,
  .rubric-card--3.is-in-view .rubric-card__scale-fill,
  .rubric-card--3.is-in-view .rubric-card__scale-dot {
    animation: none !important;
  }

  .rubric-card--1.is-in-view .rubric-card__impact-bar {
    transform: scaleY(1);
    opacity: 1;
  }

  .rubric-card--2.is-in-view .rubric-card__depth-line--marked {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .rubric-card--2.is-in-view .rubric-card__depth-line--fine {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }

  .rubric-card--2.is-in-view .rubric-card__depth-dot {
    opacity: 1;
    transform: none;
  }

  .rubric-card--3.is-in-view .rubric-card__scale-graph {
    stroke-dashoffset: 0;
  }

  .rubric-card--3.is-in-view .rubric-card__scale-fill {
    opacity: 0.9;
    transform: scaleY(1);
  }

  .rubric-card--3.is-in-view .rubric-card__scale-dot {
    opacity: 1;
    transform: none;
  }

  .rubric-card--4.is-in-view .rubric-card__panel-line {
    stroke-dashoffset: 0;
  }

  .rubric-card--4.is-in-view .rubric-card__panel-fill {
    opacity: 1;
    transform: scaleY(1);
  }

  .rubric-card--4.is-in-view .rubric-card__panel-dots span {
    opacity: 1;
    transform: scale(1);
  }

  .rubric-card--4.is-in-view .rubric-card__icon-stroke,
  .rubric-card--5.is-in-view .rubric-card__icon-stroke {
    stroke-dashoffset: 0;
  }

  .rubric-card--5.is-in-view .rubric-card__icon-dot,
  .rubric-card--5.is-in-view .rubric-card__tag,
  .rubric-card--5.is-in-view .rubric-card__tag-dot {
    opacity: 1;
    transform: none;
  }
}
