/* =========================================================
   PRESLEY JOHN — PORTFOLIO MAIN CSS
   Clean cream / teal direction
   Purpose:
   - One CSS file only.
   - Starts from the hero and works down.
   - Keeps the island + origin icons + plane takeoff idea.
   - Keeps the band / zone layout for the rest of the page.
========================================================= */

/* =========================================================
   01. ROOT VARIABLES
========================================================= */
:root {
  --cream: #f4efe3;
  --cream-soft: #fff8ea;
  --cream-muted: #e7e4d8;

  --teal: #0f766e;
  --teal-bright: #18d7c8;
  --teal-dark: #063f3b;
  --teal-deep: #032b29;

  --ink: #052f2d;
  --muted: #6e807c;

   --infra-green: #2fa83b;
  --infra-blue: #1677ff;
  --infra-purple: #7b4dff;
  --infra-red: #f25c3b;
  --infra-gold: #d9a520;

  --glass: rgba(255, 248, 234, 0.72);
  --glass-strong: rgba(255, 248, 234, 0.88);
  --border: rgba(15, 118, 110, 0.22);
  --shadow: 0 24px 70px rgba(3, 43, 41, 0.14);

  --max-width: 1180px;
  --ease-main: cubic-bezier(0.16, 1, 0.3, 1);


}

/* =========================================================
   02. RESET / PAGE FOUNDATION
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 52% 18%, rgba(15, 118, 110, 0.12), transparent 32%),
    linear-gradient(180deg, var(--cream-soft), var(--cream));
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* =========================================================
   03. TOP NAVIGATION
========================================================= */
.topbar,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  background: rgba(3, 43, 41, 0.94);
  border-bottom: 1px solid rgba(255, 248, 234, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-soft);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal-bright);
  box-shadow: 0 0 0 7px rgba(24, 215, 200, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 248, 234, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream-soft);
  background: rgba(24, 215, 200, 0.12);
  border-color: rgba(24, 215, 200, 0.26);
  transform: translateY(-1px);
}

/* =========================================================
   04. PAGE SHELL
========================================================= */
.portfolio-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* =========================================================
   05. HERO / ORIGIN TAKEOFF
   Structure expected in HTML:
   .hero-stage
   .hero-takeoff
   img.svg-island
   .origin-unit > spans
   .takeoff-plane
   .hero-content OR .hero-stage__content
========================================================= */
.hero-stage {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 0px;
  padding: 110px 48px 86px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 215, 200, 0.10), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.08), transparent 30%);
}

.hero-takeoff {
  position: relative;
  z-index: 1;

  width: min(620px, 100%);
  height: 400px;

  margin-left: 120px;
  margin-top: 40px;

  opacity: 0.92;

  pointer-events: none;
}

.hero-takeoff .svg-island {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 68%;
  width: min(390px, 82vw);
  height: auto;
  opacity: 0.22;
  transform: translate(-50%, -50%);
  filter:
    brightness(0.92)
    drop-shadow(0 0 10px rgba(24, 215, 200, 0.12))
    drop-shadow(0 0 22px rgba(24, 215, 200, 0.08))
    drop-shadow(0 12px 24px rgba(3, 43, 41, 0.10));
}

.hero-takeoff::after {
  content: "";
  position: absolute;
  inset: -4% 8%;

  background:
    radial-gradient(
      circle,
      rgba(24, 215, 200, 0.16),
      transparent 62%
    );

  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.origin-unit {
  position: absolute;
  z-index: 4;
  left: 25%;
  top: 74%;
  display: flex;
  gap: 5px;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition:
    opacity 650ms ease,
    transform 1100ms var(--ease-main);
}

.takeoff-plane {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 56%;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.12);
  transition:
  opacity 620ms ease,
  transform 3400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.origin-unit span,
.takeoff-plane {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.9rem;
  background: transparent;
  border: 0;
  box-shadow:
    0 10px 24px rgba(3, 43, 41, 0.10),
    0 0 18px rgba(24, 215, 200, 0.10);
  filter: drop-shadow(0 8px 12px rgba(3, 43, 41, 0.16));
  backdrop-filter: none;
}

.origin-unit span:nth-child(1) {
  transform: translateY(2px) scaleX(-1);
}

.origin-unit span:nth-child(2) {
  transform: translateY(-2px);
}

.origin-unit span:nth-child(3) {
  transform: translateY(2px);
}
/*
.origin-person {
  transform: scaleX(-1);
}
*/
/* 1. Boarding: icons move toward the plane */
.hero-stage.is-boarding .origin-unit {
  transform: translate(120%, -260%) scale(1.08);
}

/* 2. Takeoff: icons fade, plane leaves */
.hero-stage.is-taking-off .origin-unit {
  opacity: 0;
}

.hero-stage.is-taking-off .takeoff-plane {
  transform:
    translate(340px, -260px)
    scale(1.75)
    rotate(24deg);
  opacity: 1;
}

/* 3. Leaving: plane fades out after route finishes */
.hero-stage.is-leaving .takeoff-plane {
  opacity: 0;
}

/* Silent reset: hide everything while positions snap back */
.hero-stage.is-hidden-reset .origin-unit,
.hero-stage.is-hidden-reset .takeoff-plane {
  opacity: 0;
  transition: none;
}

/* =========================================================
   06. HERO COPY
========================================================= */
.hero-content,
.hero-stage__content {
  position: relative;
  z-index: 8;
  width: min(900px, 100%);
  margin: -40px auto 0;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.intro-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--glass);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow,
.section-kicker,
.intake-title,
.proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage h1 {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;

  color: #073f3c;
  font-size: clamp(3.8rem, 6.4vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 950;

  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(3, 43, 41, 0.10);
}

.hero-stage h1 span {
  display: block;
  white-space: nowrap;

  margin-top: 26px;

  color: #13857d;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.hero-description,
.hero-stage__content p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(3, 43, 41, 0.58);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.42;
  font-weight: 700;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

/* =========================================================
   07. BUTTONS
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #022b28;
  background: linear-gradient(135deg, #18d7c8, #28f0b6);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.16);
}

/* =========================================================
   08. SHARED BANDS / ZONES
========================================================= */
.band {
  position: relative;
  min-height: 90vh;
  padding: 120px 24px;
}

.band-shell,
.band > div {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

/* [CLEANUP NOTE — 2026-06-05]
   Duplicate infrastructure background kept for reference.
   The active infrastructure styling lives in Section 10 below.

.band-infrastructure {
  background: linear-gradient(180deg, var(--cream), #e6f3ee);
}
*/

.band-cloud {
  background: linear-gradient(180deg, #e6f3ee, #d7ebe7);
}

.band-web {
  background: linear-gradient(180deg, #d7ebe7, var(--cream-soft));
}

.hahaii-section {
  background: linear-gradient(180deg, var(--cream-soft), #e6f3ee);
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2,
.hahaii-compact h2 {
  max-width: 900px;
  color: var(--teal-deep);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-header p,
.hahaii-compact p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 600;
}

/* =========================================================
   09. CARDS / PROOF BLOCKS
========================================================= */
.story-card,
.proof-card,
.signal-card,
.intake-card,
.cloud-principle-item,
.cloud-proof-stage,
.web-large,
.web-mid,
.web-small,
.cloud-side-left,
.cloud-center,
.cloud-side-right {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  color: var(--teal-dark);
}

.story-card h3,
.proof-card h3,
.signal-card h3,
.cloud-principle-item h3 {
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 1.08rem;
}

.story-card p,
.proof-card p,
.signal-card p,
.cloud-principle-item p,
.intake-card p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.intake-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.intake-card ul {
  display: grid;
  gap: 12px;
}

.intake-card li {
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.07);
  border: 1px solid rgba(15, 118, 110, 0.14);
  color: var(--teal-dark);
  font-weight: 800;
}


/* =========================================================
   10. INFRASTRUCTURE & CONNECTIVITY SECTION — CLEAN STABLE BAND
   Purpose:
   - Keeps all infrastructure styles in one place.
   - Prevents the section from appearing blank if Intersection Observer
     or refresh timing does not add .is-active / .is-infra-in-view.
   - Supports icon click, map highlight, focus panel, and review CTA.
========================================================= */

.band-infrastructure {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 16% 10%, rgba(24, 215, 200, 0.12), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(15, 118, 110, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(236, 250, 246, 0.98), rgba(255, 248, 234, 0.95));
  scroll-margin-top: 78px;
}

.infrastructure-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.infrastructure-header {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.infrastructure-header h2 {
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.infrastructure-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.45;
  font-weight: 750;
}

/* Map / proof image */
.infrastructure-map-card {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
  background: rgba(255, 248, 234, 0.76);
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow:
    0 24px 60px rgba(3, 43, 41, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.infrastructure-map-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

/* Reveal behavior — stable by default.
   Previous version made infrastructure opacity: 0 until JS added a class.
   That caused the blank section after refresh / anchor click. */
.band-infrastructure .reveal-sequence {
  opacity: 1;
  transform: translateY(0);
  filter: none;
  transition:
    opacity 850ms ease,
    transform 950ms var(--ease-main),
    filter 950ms ease;
}

/* Optional arrival polish when JS state is present. */
.band-infrastructure:not(.is-active):not(.is-infra-in-view) .reveal-sequence {
  animation: infraSafeRise 700ms var(--ease-main) both;
}

.band-infrastructure .reveal-sequence:nth-child(1) { animation-delay: 80ms; }
.band-infrastructure .reveal-sequence:nth-child(2) { animation-delay: 180ms; }
.band-infrastructure .reveal-sequence:nth-child(3) { animation-delay: 280ms; }
.band-infrastructure .reveal-sequence:nth-child(4) { animation-delay: 360ms; }
.band-infrastructure .reveal-sequence:nth-child(5) { animation-delay: 440ms; }

@keyframes infraSafeRise {
  from {
    opacity: 0.01;
    transform: translateY(18px);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

/* Icon row */
.infra-journey-grid {
  width: min(1040px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.infra-journey-card {
  cursor: pointer;
  min-height: 120px;
  padding: 18px 12px;
  border-radius: 22px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(255, 248, 234, 0.72);
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--teal-dark);
  font: inherit;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.infra-journey-card:hover,
.infra-journey-card.is-active {
  transform: translateY(-4px);
}

.infra-journey-icon {
  transition: transform 260ms ease;
}

.infra-journey-card.is-active .infra-journey-icon {
  transform: translateY(-10px) scale(1.22);
}

.infra-journey-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.infra-journey-title {
  font-weight: 900;
  font-size: 0.9rem;
  text-align: center;
}

/* Map highlight overlay.
   These are approximate and safe to tune later. */
.infra-map-highlight {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.18);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.infra-map-highlight.is-active {
  opacity: 0.78;
  transform: translate(-50%, -50%) scale(1);
}

.infra-map-highlight--users {
  left: 15%;
  top: 68%;
  border: 2px solid rgba(47, 168, 59, 0.7);
  box-shadow: 0 0 34px rgba(47, 168, 59, 0.38), inset 0 0 20px rgba(47, 168, 59, 0.12);
}

.infra-map-highlight--connectivity {
  left: 32%;
  top: 68%;
  border: 2px solid rgba(22, 119, 255, 0.7);
  box-shadow: 0 0 34px rgba(22, 119, 255, 0.38), inset 0 0 20px rgba(22, 119, 255, 0.12);
}

.infra-map-highlight--applications {
  left: 49%;
  top: 68%;
  border: 2px solid rgba(123, 77, 255, 0.7);
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.38), inset 0 0 20px rgba(123, 77, 255, 0.12);
}

.infra-map-highlight--security {
  left: 68%;
  top: 66%;
  border: 2px solid rgba(242, 92, 59, 0.72);
  box-shadow: 0 0 34px rgba(242, 92, 59, 0.38), inset 0 0 20px rgba(242, 92, 59, 0.12);
}

.infra-map-highlight--operations {
  left: 83%;
  top: 68%;
  border: 2px solid rgba(217, 165, 32, 0.75);
  box-shadow: 0 0 34px rgba(217, 165, 32, 0.38), inset 0 0 20px rgba(217, 165, 32, 0.12);
}

/* Colored active / hover states */
.infra-journey-card[data-infra-color="green"].is-active,
.infra-journey-card[data-infra-color="green"]:hover {
  border-color: rgba(47, 168, 59, 0.62);
  background: radial-gradient(circle at top center, rgba(47, 168, 59, 0.18), transparent 70%), rgba(255,255,255,0.92);
  box-shadow: 0 20px 40px rgba(47,168,59,0.18), 0 0 32px rgba(47,168,59,0.22);
}

.infra-journey-card[data-infra-color="blue"].is-active,
.infra-journey-card[data-infra-color="blue"]:hover {
  border-color: rgba(22, 119, 255, 0.62);
  background: radial-gradient(circle at top center, rgba(22,119,255,0.18), transparent 70%), rgba(255,255,255,0.92);
  box-shadow: 0 20px 40px rgba(22,119,255,0.18), 0 0 32px rgba(22,119,255,0.22);
}

.infra-journey-card[data-infra-color="purple"].is-active,
.infra-journey-card[data-infra-color="purple"]:hover {
  border-color: rgba(123,77,255,0.62);
  background: radial-gradient(circle at top center, rgba(123,77,255,0.18), transparent 70%), rgba(255,255,255,0.92);
  box-shadow: 0 20px 40px rgba(123,77,255,0.18), 0 0 32px rgba(123,77,255,0.22);
}

.infra-journey-card[data-infra-color="red"].is-active,
.infra-journey-card[data-infra-color="red"]:hover {
  border-color: rgba(242,92,59,0.64);
  background: radial-gradient(circle at top center, rgba(242,92,59,0.18), transparent 70%), rgba(255,255,255,0.92);
  box-shadow: 0 20px 40px rgba(242,92,59,0.18), 0 0 32px rgba(242,92,59,0.22);
}

.infra-journey-card[data-infra-color="gold"].is-active,
.infra-journey-card[data-infra-color="gold"]:hover {
  border-color: rgba(217,165,32,0.68);
  background: radial-gradient(circle at top center, rgba(217,165,32,0.18), transparent 70%), rgba(255,255,255,0.92);
  box-shadow: 0 20px 40px rgba(217,165,32,0.18), 0 0 32px rgba(217,165,32,0.22);
}

/* Focus panel */
.infra-focus-panel {
  width: min(900px, 100%);
  margin: 24px auto 0;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 248, 234, 0.82);
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.infra-focus-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.infra-focus-panel h3 {
  color: var(--teal-deep);
  font-size: 1.25rem;
  line-height: 1.05;
}

.infra-focus-panel p {
  margin-top: 6px;
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 650;
}

.infra-focus-panel[data-infra-panel-color="green"] {
  border-color: rgba(47,168,59,.30);
  box-shadow: 0 18px 44px rgba(47,168,59,.10);
  background: radial-gradient(circle at top center, rgba(47,168,59,.18), transparent 72%), rgba(241,250,242,.92);
}

.infra-focus-panel[data-infra-panel-color="blue"] {
  border-color: rgba(22,119,255,.30);
  box-shadow: 0 18px 44px rgba(22,119,255,.10);
  background: radial-gradient(circle at top center, rgba(22,119,255,.18), transparent 72%), rgba(240,246,255,.92);
}

.infra-focus-panel[data-infra-panel-color="purple"] {
  border-color: rgba(123,77,255,.30);
  box-shadow: 0 18px 44px rgba(123,77,255,.10);
  background: radial-gradient(circle at top center, rgba(123,77,255,.18), transparent 72%), rgba(245,239,255,.92);
}

.infra-focus-panel[data-infra-panel-color="red"] {
  border-color: rgba(242,92,59,.30);
  box-shadow: 0 18px 44px rgba(242,92,59,.10);
  background: radial-gradient(circle at top center, rgba(242,92,59,.18), transparent 72%), rgba(255,243,240,.92);
}

.infra-focus-panel[data-infra-panel-color="gold"] {
  border-color: rgba(217,165,32,.34);
  box-shadow: 0 18px 44px rgba(217,165,32,.11);
  background: radial-gradient(circle at top center, rgba(217,165,32,.18), transparent 72%), rgba(255,248,232,.92);
}

/* CTA row */
.infra-action-row {
  width: min(720px, 100%);
  margin: 28px auto 0;
}

.infra-action-row ul {
  grid-template-columns: 1fr;
}

.infra-action-row .button {
  width: 100%;
}

@media (max-width: 900px) {
  .infra-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-journey-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .band-infrastructure {
    padding: 84px 18px;
  }

  .infrastructure-map-card {
    padding: 8px;
    border-radius: 24px;
  }

  .infrastructure-map-card img {
    border-radius: 18px;
  }

  .infra-journey-grid {
    grid-template-columns: 1fr;
  }

  .infra-action-row ul {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   11. CLOUD BAND — 20 / 60 / 20
========================================================= */
.cloud-layout {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.cloud-principles-stack {
  display: grid;
  gap: 14px;
}

.cloud-center {
  min-height: 620px;
}

.cloud-proof-tab:hover,
.cloud-proof-tab.is-active {
  background: rgba(24, 215, 200, 0.16);
  border-color: rgba(15, 118, 110, 0.32);
}

.cloud-proof-stage {
  min-height: 420px;
  background: var(--glass-strong);
}

.cloud-proof-panel {
  display: none;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.cloud-proof-panel.is-active {
  display: grid;
}

.cloud-proof-copy h3 {
  margin: 12px 0;
  color: var(--teal-deep);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cloud-proof-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.cloud-proof-visual img,
.illustration-slot img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  background: rgba(255, 255, 255, 0.72);
}

.cloud-proof-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cloud-proof-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.cloud-proof-tab {
  cursor: pointer;
  min-width: 0;
  padding: 10px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.07);
  color: var(--teal-dark);

  font: inherit;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cloud-tab-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
}

.cloud-proof-panel.is-active
.cloud-proof-visual img:hover,
.cloud-proof-panel.is-active
.illustration-slot img:hover {
  transform: scale(1.30);

  box-shadow:
    0 24px 50px rgba(3,43,41,.20),
    0 0 50px rgba(24,215,200,.22);

  position: relative;
  z-index: 20;
}

/* =========================================================
   CLOUD BOTTOM SIGNAL CARDS
   Four columns synced with top proof tabs.
========================================================= */

.cloud-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.cloud-signal-strip .signal-card {
  min-width: 0;
  padding: 20px 22px;
  border-radius: 22px;

  background: rgba(255, 248, 234, 0.62);
  border: 1px solid rgba(15, 118, 110, 0.16);

  opacity: 0.72;
  transform: translateY(0);

  transition:
    opacity 260ms ease,
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.cloud-signal-strip .signal-card h3 {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.cloud-signal-strip .signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 750;
}

.cloud-signal-strip .signal-card.is-active {
  opacity: 1;
  transform: translateY(-5px);

  background:
    radial-gradient(circle at top center, rgba(47, 168, 59, 0.20), transparent 70%),
    rgba(241, 250, 242, 0.92);

  border-color: rgba(24, 215, 200, 0.62);

  box-shadow:
    0 18px 38px rgba(3, 43, 41, 0.12),
    0 0 34px rgba(24, 215, 200, 0.24);
}

.cloud-principle-item {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(3px);

  transition:
    opacity 900ms ease,
    transform 1100ms var(--ease-main),
    filter 1100ms ease;
}

.band-cloud.is-cloud-in-view .cloud-principle-item {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.band-cloud.is-cloud-in-view .cloud-principle-item:nth-child(1) {
  transition-delay: 300ms;
}

.band-cloud.is-cloud-in-view .cloud-principle-item:nth-child(2) {
  transition-delay: 650ms;
}

.band-cloud.is-cloud-in-view .cloud-principle-item:nth-child(3) {
  transition-delay: 1000ms;
}

.band-cloud.is-cloud-in-view .cloud-principle-item:nth-child(4) {
  transition-delay: 1350ms;
}

.cloud-side-right {
  background:
    linear-gradient(
      180deg,
      rgba(24, 215, 200, 0.11),
      rgba(255, 248, 234, 0.86) 34%,
      rgba(255, 248, 234, 0.92)
    );
}

.cloud-build-summary h3 {
  font-size: clamp(2.4rem, 2.8vw, 3.1rem);
  line-height: 0.9;
  color: var(--teal-deep);
  margin-bottom: 38px;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.cloud-build-points {
  display: grid;
  gap: 24px;
}

.cloud-build-point {
  display: flex;
  align-items: center;
  gap: 16px;

  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 950;
  color: #0f766e;
  letter-spacing: -0.035em;
}

.point-icon {
  color: #18d7c8;
  font-size: 1.5rem;
  line-height: 1;
}

@keyframes cloudPrincipleRise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(2px);
  }

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

/* =========================================================
   CLOUD BAND — FINAL LAYOUT / RIGHT RAIL OVERRIDES
   Purpose:
   - Keep Cloud layout, proof stage, right rail, and data-safety card together.
   - Earlier Cloud rules above are retained as the base layer.
========================================================= */
/* CLOUD: force the three cloud columns to stay in their intended row. */
.band-cloud .cloud-layout {
  display: grid !important;
  grid-template-columns: minmax(180px, 0.95fr) minmax(0, 3.15fr) minmax(220px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.band-cloud .cloud-side-left {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.band-cloud .cloud-center {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.band-cloud .cloud-side-right,
.band-cloud .cloud-lens-rail {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  width: 100%;
  min-width: 0;
  height: fit-content;
  padding: 22px;
}

.band-cloud .cloud-build-summary h3 {
  font-size: clamp(2rem, 2.3vw, 2.65rem);
  margin-bottom: 26px;
}

.band-cloud .cloud-build-points {
  gap: 18px;
}

.band-cloud .cloud-build-point {
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.15;
}

/* =========================================================
   CLOUD RIGHT RAIL — BALANCED BUILD APPROACH
========================================================= */

.cloud-side-right.cloud-lens-rail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: stretch;
  min-height: 100%;
  padding: 28px;
}

.cloud-side-right .intake-title {
  margin-bottom: 0;
}

.cloud-build-summary h3 {
  margin: 10px 0 26px;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 0.9;
}

.cloud-build-points {
  gap: 22px;
}

.cloud-build-point {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.cloud-security-note {
  margin-top: auto;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 248, 234, 0.72);
}

.cloud-security-note h4 {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 1rem;
  font-weight: 950;
}

.cloud-security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 750;
}

.cloud-lens-action {
  margin-top: auto;

  padding-top: 18px;

  border-top: 1px solid rgba(15,118,110,.12);
}

.cloud-lens-action p {
  margin-bottom: 14px;

  color: var(--muted);

  font-size: .95rem;

  font-weight: 800;
}

.cloud-lens-action .button {
  width: 100%;
}

/* =========================================================
   CLOUD RIGHT RAIL - DATA SAFETY
========================================================= */

.cloud-security-note {
  position: relative;

  margin-top: 8px;

  padding: 24px;

  border-radius: 26px;

  background:
    radial-gradient(
      circle at top center,
      rgba(24,215,200,.12),
      transparent 75%
    ),
    rgba(255,248,234,.90);

  border: 1px solid rgba(24,215,200,.28);

  box-shadow:
    0 18px 40px rgba(3,43,41,.08),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.cloud-security-note::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 4px;

  border-radius: 26px 26px 0 0;

  background:
    linear-gradient(
      90deg,
      rgba(24,215,200,.15),
      rgba(24,215,200,.8),
      rgba(24,215,200,.15)
    );
}


/*  Data Safety Title */
.cloud-security-note h4 {
  margin: 0 0 12px;

  color: var(--teal-deep);

  font-size: 1.15rem;

  font-weight: 950;

  line-height: 1.1;

  letter-spacing: -0.03em;
}

/* Data Safety Text  */
.cloud-security-note p {
  margin: 0;

  color: var(--muted);

  font-size: .95rem;

  line-height: 1.65;

  font-weight: 700;
}

/* =========================================================
   WEB / EXPERIENCES — CLEAN FINAL
========================================================= */

.web-experiences-section {
  min-height: 100vh;
  padding: clamp(48px, 5vw, 74px) clamp(22px, 4vw, 54px);
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 223, 195, 0.18), transparent 34%),
    linear-gradient(180deg, #dceee8 0%, #f9f3e5 100%);
  overflow: hidden;
}

.web-experiences-shell {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 30%) minmax(0, 70%);
  gap: clamp(24px, 3vw, 34px);
}

.web-copy-panel,
.web-showcase-panel {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(251, 246, 233, 0.96), rgba(255, 250, 238, 0.88));
  box-shadow: 0 24px 70px rgba(3, 43, 41, 0.10);
}

.web-copy-panel {
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
}

.web-copy-panel h2 {
  max-width: 100%;
  font-size: clamp(2.65rem, 3.85vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.section-copy {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 750;
}

.presence-card {
  margin-top: clamp(52px, 8vw, 110px);
  padding: 28px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 26px;
  background: rgba(255, 250, 238, 0.78);
}

.presence-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.presence-card p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

/* RIGHT PANEL */

.web-showcase-panel {
  padding: clamp(18px, 2vw, 28px);
}

.web-showcase-kicker {
  margin-bottom: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(230px, 1.12fr);
  grid-template-rows: 1.05fr 0.86fr 0.86fr;
  gap: 16px;
  min-height: 650px;
}

.showcase-card {
  position: relative;
  min-height: 170px;
  padding: 0;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 238, 0.78);
  box-shadow: 0 18px 45px rgba(7, 53, 50, 0.08);
  overflow: visible;
}

.showcase-card-large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.worldcup-card {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.appointment-card { grid-column: 1 / 2; grid-row: 2 / 3; }
.intake-card { grid-column: 2 / 3; grid-row: 2 / 3; }
.landing-card { grid-column: 1 / 2; grid-row: 3 / 4; }
.cta-card { grid-column: 2 / 4; grid-row: 3 / 4; }

/* IMAGE BUTTON — ONLY THIS EXPANDS */

.showcase-image {
  width: 100%;
  height: calc(100% - 64px);
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition:
    transform 340ms var(--ease-main),
    box-shadow 340ms ease,
    filter 280ms ease;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms var(--ease-main);
}

.showcase-card-large .showcase-image {
  height: calc(100% - 72px);
}

.small-card .showcase-image {
  height: calc(100% - 68px);
}

.worldcup-card .showcase-image {
  height: 100%;
  border-radius: 24px;
}

.showcase-image:hover {
  box-shadow:
    0 18px 46px rgba(3, 43, 41, 0.16),
    0 0 34px rgba(24, 215, 200, 0.18);
}

.showcase-image:hover img {
  transform: scale(1.045);
}

.showcase-image.is-focused {
  position: relative;
  z-index: 40;
  transform: scale(1.18);
  border-radius: 24px;
  box-shadow:
    0 36px 90px rgba(3, 43, 41, 0.28),
    0 0 58px rgba(24, 215, 200, 0.25);
}

.showcase-image.is-focused img {
  transform: scale(1.04);
}

/* CAPTION — NEVER EXPANDS */

.showcase-caption {
  min-height: 64px;
  padding: 10px 16px 12px;
  background: rgba(255, 248, 234, 0.9);
  border-radius: 0 0 24px 24px;
}

.showcase-caption h3 {
  margin: 0 0 4px;
  color: var(--teal-deep);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 950;
}

.showcase-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 750;
}

.worldcup-card .showcase-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 5;
  min-height: auto;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(3, 43, 41, 0.05), rgba(3, 43, 41, 0.78));
}

.worldcup-card .showcase-caption h3,
.worldcup-card .showcase-caption p {
  color: white;
}

/* FOCUS BACKDROP */

.showcase-grid.has-focused .showcase-card:not(:has(.showcase-image.is-focused)) {
  opacity: 0.58;
  filter: blur(1px) saturate(0.82);
}

/* CTA */

.cta-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: center;
  overflow: hidden;
}

.cta-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-card li {
  padding: 10px 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(232, 241, 235, 0.74);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.build-button {
  min-width: 150px;
  padding: 16px 26px;
  border-radius: 999px;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(135deg, #1bd1c4, #32e7b5);
  font-weight: 950;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .web-experiences-shell {
    grid-template-columns: 1fr;
  }

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

  .showcase-card-large,
  .worldcup-card,
  .appointment-card,
  .intake-card,
  .landing-card,
  .cta-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }
}



/* =========================================================
   13. HAHAII / IDENTITY 
========================================================= */

.section-shell--center {
  text-align: center;
}

.hahaii-compact {
  max-width: 920px;
  margin: 0 auto 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.identity-strip {
  padding: 48px 24px;
  text-align: center;
  background: var(--teal-deep);
  color: var(--cream-soft);
}

/* =========================================================
   HAHAII PROOF CARDS
   Purpose:
   Give Entry / Identity / Evolution their own visual identity
   without adding JavaScript.
========================================================= */

.hahaii-section .proof-card {
  min-height: 150px;
  padding: 28px 30px;
  border-radius: 28px;
  cursor: pointer;

  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.hahaii-section .proof-card h3 {
  margin-bottom: 14px;
  color: var(--teal-deep);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.hahaii-section .proof-card p {
  color: rgba(3, 43, 41, 0.68);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 750;
}

/* Entry */
.hahaii-section .proof-card:nth-child(1) {
  background:
    radial-gradient(
      circle at top center,
      rgba(59, 130, 246, 0.18),
      transparent 65%
    ),
    rgba(229, 239, 255, 0.96);

  border: 1px solid rgba(59, 130, 246, 0.16);
}

/* Identity */
.hahaii-section .proof-card:nth-child(2) {
  background:
    radial-gradient(
      circle at top center,
      rgba(139, 92, 246, 0.22),
      transparent 65%
    ),
    rgba(243, 236, 255, 0.96);

  border: 1px solid rgba(139, 92, 246, 0.16);
}

/* Evolution */
.hahaii-section .proof-card:nth-child(3) {
  background:
    radial-gradient(
      circle at top center,
      rgba(244, 114, 182, 0.18),
      transparent 65%
    ),
    rgba(255, 236, 245, 0.96);

  border: 1px solid rgba(244, 114, 182, 0.16);
}

.hahaii-section .proof-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow:
    0 24px 48px rgba(3, 43, 41, 0.14),
    0 0 34px rgba(24, 215, 200, 0.14);
}

.hahaii-section .proof-card:active {
  transform: translateY(-3px) scale(0.99);
}

.workspace-button {
    opacity: 0.25;
    background: rgba(255,255,255,0.35);
    color: var(--muted);
    box-shadow: none;
    border: 1px solid rgba(15,118,110,.12);
}

.workspace-button:hover {
    opacity: 0.8;
}

/* =========================================================
   HAHAII LANDING ZONE
   Purpose:
   Full-width closing zone under the 3 Hahaii proof cards.
   This becomes the plane landing area before the footer.
========================================================= */

.landing-scene {
  position: relative;
  width: 100%;
  min-height: 230px;
  margin-top: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  background:
    radial-gradient(circle at 50% 35%, rgba(24, 215, 200, 0.14), transparent 34%),
    rgba(255, 248, 234, 0.42);
}


.landing-plane {
  position: absolute;
  z-index: 3;
  top: -20px;
  right: 10%;

  font-size: 2.4rem;

  /* START POSITION */
  transform:
    translate(260px, -180px)
    rotate(128deg)
    scale(1.08);

  opacity: 0;

  filter:
    drop-shadow(0 18px 22px rgba(3, 43, 41, 0.22));

  transition:
    transform 3400ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms ease;
}

.learned-panel {
  position: relative;
  z-index: 2;

  width: min(760px, 92%);
  padding: 38px 52px;

  border-radius: 28px;

  background:
    radial-gradient(
      circle at top center,
      rgba(24, 215, 200, 0.14),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(220, 250, 244, 0.92),
      rgba(236, 248, 242, 0.96)
    );

  border: 1px solid rgba(24, 215, 200, 0.22);

  box-shadow:
    0 20px 40px rgba(3, 43, 41, 0.08),
    0 0 40px rgba(24, 215, 200, 0.08);

  opacity: 0;
  transform: translateY(26px) scale(0.96);

  transition:
    opacity 700ms ease 1100ms,
    transform 900ms var(--ease-main) 1100ms;
}

.learned-panel span {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  column-gap: 18px;

  max-width: 620px;
  margin: 0 auto;

  color: var(--teal-deep);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.28;
  text-align: left;
  letter-spacing: -0.035em;
}

.learned-panel span strong {
  color: var(--teal);
  font-weight: 1000;
}

.learned-panel span + span {
  margin-top: 14px;
}

.learned-panel span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-bright);
  box-shadow: 0 0 18px rgba(24, 215, 200, 0.42);
}

/* =================================================
   LANDING STATE
   Plane slowly arcs downward into the landing zone.
================================================= */
.hahaii-section.is-landing .landing-plane {

  transform:
    translate(-105px, 185px)
    rotate(142deg)
    scale(0.92);

  opacity: 1;
}

.hahaii-section.is-landing .learned-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   JOURNEY OUTRO
========================================================= */

.journey-outro {
  margin: 64px auto 70px;
  padding: 0;
  text-align: center;
}

.journey-outro span {
  display: inline-block;

  color: var(--teal);

  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;

  line-height: 1;
  letter-spacing: -0.04em;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 34px 24px 42px;
  text-align: center;
  background: var(--teal-deep);
  color: rgba(255, 248, 234, 0.68);
  border-top: 1px solid rgba(255, 248, 234, 0.12);
}

.site-footer p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-footer strong {
  display: block;
  color: var(--cream-soft);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* =========================================================
   14. RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .topbar,
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .infra-layout,
  .cloud-layout,
  .web-layout,
  .cloud-proof-panel {
    grid-template-columns: 1fr;
  }

  .band-card-grid--three,
  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero-stage {
    padding: 48px 18px 72px;
  }

  .hero-takeoff {
    top: 30px;
    height: 310px;
  }

  .hero-content,
  .hero-stage__content {
    margin-top: 210px;
  }

  .hero-stage h1 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .band {
    padding: 84px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   15. SURGICAL FIX — WEB 30/70 OVERFLOW
   Purpose:
   - Keep Web Experiences title/CTA text from spilling outside cards.
   - Preserve the 30 / 70 Web Experiences pattern.
   - Cloud rail overrides were moved next to the Cloud band rules above.
========================================================= */
:root {
  --web-ink: #052f2d;
  --web-muted: #607a75;
  --web-teal: #18d7c8;
  --web-teal-dark: #057f78;
  --web-line: rgba(15, 118, 110, 0.18);
  --web-radius: 30px;
  --web-shadow: 0 24px 70px rgba(3, 43, 41, 0.10);
  --web-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* WEB: true 30 / 70 layout, with safe text sizing. */
.web-experiences-section {
  overflow: hidden;
  padding: clamp(48px, 5vw, 74px) clamp(22px, 4vw, 54px);
}

.web-experiences-shell {
  width: min(1450px, 100%);
  grid-template-columns: minmax(320px, 30%) minmax(0, 70%);
  align-items: stretch;
}

.web-copy-panel,
.web-showcase-panel,
.showcase-card,
.cta-card {
  min-width: 0;
}

.web-copy-panel {
  padding: clamp(24px, 2.6vw, 38px);
}

.web-copy-panel h2 {
  max-width: 100%;
  font-size: clamp(2.75rem, 4.25vw, 4.95rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  overflow-wrap: normal;
}

.web-copy-panel .section-copy {
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.5;
}

.presence-card {
  margin-top: clamp(26px, 5vw, 72px);
}

.web-showcase-panel {
  padding: clamp(18px, 1.7vw, 26px);
}

.showcase-grid {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.98fr) minmax(230px, 1.12fr);
  grid-template-rows: 1.08fr 0.86fr 0.82fr;
  gap: 16px;
}

.showcase-card.intake-card {
  display: block;
  padding: 0;
  gap: 0;
  justify-content: initial;
}

.showcase-text {
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.showcase-text span {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.05;
}

.showcase-text p {
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  line-height: 1.32;
}

.visual-mockup {
  inset: 18px 18px 86px;
}

.cta-card {
  padding: clamp(20px, 1.7vw, 26px);
  grid-template-columns: minmax(0, 1fr) minmax(145px, 0.36fr);
  gap: 10px 18px;
}

.cta-card .section-kicker {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15;
  font-size: clamp(0.64rem, 0.76vw, 0.78rem);
  padding: 8px 14px;
}

.cta-card ul {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.cta-card li {
  min-width: 0;
  padding: 10px 14px;
  font-size: clamp(0.82rem, 0.92vw, 0.96rem);
  line-height: 1.1;
  white-space: nowrap;
}

.build-button {
  min-width: 138px;
  padding: 15px 20px;
}

.worldcup-card {
  min-height: 360px;
}

@media (max-width: 1180px) {
  .band-cloud .cloud-layout {
    grid-template-columns: 1fr;
  }

  .band-cloud .cloud-side-left,
  .band-cloud .cloud-center,
  .band-cloud .cloud-side-right,
  .band-cloud .cloud-lens-rail {
    grid-column: 1;
    grid-row: auto;
  }

  .web-experiences-shell {
    grid-template-columns: 1fr;
  }

  .web-copy-panel h2 {
    font-size: clamp(3rem, 8vw, 5rem);
  }
}

@media (max-width: 760px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-large,
  .worldcup-card,
  .appointment-card,
  .showcase-card.intake-card,
  .landing-card,
  .cta-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card ul {
    grid-template-columns: 1fr;
  }

  .cta-card li {
    white-space: normal;
  }

  .build-button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }
}

/* =========================================================
   99. WEB / EXPERIENCES — CONSOLIDATED FINAL OVERRIDE
   Purpose:
   - Keep all final Web band fixes in one place.
   - Earlier Web rules above are retained as legacy/reference.
   - This block controls the current live Web section.

   Behavior:
   - Caption/description hover illuminates the whole card.
   - Image click toggles .is-focused through scripts/web-experiences.js.
   - World Cup card stays slightly calmer because it is always visible.
   - CTA chips are smaller so the Build card does not overload.
========================================================= */

.web-experiences-section {
  min-height: 100vh;
  padding: clamp(44px, 5vw, 72px) clamp(22px, 4vw, 54px);
  background:
    radial-gradient(circle at 86% 14%, rgba(34, 223, 195, 0.16), transparent 34%),
    radial-gradient(circle at 16% 84%, rgba(15, 118, 110, 0.08), transparent 36%),
    linear-gradient(180deg, #dceee8 0%, #f9f3e5 100%);
  overflow: hidden;
}

.web-experiences-shell {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 28%) minmax(0, 72%);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

.web-copy-panel,
.web-showcase-panel {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(251, 246, 233, 0.96), rgba(255, 250, 238, 0.88));
  box-shadow: 0 24px 70px rgba(3, 43, 41, 0.10);
}

.web-copy-panel {
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
}

.web-copy-panel .section-kicker,
.web-showcase-kicker,
.cta-card .section-kicker {
  max-width: max-content;
  white-space: nowrap;
}

.web-copy-panel h2 {
  max-width: 100%;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.15rem, 3.35vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.web-copy-panel .section-copy {
  max-width: 28ch;
  margin-top: clamp(20px, 3vw, 30px);
  color: rgba(3, 43, 41, 0.60);
  font-size: clamp(0.95rem, 1.05vw, 1.06rem);
  line-height: 1.45;
  font-weight: 850;
}

.presence-card {
  margin-top: clamp(42px, 7vw, 88px);
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(24, 215, 200, 0.12), transparent 62%),
    rgba(255, 250, 238, 0.78);
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.52),
    0 18px 42px rgba(3,43,41,.07);
}

.presence-card h3 {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.presence-card p {
  margin: 0;
  color: rgba(3, 43, 41, 0.58);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 850;
}

.web-showcase-panel {
  padding: clamp(18px, 2vw, 28px);
  overflow: visible;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(210px, 0.88fr);
  grid-template-rows: minmax(260px, 1fr) minmax(220px, .78fr) minmax(220px, .78fr);
  gap: 16px;
  min-height: 640px;
  overflow: visible;
}

.showcase-card {
  position: relative;
  min-height: 170px;
  padding: 0;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 238, 0.82);
  box-shadow: 0 18px 45px rgba(7, 53, 50, 0.08);
  overflow: visible;
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 260ms var(--ease-main),
    border-color 240ms ease,
    box-shadow 260ms ease;
}

.showcase-card-large { grid-column: 1 / 3; grid-row: 1 / 2; }
.worldcup-card { grid-column: 3 / 4; grid-row: 1 / 3; }
.appointment-card { grid-column: 1 / 2; grid-row: 2 / 3; }
.intake-card { grid-column: 2 / 3; grid-row: 2 / 3; }
.landing-card { grid-column: 1 / 2; grid-row: 3 / 4; }
.cta-card { grid-column: 2 / 4; grid-row: 3 / 4; }

.showcase-image {
  width: 100%;
  height: calc(100% - 72px);
  display: block;
  padding: 0;
  border: 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transform-origin: center center;
  transition:
    transform 340ms var(--ease-main),
    box-shadow 340ms ease,
    filter 280ms ease;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms var(--ease-main);
}

.showcase-card-large .showcase-image { height: calc(100% - 72px); }
.small-card .showcase-image { height: calc(100% - 76px); }
.worldcup-card .showcase-image {
  height: 100%;
  border-radius: 24px;
}

.showcase-card:hover,
.showcase-card:focus-within,
.showcase-card.is-caption-lit {
  border-color: rgba(24, 215, 200, 0.46);
  box-shadow:
    0 24px 56px rgba(3, 43, 41, 0.14),
    0 0 34px rgba(24, 215, 200, 0.18);
}

.showcase-caption:hover,
.showcase-card.is-caption-lit .showcase-caption {
  background:
    radial-gradient(circle at left center, rgba(24, 215, 200, 0.20), transparent 68%),
    rgba(255, 248, 234, 0.95);
}

.showcase-card:hover .showcase-image img,
.showcase-card.is-caption-lit .showcase-image img {
  transform: scale(1.045);
}

.showcase-image:hover {
  box-shadow:
    0 18px 46px rgba(3, 43, 41, 0.16),
    0 0 34px rgba(24, 215, 200, 0.18);
}

.showcase-image.is-focused {
  position: relative;
  z-index: 80;
  transform: scale(1.24);
  border-radius: 24px;
  box-shadow:
    0 36px 90px rgba(3, 43, 41, 0.30),
    0 0 58px rgba(24, 215, 200, 0.25);
}

.showcase-card-large .showcase-image.is-focused { transform: scale(1.16); }
.small-card .showcase-image.is-focused { transform: scale(1.28); }
.worldcup-card .showcase-image.is-focused { transform: scale(1.10); }

.showcase-image.is-focused img {
  transform: scale(1.035);
}

.showcase-caption {
  min-height: 72px;
  padding: 11px 16px 12px;
  background: rgba(255, 248, 234, 0.92);
  border-radius: 0 0 24px 24px;
  cursor: default;
  transition:
    background 240ms ease,
    box-shadow 240ms ease;
}

.showcase-caption h3 {
  margin: 0 0 5px;
  color: var(--teal-deep);
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.showcase-caption p {
  margin: 0;
  color: rgba(3, 43, 41, 0.58);
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 850;
}

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

.worldcup-card .showcase-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 5;
  min-height: auto;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(3, 43, 41, 0.04), rgba(3, 43, 41, 0.74));
}

.worldcup-card .showcase-caption h3,
.worldcup-card .showcase-caption p {
  color: white;
}

.showcase-grid.has-focused .showcase-card:not(:has(.showcase-image.is-focused)) {
  opacity: 0.58;
  filter: blur(1px) saturate(0.82);
}

.cta-card {
  padding: clamp(22px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 18px 22px;
  align-items: center;
  overflow: hidden;
}

.cta-card .section-kicker {
  grid-column: 1 / 2;
  margin-bottom: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.cta-card ul {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  gap: 9px;
  min-width: 0;
}

.cta-card li {
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
  background: rgba(232, 241, 235, 0.74);
  color: var(--teal-deep);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.build-button {
  grid-column: 1 / 2;
  width: min(270px, 100%);
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #022b28;
  background: linear-gradient(135deg, #1bd1c4, #32e7b5);
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.16);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.build-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 118, 110, 0.22);
}

@media (max-width: 1100px) {
  .web-experiences-shell {
    grid-template-columns: 1fr;
  }

  .web-copy-panel .section-copy {
    max-width: 62ch;
  }
}

@media (max-width: 860px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .showcase-card-large,
  .worldcup-card,
  .appointment-card,
  .intake-card,
  .landing-card,
  .cta-card {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-card,
  .worldcup-card {
    min-height: 300px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card .section-kicker,
  .cta-card ul,
  .build-button {
    grid-column: auto;
    grid-row: auto;
  }
}

/* =========================================================
   100. SURGICAL FINAL — LAUNCH CTA + HERO ISLAND + RESPONSIVE
   Date: 2026-06-06
   Purpose:
   - Hide the Hahaii Launch Workspace button by default.
   - Reduce hero island size/opacity so the copy remains dominant.
   - Stabilize hero composition across desktop, tablet, and mobile.
========================================================= */

/* HAHAII: keep workspace CTA present in markup, but visually silent by default. */
.hahaii-section .workspace-button,
.hahaii-section a.workspace-button,
.hahaii-section .button.workspace-button {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-4px) scale(0.96);
  box-shadow: none !important;
}

/* HERO: calmer island stage. */
.hero-takeoff {
  width: min(520px, 100%);
  height: 340px;
  margin-left: 70px;
  margin-top: 24px;
  opacity: 0.50;
}

.hero-takeoff .svg-island {
  width: min(300px, 62vw);
  top: 64%;
  opacity: 0.10;
  filter:
    brightness(0.96)
    drop-shadow(0 0 8px rgba(24, 215, 200, 0.08))
    drop-shadow(0 10px 20px rgba(3, 43, 41, 0.08));
}

.hero-takeoff::after {
  inset: 4% 12%;
  background: radial-gradient(circle, rgba(24, 215, 200, 0.11), transparent 64%);
  filter: blur(42px);
}

.origin-unit {
  left: 27%;
  top: 70%;
  gap: 4px;
}

.origin-unit span,
.takeoff-plane {
  font-size: 1.65rem;
  box-shadow:
    0 8px 18px rgba(3, 43, 41, 0.08),
    0 0 14px rgba(24, 215, 200, 0.08);
}

.takeoff-plane {
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.02);
}

.hero-content,
.hero-stage__content {
  margin-top: -24px;
}

/* Tablet: reduce top visual and keep headline in the first screen. */
@media (max-width: 980px) {
  .hero-stage {
    min-height: auto;
    padding: 64px 22px 76px;
  }

  .hero-takeoff {
    width: min(440px, 100%);
    height: 285px;
    margin-left: 0;
    margin-top: 10px;
    opacity: 0.72;
  }

  .hero-takeoff .svg-island {
    width: min(250px, 58vw);
    top: 61%;
    opacity: 0.12;
  }

  .origin-unit {
    left: 30%;
    top: 68%;
  }

  .takeoff-plane {
    top: 52%;
  }

  .hero-content,
  .hero-stage__content {
    margin-top: -10px;
  }

  .hero-stage h1 {
    font-size: clamp(3.2rem, 10vw, 5.2rem);
  }
}

/* Phone: island becomes a soft mark, not a competing illustration. */
@media (max-width: 640px) {
  .topbar,
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .hero-stage {
    padding: 42px 16px 64px;
  }

  .hero-takeoff {
    width: min(330px, 100%);
    height: 215px;
    margin: 0 auto;
    opacity: 0.66;
  }

  .hero-takeoff .svg-island {
    width: min(190px, 54vw);
    top: 58%;
    opacity: 0.10;
  }

  .hero-takeoff::after {
    inset: 8% 16%;
    filter: blur(34px);
  }

  .origin-unit {
    left: 32%;
    top: 66%;
    gap: 2px;
  }

  .origin-unit span,
  .takeoff-plane {
    font-size: 1.25rem;
  }

  .takeoff-plane {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg) scale(0.92);
  }

  .hero-content,
  .hero-stage__content {
    margin-top: 0;
  }

  .eyebrow,
  .section-kicker,
  .intake-title,
  .proof-label {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero-stage h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
    line-height: 0.9;
    white-space: normal;
  }

  .hero-stage h1 span {
    margin-top: 16px;
    font-size: clamp(1.35rem, 8vw, 2.1rem);
    white-space: normal;
  }

  .hero-description,
  .hero-stage__content p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.45;
  }
}

/* Small-height laptops: prevent the island/copy from feeling vertically crowded. */
@media (min-width: 981px) and (max-height: 820px) {
  .hero-stage {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .hero-takeoff {
    height: 300px;
    margin-top: 8px;
  }

  .hero-takeoff .svg-island {
    width: min(270px, 58vw);
    opacity: 0.12;
  }

  .hero-content,
  .hero-stage__content {
    margin-top: -18px;
  }
}