@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes logoReveal {
  0% { opacity: 0; transform: translateY(20px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes dividerDraw {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes bloomGlow {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes lineSweepLeft {
  0% { opacity: 0; transform: translateX(-48px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes lineSweepRight {
  0% { opacity: 0; transform: translateX(48px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes capitalReveal {
  0% { opacity: 0; letter-spacing: 18px; }
  100% { opacity: 1; letter-spacing: 12px; }
}
@keyframes taglineReveal {
  0% { opacity: 0; transform: translateY(18px); letter-spacing: 0.12em; filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.02em; filter: blur(0); }
}
@keyframes entranceFallbackFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* SECTION 1: ENTRANCE */
.entrance-container {
  min-height: 100vh;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  box-sizing: border-box;
}
.entrance-bloom {
  position: absolute;
  width: min(80vw, 920px);
  height: min(80vw, 920px);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  background: radial-gradient(circle, rgba(240,235,225,0.82) 0%, rgba(253,251,247,0.56) 36%, rgba(255,255,255,0) 72%);
  pointer-events: none;
  animation: bloomGlow 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  z-index: 1;
  display: none;
}
.entrance-lines {
  position: relative;
  z-index: 2;
  width: min(92vw, 1200px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.entrance-line {
  height: 0.5px;
  width: clamp(90px, 20vw, 280px);
  background: linear-gradient(90deg, rgba(184,160,112,0), rgba(184,160,112,0.9), rgba(184,160,112,0));
  opacity: 0;
}
.entrance-line.left {
  animation: lineSweepLeft 2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.entrance-line.right {
  animation: lineSweepRight 2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.entrance-logo-core {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.entrance-logo-core .logo-lockup {
  animation: logoReveal 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
  text-align: left;
  align-items: flex-start;
}
.entrance-brand-row {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4.2vw, 56px);
}
.entrance-logo-video-wrap {
  width: clamp(280px, 34vw, 430px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  line-height: 0;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
}
.entrance-hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: entranceFallbackFadeIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.entrance-hero-fallback.is-hidden {
  opacity: 0;
  animation: none;
}
.entrance-logo-video-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.entrance-logo-video-canvas.is-visible {
  opacity: 1;
}
.entrance-logo-video-source {
  display: none;
}
.entrance-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 8px;
}
.entrance-logo-core .logo-wordmark {
  font-size: clamp(58px, 7vw, 90px);
  line-height: 0.8;
}
.entrance-logo-core .logo-capital {
  font-size: clamp(13px, 1vw, 18px);
  letter-spacing: 11px;
  margin-top: 6px;
  animation: capitalReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.entrance-logo-core .logo-divider {
  width: clamp(44px, 5vw, 80px);
  transform-origin: center;
  animation: dividerDraw 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
  margin: 14px 0;
}
.entrance-logo-core .logo-tagline {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.4;
  opacity: 0;
  animation: taglineReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
}
@media (prefers-reduced-motion: reduce) {
  .entrance-hero-fallback {
    animation-duration: 0.01ms;
    animation-delay: 0s !important;
    transition-duration: 0.01ms;
  }
  .entrance-logo-video-canvas {
    transition-duration: 0.01ms;
  }
}
@media (max-width: 900px) {
  .entrance-logo-core {
    top: 47%;
  }
  .entrance-brand-row {
    flex-direction: column;
    gap: 22px;
  }
  .entrance-logo-video-wrap {
    width: min(72vw, 360px);
  }
  .entrance-brand-text {
    align-items: center;
    text-align: center;
  }
  .entrance-logo-core .logo-divider {
    margin: 14px auto;
  }
}
.logo-lockup {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-illustration {
  width: 110px;
  display: block;
  margin-bottom: 6px;
}
.logo-illustration.small {
  width: 90px;
  margin-bottom: 5px;
}
.logo-wordmark {
  font-family: 'Pinyon Script', cursive;
  font-size: 64px;
  color: #1A2744;
  line-height: 0.85;
}
.logo-wordmark.small {
  font-size: 48px;
}
.logo-capital {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #B8A070;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-top: 4px;
}
.logo-divider {
  width: 30px;
  height: 0.5px;
  background: #B8A070;
  margin: 16px auto;
}
.logo-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: #7A8FA3;
}
.logo-tagline.small {
  font-size: 14px;
}

/* SECTION 2: STATEMENT */
.statement-section {
  min-height: 100vh;
  background: #1A2744;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 64px;
}
.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 2.2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.statement-divider {
  width: 60px;
  height: 0.5px;
  background: #B8A070;
  margin: 32px auto;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.statement-attribution {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 10px;
  color: #7A8FA3;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.statement-section--cursor-glow {
  position: relative;
}
.statement-section--cursor-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle 300px at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(184, 160, 112, 0.06),
    transparent
  );
}
.statement-section--cursor-glow > div:first-child {
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .statement-text {
    font-size: clamp(22px, 5.5vw, 28px) !important;
    line-height: 1.5 !important;
  }
  .statement-section {
    min-height: 60vh !important;
  }
}

/* SECTION 3: OFFERING — intro + sticky tabs + full-height pillar sections */
.offering-section {
  background: #FDFBF7;
  position: relative;
}
.offering-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 112px) clamp(24px, 4vw, 40px) clamp(32px, 5vw, 48px);
}
.offering-intro {
  text-align: center;
  margin: 0;
}
.offering-intro-kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7A8FA3;
  margin-bottom: 16px;
}
.offering-intro-head {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  color: #1A2744;
  line-height: 1.25;
  margin: 0 0 18px;
}
.offering-intro-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  color: #4A5A6E;
  line-height: 1.8;
  margin: 0;
}
.offering-pillar-nav {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  padding: 14px clamp(20px, 3vw, 40px) 16px;
  margin: 0;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(184, 160, 112, 0.35);
  box-sizing: border-box;
}
.offering-pillar-nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 900px) {
  .offering-pillar-nav {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}
.offering-pillar-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A8FA3;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
  box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.offering-pillar-btn:hover {
  color: #1A2744;
}
.offering-pillar-btn.active {
  color: #1A2744;
  box-shadow: inset 0 -2px 0 #B8A070;
}
.offering-pillar {
  position: relative;
  scroll-margin-top: 134px;
  min-height: min(100vh, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vh, 140px) clamp(24px, 5vw, 56px);
  box-sizing: border-box;
}
.offering-pillar--warm {
  background: #F0EBE1;
}
.offering-pillar--cream {
  background: #FDFBF7;
}
.offering-pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #B8A070 0%, rgba(184, 160, 112, 0.25) 55%, transparent 100%);
  pointer-events: none;
}
.offering-pillar-inner {
  width: 100%;
  max-width: 640px;
  position: relative;
}
.offering-pillar:not(.is-revealed) .offering-pillar-inner {
  opacity: 0;
  transform: translateY(32px);
}
.offering-pillar.is-revealed .offering-pillar-inner {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 48px);
  color: #1A2744;
  margin: 0 0 22px;
  line-height: 1.12;
}
.offering-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.12vw, 17px);
  color: #3d4d5e;
  line-height: 1.85;
  margin: 0 0 16px;
}
.offering-cap-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7A8FA3;
  margin: 0 0 12px;
}
.offering-divider {
  width: 44px;
  height: 0.5px;
  background: #B8A070;
  margin: 28px 0 18px;
}
.offering-capability {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  color: #1A2744;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
.offering-capability::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 0.5px;
  background: #B8A070;
}

/* SECTION 4: CTA */
.cta-section {
  min-height: 100vh;
  background: #1A2744;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 48px);
}
.cta-frame {
  background: #FFFFFF;
  border-radius: 6px;
  padding: clamp(32px, 5vw, 48px) clamp(28px, 5vw, 64px);
  border: 0.5px solid rgba(184,160,112,0.2);
  margin-bottom: 48px;
}
.cta-qualifier {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2.5vw, 20px);
  color: #E8DFD0;
  margin: 0 auto 20px;
  padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
  max-width: 560px;
  line-height: 1.55;
}
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(22px, 4vw, 28px);
  color: #E8DFD0;
  margin: 0 auto 32px;
  padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
  max-width: 720px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.cta-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E8DFD0;
  background: rgba(253,251,247,0.06);
  border: 0.5px solid rgba(253,251,247,0.15);
  padding: 16px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-button:hover {
  background: rgba(253,251,247,0.12);
  transform: translateY(-1px);
}
.cta-domain {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 9px;
  color: rgba(122,143,163,0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.cta-footer {
  position: absolute;
  bottom: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 8px;
  color: rgba(122,143,163,0.25);
  letter-spacing: 2px;
}

.cta-qualifier {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(253, 251, 247, 0.7);
  margin: 0 0 12px;
  text-align: center;
}

/* SECTION 3.5: PROOF STRIP */
.proof-strip {
  background: #1A2744;
  padding: 64px 28px;
}
.proof-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.proof-strip-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #B8A070;
  line-height: 1.1;
  margin-bottom: 8px;
}
.proof-strip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.6);
}
@media (max-width: 599px) {
  .proof-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
