/* ══════════════════════════════════════════════════════════════
   Home page (index.html) — page-specific styles.
   Iris-aperture bridge has been removed.
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem; will-change: transform, opacity;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.4; z-index: 1;
}
.orb-1 {
  width: 600px; height: 600px; background: var(--primary-blue);
  top: -10%; left: -10%;
  animation: floatOrb1 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; background: var(--teal);
  bottom: -15%; right: -5%;
  animation: floatOrb2 25s ease-in-out infinite;
}
.orb-3 {
  width: 500px; height: 500px; background: var(--lime);
  top: 25%; right: 15%; opacity: 0.18;
  animation: floatOrb3 30s linear infinite;
}

@keyframes floatOrb1 {
  0% { transform: translate(0,0) scale(1); }
  15% { transform: translate(250px,150px) scale(1.15); }
  30% { transform: translate(400px,-80px) scale(0.9); }
  50% { transform: translate(150px,250px) scale(1.1); }
  70% { transform: translate(-150px,100px) scale(1.2); }
  85% { transform: translate(-50px,-80px) scale(0.95); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes floatOrb2 {
  0% { transform: translate(0,0) scale(1); }
  15% { transform: translate(-300px,-100px) scale(1.15); }
  35% { transform: translate(-150px,-280px) scale(0.88); }
  50% { transform: translate(-400px,-60px) scale(1.2); }
  70% { transform: translate(-100px,-200px) scale(0.92); }
  85% { transform: translate(-250px,50px) scale(1.1); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes floatOrb3 {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(-350px,200px) scale(1.1); }
  50%  { transform: translate(-50px,400px) scale(0.95); }
  75%  { transform: translate(300px,150px) scale(1.15); }
  100% { transform: translate(0,0) scale(1); }
}

.hero-label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--lime);
  margin-bottom: 2rem; opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
  display: inline-flex; align-items: center; gap: 1rem;
}
.hero-label::before, .hero-label::after {
  content: ''; width: 30px; height: 1px; background: var(--lime);
}

.headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.0;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.headline .word {
  display: inline-block; opacity: 0; transform: translateY(40px);
  animation: wordReveal 0.8s var(--ease-out) forwards;
}
.headline > .word:nth-child(1) { animation-delay: 0.2s; }
.headline > .word:nth-child(2) { animation-delay: 0.4s; }
.headline > .word:nth-child(3) { animation-delay: 0.55s; }

.rotating-container { display: block; position: relative; height: 1.15em; margin-top: 0.1em; }
.rotating-text {
  display: block; position: absolute; left: 0; right: 0; top: 0;
  opacity: 0; transform: translateY(50px); white-space: nowrap;
}
.rotating-text.initial { opacity: 1; transform: none; }
.rotating-text.initial .word {
  display: inline-block; opacity: 0; transform: translateY(40px);
  animation: wordReveal 0.8s var(--ease-out) forwards;
}
.rotating-text.initial .word:nth-child(1) { animation-delay: 0.7s; }
.rotating-text.initial .word:nth-child(2) { animation-delay: 0.78s; }
.rotating-text.active { animation: textIn 0.8s var(--ease-out) forwards; }
.rotating-text.exit { animation: textOut 0.5s ease-in forwards; }

@keyframes wordReveal {
  0% { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes textIn  { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes textOut { from { opacity: 1; transform: translateY(0); }   to { opacity: 0; transform: translateY(-40px); } }

.subheadline {
  font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300;
  color: rgba(240, 244, 248, 0.6);
  max-width: 580px; margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0; animation: fadeIn 1s ease 1.0s forwards;
}

.hero .cta-btn { opacity: 0; animation: fadeIn 1s ease 1.15s forwards; }

.scroll-hint {
  position: absolute; bottom: 2rem; z-index: 2;
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-hint span {
  display: block; width: 24px; height: 38px;
  border: 2px solid rgba(240, 244, 248, 0.3);
  border-radius: 12px; position: relative;
}
.scroll-hint span::after {
  content: ''; width: 4px; height: 8px;
  background: var(--lime); border-radius: 2px;
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ── Section title (used in holo sections) ── */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem;
}
.section-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.55); line-height: 1.7;
  max-width: 600px;
}

/* ── STICKY TEXT LAYERS ── */
.sticky-section { position: relative; height: 300vh; }
.sticky-container {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sticky-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,88,214,0.12) 0%, var(--black) 70%);
}
.sticky-bg.bg-bridge {
  background: radial-gradient(ellipse at center, rgba(63,193,185,0.10) 0%, var(--black) 70%);
}
.sticky-layer {
  position: absolute; text-align: center; padding: 2rem;
  max-width: 900px; will-change: transform, opacity;
}
.sticky-layer h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem;
}
.sticky-layer p {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300;
  color: rgba(240, 244, 248, 0.6);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.sticky-layer .hl { color: var(--lime); }

/* ── ORIGAMI About fold ── */
.origami-section { position: relative; height: 550vh; }
.origami-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; perspective: 1200px;
}
.origami-door-left, .origami-door-right {
  position: absolute; top: 0;
  width: 50%; height: 100%; z-index: 10;
  will-change: transform; backface-visibility: hidden;
}
.origami-door-left {
  left: 0;
  transform-origin: left center;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-right: 1px solid rgba(193, 255, 114, 0.08);
}
.origami-door-right {
  right: 0;
  transform-origin: right center;
  background: linear-gradient(225deg, #0a0a0a 0%, #111 100%);
  border-left: 1px solid rgba(193, 255, 114, 0.08);
}
.origami-fold-left, .origami-fold-right {
  position: absolute; top: 0;
  width: 100%; height: 100%;
  backface-visibility: hidden; will-change: transform;
}
.origami-fold-left {
  right: 0;
  transform-origin: right center;
  background: linear-gradient(90deg, #080808, #0d0d0d);
}
.origami-fold-right {
  left: 0;
  transform-origin: left center;
  background: linear-gradient(270deg, #080808, #0d0d0d);
}
.origami-door-left::after, .origami-door-right::after {
  content: ''; position: absolute; top: 0;
  width: 2px; height: 100%;
  transition: opacity 0.3s ease;
}
.origami-door-left::after {
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(193,255,114,0.2), rgba(63,193,185,0.15), transparent);
}
.origami-door-right::after {
  left: 0;
  background: linear-gradient(180deg, transparent, rgba(63,193,185,0.15), rgba(193,255,114,0.2), transparent);
}
.origami-label {
  position: absolute; top: 50%;
  transform: translateY(-50%); z-index: 2;
  will-change: opacity;
}
.origami-door-left .origami-label { right: 4rem; text-align: right; }
.origami-door-right .origami-label { left: 4rem; text-align: left; }
.origami-label h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 0.5rem;
}
.origami-label .sub {
  font-size: 0.8rem; font-weight: 400;
  color: rgba(240, 244, 248, 0.55);
  text-transform: uppercase; letter-spacing: 0.2em;
}
.origami-content {
  position: relative; z-index: 5;
  max-width: 1000px; padding: 2rem 3rem;
  will-change: opacity, transform;
}
.origami-content-inner {
  display: flex; flex-direction: column; gap: 4rem;
}
.about-block { text-align: center; }
.about-block h3 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.about-block p {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.6);
  line-height: 1.8; max-width: 700px;
  margin: 0 auto 1rem;
}

.ceo-section {
  display: flex; align-items: center; gap: 3rem;
  flex-wrap: wrap; justify-content: center;
  padding: 2rem 0;
}
.ceo-photo {
  width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid rgba(240, 244, 248, 0.08);
  object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(5,88,214,0.15), rgba(63,193,185,0.1));
}
.ceo-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.25rem; }
.ceo-info .role {
  font-size: 0.85rem; color: var(--lime);
  font-weight: 500; margin-bottom: 0.75rem;
}
.ceo-info p {
  font-size: 0.95rem; max-width: 450px;
  font-weight: 300; color: rgba(240, 244, 248, 0.6);
  line-height: 1.7;
}

.origami-principles {
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 244, 248, 0.06);
  margin-top: 2rem;
}
.origami-principles h4 {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--lime); text-align: center;
  margin-bottom: 1.5rem; opacity: 0.6;
}
.principles-list {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.principles-track {
  display: flex; gap: 1rem; width: max-content;
  animation: principlesMarquee 35s linear infinite;
}
.principles-list:hover .principles-track { animation-play-state: paused; }
.principle-tag {
  flex-shrink: 0;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(240, 244, 248, 0.55);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(240, 244, 248, 0.08);
  border-radius: 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.principle-tag:hover { color: var(--lime); border-color: rgba(193, 255, 114, 0.25); }
@keyframes principlesMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.origami-more {
  text-align: center;
  margin-top: 1.5rem;
}
.origami-more-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--lime); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(193, 255, 114, 0.25);
  border-radius: 60px;
  transition: gap 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.origami-more-link:hover {
  gap: 0.85rem;
  border-color: var(--lime);
  background: rgba(193, 255, 114, 0.06);
}

@media (max-width: 768px) {
  .origami-section { height: auto; }
  .origami-sticky {
    position: static;
    height: auto;
    padding: 4rem 1.5rem;
  }
  .origami-door-left, .origami-door-right { display: none; }
  .origami-label { display: none; }
  .origami-content {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    padding: 0;
    max-width: 100%;
  }
  .origami-content-inner { gap: 2.5rem; }
  .ceo-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .ceo-photo { width: 120px; height: 120px; }
  .ceo-info { text-align: center; }
}

/* ── Featured-In (podcast) ── */
.featured-section {
  padding: 6rem 3rem; text-align: center; position: relative;
}
.featured-inner { max-width: 750px; margin: 0 auto; position: relative; z-index: 2; }
.featured-source {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.25em; color: rgba(240, 244, 248, 0.45);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
}
.featured-source.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.featured-headline {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
}
.featured-headline.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--ease-out) 0.08s, transform 0.5s var(--ease-out) 0.08s;
}
.featured-quote {
  font-size: 1.1rem; font-weight: 300; font-style: italic;
  color: rgba(240, 244, 248, 0.65);
  line-height: 1.7; margin-bottom: 2.5rem;
  padding: 0 2rem; position: relative;
  opacity: 0; transform: translateY(20px);
}
.featured-quote.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--ease-out) 0.16s, transform 0.5s var(--ease-out) 0.16s;
}
.featured-quote::before {
  content: '"';
  position: absolute; top: -1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 4rem; font-weight: 900; font-style: normal;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; opacity: 0.3;
}

.featured-player {
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.06);
  border-radius: 12px;
  padding: 1.5rem 2rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  text-align: left;
  opacity: 0; transform: translateY(20px);
}
.featured-player.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s var(--ease-out) 0.24s, transform 0.5s var(--ease-out) 0.24s;
}
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lime); border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 25px rgba(193, 255, 114, 0.15);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 40px rgba(193, 255, 114, 0.25); }
.play-btn svg { margin-left: 3px; }
.play-btn.playing svg .play-icon { display: none; }
.play-btn.playing svg .pause-icon { display: block; }
.play-btn:not(.playing) svg .pause-icon { display: none; }

.player-info { flex: 1; min-width: 0; }
.player-title {
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-sub { font-size: 0.7rem; color: rgba(240, 244, 248, 0.5); }
.player-progress {
  width: 100%; height: 3px;
  background: rgba(240, 244, 248, 0.08);
  border-radius: 2px; margin-top: 0.75rem;
  overflow: hidden; cursor: pointer;
}
.player-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.featured-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--lime); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.3s ease;
  opacity: 0;
}
.featured-link.visible {
  opacity: 1;
  transition: opacity 0.8s ease 0.6s, gap 0.3s ease;
}
.featured-link:hover { gap: 0.8rem; }

/* ── Holo section (services / solutions) ── */
.holo-section { padding: 10rem 3rem; position: relative; overflow: hidden; }
.holo-section-inner { max-width: 1200px; margin: 0 auto; }
.holo-section-head { margin-bottom: 5rem; }

.holo-cards {
  display: flex; justify-content: center; gap: 2rem;
  flex-wrap: wrap; position: relative; z-index: 5;
}
.holo-card {
  width: 340px; padding: 2.5rem 2rem; border-radius: 16px;
  position: relative; overflow: hidden; cursor: default;
  opacity: 0;
  background: transparent; border: 1px solid transparent;
  transform-style: preserve-3d;
}
.holo-card.materialized {
  background: rgba(5, 88, 214, 0.05);
  border: 1px solid rgba(63, 193, 185, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s ease;
}
.holo-card.materialized:hover { border-color: rgba(193, 255, 114, 0.32); }
.holo-card-inner { position: relative; z-index: 2; transform-style: preserve-3d; }
.holo-card-icon {
  width: 100%;
  aspect-ratio: 713 / 430;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.holo-card-icon img {
  display: block; width: 100%; height: 100%;
  object-fit: contain;
}
.holo-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.holo-card p { font-size: 0.9rem; font-weight: 300; color: rgba(240, 244, 248, 0.6); line-height: 1.75; }

.holo-card .sol-num {
  font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, rgba(193, 255, 114, 0.15), rgba(63, 193, 185, 0.1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 1.5rem;
}
.sol-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--lime); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.3s ease; margin-top: 1.5rem;
}
.sol-link:hover { gap: 0.8rem; }

@media (max-width: 1080px) {
  .holo-card { width: 100%; max-width: 400px; }
}

/* ── Quote (parallax zoom) ── */
.quote-section { position: relative; height: 200vh; }
.quote-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.quote-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 255, 114, 0.06), transparent 70%);
  pointer-events: none;
}
.quote-content {
  position: relative; text-align: center;
  max-width: 800px; padding: 2rem;
  will-change: transform, opacity;
}
.quote-mark {
  font-size: 6rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -1rem; display: block;
}
.quote-text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 300;
  line-height: 1.7; font-style: italic;
  color: rgba(240, 244, 248, 0.85);
  margin-bottom: 2rem;
}
.quote-author { font-size: 0.9rem; font-weight: 600; color: var(--lime); }
.quote-role {
  font-size: 0.8rem; font-weight: 400;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 0.25rem;
}

/* ── Tunnel zoom bridge ── */
.tunnel-section { position: relative; height: 140vh; }
.tunnel-fx {
  position: fixed; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1;
  opacity: 0; will-change: opacity;
}
.tunnel-scene { position: absolute; inset: 0; pointer-events: none; }
.streak {
  position: absolute; top: 50%; left: 50%;
  width: 2px; height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--lime) 50%, transparent 100%);
  transform-origin: center center;
  will-change: transform, opacity;
  opacity: 0;
}
.streak.teal {
  background: linear-gradient(180deg, transparent 0%, var(--teal) 50%, transparent 100%);
}
.tunnel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center,
    rgba(193, 255, 114, 0.30) 0%,
    rgba(5, 88, 214, 0.18) 30%,
    rgba(0, 0, 0, 0) 70%);
}

/* ── Customers ── */
.customers { padding: 10rem 3rem; text-align: center; position: relative; z-index: 2; }
.customers h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
  color: rgba(240, 244, 248, 0.85);
}
.customers-caption {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.55);
  max-width: 640px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.customers-coda {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.55);
  max-width: 620px;
  margin: 4rem auto 0;
  line-height: 1.7;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(240, 244, 248, 0.06);
}
.customer-top { margin-bottom: 2rem; position: relative; }
.customer-top::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(193, 255, 114, 0.2), transparent);
  margin: 1.5rem auto 0;
}
.seal-img-top {
  width: 220px; height: 220px;
  object-fit: contain;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0; transform: scale(0.8);
}
.seal-img-top.visible { opacity: 1; transform: scale(1); }
.seal-img-top:hover { transform: scale(1.08); }
.seal-label-top {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 0.75rem;
  transition: color 0.4s ease;
}
.customer-top:hover .seal-label-top { color: rgba(240, 244, 248, 0.7); }
.customer-branches {
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap; align-items: center;
}
.customer-seal {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  opacity: 0; transform: translateY(20px); cursor: default;
}
.customer-seal.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.seal-img {
  width: 160px; height: 160px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.seal-img:hover { transform: scale(1.1); }

/* Space Force seal fills its bounding box (solid roundel), unlike the other
   service seals which have transparent margins. Pad it down to match visual
   weight of the others. */
.seal-img--space-force {
  padding: 16px;
  box-sizing: border-box;
}
.seal-label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(240, 244, 248, 0.4);
  transition: color 0.4s ease;
}
.customer-seal:hover .seal-label { color: rgba(240, 244, 248, 0.7); }

/* ── Connect bridge → Associations ── */
.connect-section { position: relative; height: 280vh; }
.connect-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.connect-sticky .associations {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem 3rem;
  opacity: 0; transform: scale(0.1);
  transform-origin: center center;
  will-change: transform, opacity;
  z-index: 3; pointer-events: none;
}
.connect-sticky .associations.settled { pointer-events: auto; }
.connect-sticky .assoc-col { opacity: 1; transform: none; }
.connect-orb {
  position: absolute; top: 50%; left: 50%;
  width: 340px; height: 340px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  will-change: transform, opacity;
}
.connect-orb-left { background: var(--primary-blue); }
.connect-orb-right { background: var(--teal); }
.connect-thread {
  position: absolute; top: 50%; left: 50%;
  height: 1.5px; width: 0;
  background: linear-gradient(90deg, transparent, var(--lime) 15%, var(--lime) 85%, transparent);
  box-shadow: 0 0 14px rgba(193, 255, 114, 0.55);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: width, opacity;
  pointer-events: none;
}
.connect-glow {
  position: fixed; inset: 0;
  background: radial-gradient(circle at center,
    rgba(193, 255, 114, 0.22) 0%,
    rgba(63, 193, 185, 0.18) 30%,
    rgba(5, 88, 214, 0.10) 55%,
    rgba(0, 0, 0, 0) 75%);
  opacity: 0; z-index: 1;
  pointer-events: none; will-change: opacity;
}

.associations { padding: 10rem 3rem; text-align: center; position: relative; z-index: 2; }
.associations h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700;
  color: rgba(240, 244, 248, 0.6); margin-bottom: 4rem;
}
.assoc-columns {
  display: flex; justify-content: center;
  gap: 5rem; flex-wrap: wrap; align-items: flex-start;
}
.assoc-col {
  width: 260px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  opacity: 0; transform: translateY(20px);
}
.assoc-col.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.assoc-img {
  width: 200px; height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.assoc-col:hover .assoc-img { transform: scale(1.08); }
.assoc-label {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(240, 244, 248, 0.5);
  margin-top: 1.25rem; margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
.assoc-col:hover .assoc-label { color: rgba(240, 244, 248, 0.8); }
.assoc-event-col-label {
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--lime); opacity: 0.7;
  margin-bottom: 1rem;
}
.event-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid rgba(240, 244, 248, 0.06);
  padding-top: 1rem; width: 100%;
}
.event-item {
  padding: 0.4rem 0;
  display: block; text-decoration: none; color: inherit;
  transition: transform 0.2s ease;
}
a.event-item:hover { transform: translateX(2px); }
a.event-item:hover .event-name { color: rgba(240, 244, 248, 0.9); }
a.event-item:hover .event-detail { color: rgba(240, 244, 248, 0.6); }
.event-name {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(240, 244, 248, 0.65);
  margin-bottom: 0.2rem;
  transition: color 0.2s ease;
}
.event-detail {
  font-size: 0.7rem; font-weight: 400;
  color: rgba(240, 244, 248, 0.4);
  transition: color 0.2s ease;
}

/* ── Connect bridge → Associations: mobile/tablet fallback ── */
/* Below 1080px the 3 association columns no longer fit side-by-side,
   so the desktop scroll choreography (absolute-positioned content
   inside a 100vh sticky container) clips the wrapped content. Drop
   the choreography, render as normal flow, shrink imagery. JS also
   bails its scroll handler at this breakpoint. */
@media (max-width: 1080px) {
  .connect-section { height: auto; }
  .connect-sticky {
    position: static; height: auto; overflow: visible;
  }
  .connect-sticky .associations {
    position: static; inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    padding: 5rem 1.5rem;
  }
  .connect-orb,
  .connect-thread,
  .connect-glow { display: none !important; }
  .associations h2 { margin-bottom: 2.5rem; }
  .assoc-columns { gap: 3rem; }
  .assoc-col { width: 280px; max-width: 100%; }
  .assoc-img { width: 140px; height: 140px; }
  .assoc-label { margin-top: 1rem; margin-bottom: 1rem; }
}

/* ── Pitch generator ── */
.pitch-section { padding: 10rem 3rem; position: relative; overflow: hidden; }
.pitch-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.pitch-input-wrap { position: relative; margin-top: 3rem; margin-bottom: 2rem; }
.pitch-input {
  width: 100%;
  padding: 1.25rem 1.5rem; padding-right: 5rem;
  font-family: inherit;
  font-size: 1rem; font-weight: 400;
  color: var(--white);
  background: rgba(240, 244, 248, 0.04);
  border: 1px solid rgba(240, 244, 248, 0.1);
  border-radius: 12px; outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
.pitch-input::placeholder { color: rgba(240, 244, 248, 0.4); }
.pitch-input:focus {
  border-color: rgba(193, 255, 114, 0.4);
  box-shadow: 0 0 30px rgba(193, 255, 114, 0.05);
}
.pitch-submit {
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: none; border-radius: 10px;
  background: var(--lime); color: var(--black);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.pitch-submit:hover { background: #d4ff9e; transform: translateY(-50%) scale(1.05); }
.pitch-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: translateY(-50%); }

.pitch-hint {
  font-size: 0.75rem;
  color: rgba(240, 244, 248, 0.5);
  margin-bottom: 3rem;
}

.pitch-result { min-height: 120px; position: relative; }
.pitch-response {
  font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 300;
  line-height: 1.7; font-style: italic;
  color: rgba(240, 244, 248, 0.85);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.pitch-response.visible { opacity: 1; transform: translateY(0); }
.pitch-response .pitch-highlight {
  color: var(--lime); font-weight: 500; font-style: normal;
}
.pitch-actions {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.pitch-actions.visible { opacity: 1; }
.pitch-action-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-family: inherit;
  font-size: 0.8rem; font-weight: 600;
  border-radius: 8px; cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  border: none;
}
.pitch-action-btn.primary { background: var(--lime); color: var(--black); }
.pitch-action-btn.primary:hover { background: #d4ff9e; }
.pitch-action-btn.secondary {
  background: rgba(240, 244, 248, 0.06);
  color: rgba(240, 244, 248, 0.7);
  border: 1px solid rgba(240, 244, 248, 0.1);
}
.pitch-action-btn.secondary:hover {
  background: rgba(240, 244, 248, 0.1);
  color: var(--white);
}

.typing-dots {
  display: none; justify-content: center; gap: 6px;
  padding: 2rem 0;
}
.typing-dots.active { display: flex; }
.typing-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--lime);
  opacity: 0.3;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ── Final CTA ── */
.final-cta {
  position: relative; padding: 12rem 2rem;
  text-align: center; overflow: hidden;
}
.final-cta .orb-glow {
  position: absolute; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 255, 114, 0.05), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.final-cta p {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.55);
  margin-bottom: 3rem;
  position: relative; z-index: 2;
}
.final-cta .cta-btn { position: relative; z-index: 2; }

/* ── Contact form ── */
.contact-intro {
  max-width: 540px;
  margin: 0 auto 3rem;
  position: relative; z-index: 2;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  position: relative; z-index: 2;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .contact-row { grid-template-columns: 1fr; }
}
.contact-field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-field label {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(240, 244, 248, 0.7);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: inherit;
  font-size: 1rem; font-weight: 400;
  color: var(--white);
  background: rgba(240, 244, 248, 0.04);
  border: 1px solid rgba(240, 244, 248, 0.1);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c1ff72'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.75rem;
  cursor: pointer;
}
.contact-field select option { background: #0a0a0a; color: var(--white); }
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(240, 244, 248, 0.35);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(193, 255, 114, 0.4);
  box-shadow: 0 0 30px rgba(193, 255, 114, 0.05);
}
.contact-field input:user-invalid,
.contact-field select:user-invalid,
.contact-field textarea:user-invalid {
  border-color: rgba(255, 110, 110, 0.5);
}

/* Honeypot — visible only to bots, never to humans. */
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.contact-submit:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none;
  box-shadow: none;
}

.contact-status {
  font-size: 0.95rem; font-weight: 400;
  margin-top: 0.25rem;
  min-height: 1.4rem;
  line-height: 1.5;
}
.contact-status.pending { color: rgba(240, 244, 248, 0.6); }
.contact-status.success { color: var(--lime); }
.contact-status.error { color: rgba(255, 130, 130, 0.95); }
