:root {
  --sky: #00adef;
  --sun: #7fd6ff;
  --sky-deep: #0087bb;
  --sun-deep: #3ca9d8;
  --accent-orange: #f4a003;
  --accent-orange-deep: #d78900;
  --ink: #17222e;
  --muted: #496073;
  --bg: #f7fbff;
  --surface: #ffffff;
  --line: #d8e7f2;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 14px 42px rgba(10, 67, 96, 0.12);
  --shadow-strong: 0 24px 64px rgba(8, 72, 103, 0.2);
  --mx: 50vw;
  --my: 40vh;
  --scroll-y: 0;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 173, 239, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(127, 214, 255, 0.14) 0%, transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background: radial-gradient(
    480px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.14) 28%,
    transparent 64%
  );
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 80;
  background: rgba(0, 173, 239, 0.12);
  backdrop-filter: blur(8px);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, var(--sky), #27c2ff, var(--sun));
  box-shadow: 0 0 20px rgba(0, 173, 239, 0.55);
  transition: transform 0.1s linear;
}

.cursor-glow {
  position: fixed;
  width: 34px;
  height: 34px;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 70;
  mix-blend-mode: multiply;
  background: radial-gradient(circle at 35% 35%, rgba(0, 173, 239, 0.45), rgba(127, 214, 255, 0.3));
  box-shadow: 0 0 0 1px rgba(0, 173, 239, 0.3), 0 0 24px rgba(0, 173, 239, 0.28);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.25s ease, height 0.25s ease;
}

body.cursor-ready .cursor-glow {
  opacity: 1;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.ambient-layer {
  position: absolute;
  inset: -18%;
}

.ambient-mesh {
  background:
    radial-gradient(circle at calc(var(--mx) * 1) calc(var(--my) * 1), rgba(0, 173, 239, 0.14), transparent 26%),
    radial-gradient(circle at calc(100% - var(--mx) * 0.42) calc(100% - var(--my) * 0.32), rgba(127, 214, 255, 0.16), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(0, 135, 187, 0.08), transparent 24%);
  transform: translateY(calc(var(--scroll-y) * -0.03px));
  transition: transform 0.35s ease;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.34;
  transition: transform 0.45s ease;
}

.ambient-orb-a {
  width: 420px;
  height: 420px;
  top: calc(-120px + (var(--my) - 40vh) * 0.04);
  left: calc(-130px + (var(--mx) - 50vw) * 0.05);
  background: radial-gradient(circle at 35% 35%, rgba(0, 173, 239, 0.7), rgba(0, 173, 239, 0));
  animation: driftA 11s ease-in-out infinite;
}

.ambient-orb-b {
  width: 540px;
  height: 540px;
  right: calc(-170px + (50vw - var(--mx)) * 0.04);
  bottom: calc(-230px + (50vh - var(--my)) * 0.03);
  background: radial-gradient(circle at 40% 40%, rgba(127, 214, 255, 0.62), rgba(127, 214, 255, 0));
  animation: driftB 13s ease-in-out infinite;
}

.ambient-orb-c {
  width: 300px;
  height: 300px;
  top: calc(48% + (var(--my) - 45vh) * 0.03);
  right: calc(16% + (50vw - var(--mx)) * 0.04);
  background: radial-gradient(circle at 42% 42%, rgba(0, 173, 239, 0.36), rgba(0, 173, 239, 0));
  opacity: 0.2;
  animation: floatPulse 9s ease-in-out infinite;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(0, 173, 239, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 239, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 78%);
  opacity: 0.28;
  transform:
    translateX(calc((var(--mx) - 50vw) * 0.01))
    translateY(calc((var(--my) - 50vh) * 0.01))
    rotate(calc((var(--mx) - 50vw) * 0.0008deg));
  transition: transform 0.3s ease;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.68;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-wave {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.35;
}

.bg-wave-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 173, 239, 0.38), transparent 70%);
  top: -120px;
  right: -100px;
  animation: driftA 10s ease-in-out infinite;
}

.bg-wave-b {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127, 214, 255, 0.34), transparent 72%);
  bottom: -210px;
  left: -170px;
  animation: driftB 12s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 173, 239, 0.18);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(0, 173, 239, 0.07);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 173, 239, 0.2));
}

.brand-lockup {
  display: grid;
  gap: 0.22rem;
  padding: 0.34rem 0.58rem 0.42rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 173, 239, 0.18);
  background:
    radial-gradient(circle at 86% 12%, rgba(127, 214, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.95));
  box-shadow: 0 10px 24px rgba(0, 136, 188, 0.12);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  font-weight: 800;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.004em;
  line-height: 1;
}

.brand-happy {
  color: #79e5ff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(121, 229, 255, 0.25);
}

.brand-care {
  color: #f4a003;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 0 0 rgba(244, 160, 3, 0.45), 0 8px 18px rgba(244, 160, 3, 0.18);
}

.brand-dot {
  color: #111111;
  font-weight: 900;
}

.brand-tech {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid rgba(22, 34, 46, 0.78);
  padding-top: 0.14rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #111111;
  text-transform: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.62rem;
  right: 0.62rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sky), var(--sun));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--sky), #129ed6);
  box-shadow: 0 8px 20px rgba(0, 173, 239, 0.28);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  padding-top: 2.2rem;
  overflow: hidden;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto;
  height: 420px;
  background: radial-gradient(circle at 20% 20%, rgba(0, 173, 239, 0.28), transparent 64%),
    radial-gradient(circle at 78% 10%, rgba(127, 214, 255, 0.24), transparent 62%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 173, 239, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
}

.hero-modern-wrap {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  max-width: 620px;
  padding: 0.2rem 0;
}

.hero-overlay {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 14%;
  z-index: 3;
  max-width: 1120px;
  padding: 0;
}

.hero-overlay h1 {
  font-size: clamp(3.3rem, 9vw, 7.1rem);
  line-height: 0.98;
  max-width: 18ch;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(8, 24, 34, 0.46);
}

.hero-overlay h1 .hero-title-accent {
  color: #faa403;
}

.hero-overlay h1 span {
  color: #7ee4ff;
}

/* ── Hero title entrance animations ── */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0%, 100% {
    text-shadow: 0 10px 28px rgba(8, 24, 34, 0.46), 0 0 0px #faa40300;
  }
  50% {
    text-shadow: 0 10px 28px rgba(8, 24, 34, 0.46), 0 0 40px #faa40380, 0 0 80px #faa40340;
  }
}

.hero-line-1 {
  display: block;
  animation:
    heroSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both,
    heroGlow 3.2s ease-in-out 1.2s infinite;
}

.hero-line-2 {
  display: block;
  animation: heroSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.hero-dot {
  color: #f4a003;
  animation: heroSlideUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.64s both;
}

/* specificity boost so orange wins over the generic h1 span rule */
.hero-overlay h1 .hero-dot {
  color: #f4a003;
}

.hero-overlay p {
  margin-top: 0.65rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
}

.hero-overlay .hero-tag {
  margin-bottom: 0.72rem;
  color: #d7f4ff;
  border-color: rgba(126, 228, 255, 0.45);
  background: rgba(126, 228, 255, 0.16);
}

.hero-overlay .hero-actions {
  margin-top: 1rem;
}

.hero-overlay .btn-outline {
  color: #d7f4ff;
  border-color: rgba(126, 228, 255, 0.5);
  background: rgba(126, 228, 255, 0.14);
}

.hero-tag {
  display: inline-flex;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 173, 239, 0.26);
  background: rgba(0, 173, 239, 0.1);
  color: #0b6e97;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(1.95rem, 4.5vw, 3.4rem);
  line-height: 1.03;
  max-width: 14ch;
  text-wrap: balance;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, var(--sky), var(--sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy p {
  margin-top: 0.95rem;
  max-width: 52ch;
  font-size: 0.96rem;
  color: var(--muted);
}

.hero-copy > * {
  animation: riseIn 0.65s ease both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.36s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.44s; }

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  --bx: 0px;
  --by: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transform: translate(var(--bx), var(--by));
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: var(--accent-orange);
  box-shadow: 0 14px 26px rgba(244, 160, 3, 0.32);
}

.btn-primary:hover {
  transform: translate(var(--bx), calc(var(--by) - 3px));
  background: var(--accent-orange-deep);
  box-shadow: 0 16px 30px rgba(215, 137, 0, 0.4);
}

.btn-outline {
  color: #0b6e97;
  border: 1px solid rgba(0, 173, 239, 0.3);
  background: rgba(0, 173, 239, 0.08);
}

.btn-outline:hover {
  background: rgba(0, 173, 239, 0.16);
}

.btn-full {
  width: 100%;
}

.hero-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-pills span {
  font-size: 0.72rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: #e8f7fd;
  border: 1px solid rgba(0, 173, 239, 0.22);
  color: #0e6f99;
  font-weight: 700;
}

.hero-mini-stats {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-mini-stats li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem;
  box-shadow: 0 10px 20px rgba(0, 173, 239, 0.1);
}

.hero-mini-stats strong {
  display: block;
  color: #0f88bc;
  font-size: 1.1rem;
}

.hero-mini-stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: saturate(1.06);
}

.hero-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(18, 90, 124, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.photo-a {
  width: 64%;
  height: 430px;
  top: 30px;
  left: 0;
  transform: rotate(-4deg) translateZ(8px);
}

.photo-b {
  width: 58%;
  height: 360px;
  top: 0;
  right: 0;
  transform: rotate(5deg) translateZ(14px);
}

.photo-c {
  width: 68%;
  height: 290px;
  bottom: 12px;
  right: 18px;
  transform: rotate(-2deg) translateZ(20px);
}

.hero-float {
  position: absolute;
  font-size: 0.76rem;
  font-weight: 700;
  color: #11485f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 173, 239, 0.22);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  box-shadow: 0 10px 24px rgba(0, 173, 239, 0.18);
  backdrop-filter: blur(6px);
}

.float-a {
  top: 24px;
  right: 8px;
  animation: floatPulse 4.8s ease-in-out infinite;
}

.float-b {
  bottom: 0;
  left: 42px;
  animation: floatPulse 5.6s ease-in-out infinite reverse;
}

.hero-marquee {
  margin-top: 0;
  border-top: 1px solid rgba(0, 173, 239, 0.2);
  border-bottom: 1px solid rgba(0, 173, 239, 0.2);
  background: rgba(0, 173, 239, 0.08);
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  gap: 1.9rem;
  width: max-content;
  padding: 0.54rem 0;
  animation: marqueeX 22s linear infinite;
}

.hero-marquee-track span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f739e;
  white-space: nowrap;
}

.section {
  padding: 4.6rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 173, 239, 0.25), transparent);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-top: 0.2rem;
  max-width: 18ch;
}

.section > .container > p,
.section > .container > h2 {
  max-width: 68ch;
}

.eyebrow {
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a5f00;
  padding: 0.28rem 0.66rem;
  border: 1px solid rgba(244, 160, 3, 0.32);
  background: rgba(244, 160, 3, 0.14);
  border-radius: 999px;
}

.story-shell {
  display: grid;
  gap: 0.9rem;
}

.about-revamp {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.about-story-card,
.about-purpose-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(127, 214, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: var(--shadow-strong);
  padding: 1.35rem;
}

.about-card-main {
  border-color: rgba(0, 173, 239, 0.3);
}

.about-card-vision {
  border-color: rgba(244, 160, 3, 0.34);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 160, 3, 0.17), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff8ea 100%);
}

.about-story-card h2,
.about-purpose-card h3 {
  margin: 0;
  color: #0f506a;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-story-card h2 {
  max-width: 20ch;
}

.about-story-card p,
.about-purpose-card p {
  margin-top: 0.78rem;
  color: #1e4e66;
  font-size: 1.02rem;
  font-weight: 560;
  line-height: 1.7;
}

.about-story-card p + p,
.about-purpose-card p + p {
  margin-top: 0.64rem;
}

.about-modern {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  align-items: start;
}

.about-intro-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(234, 247, 255, 0.88));
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.about-lead {
  font-size: 1.04rem;
  color: #2b4b60;
}

.about-highlight-grid {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.about-highlight-grid > div {
  border: 1px solid rgba(0, 173, 239, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.55rem;
}

.about-highlight-grid strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.28rem;
  color: #0f88bc;
}

.about-highlight-grid span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.about-story-stack {
  display: grid;
  gap: 0.7rem;
}

.about-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-accordion:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 173, 239, 0.2);
}

.about-accordion summary {
  list-style: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #134f69;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid transparent;
  position: relative;
}

.about-accordion summary::-webkit-details-marker {
  display: none;
}

.about-accordion summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #0f88bc;
}

.about-accordion[open] summary {
  border-bottom-color: var(--line);
  background: rgba(0, 173, 239, 0.06);
}

.about-accordion[open] summary::after {
  content: "-";
}

.about-accordion p,
.about-accordion ul {
  margin: 0;
  padding: 0.82rem 1rem 1rem;
}

.smart-tabs {
  margin-top: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tab-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 173, 239, 0.05);
}

.tab-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #245470;
  background: #e7f6fd;
  cursor: pointer;
  transition: all 0.22s ease;
}

.tab-btn.active {
  color: #fff;
  background: var(--accent-orange);
  box-shadow: 0 8px 20px rgba(244, 160, 3, 0.3);
}

.tab-panels {
  padding: 0.9rem;
}

.tab-panel {
  display: grid;
  gap: 0.7rem;
  animation: riseIn 0.4s ease both;
}

.tick-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.tick-list li::marker {
  color: var(--sky-deep);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.mission-intro {
  margin-top: 0.8rem;
  max-width: 74ch;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow);
}

.mission-redesign {
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background:
    radial-gradient(circle at 94% 10%, rgba(127, 214, 255, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 250, 255, 0.92) 100%);
  box-shadow: var(--shadow-strong);
}

.mission-redesign h2 {
  max-width: none;
}

.mission-lead {
  margin-top: 0.7rem;
  max-width: 70ch;
  color: #174f6c;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  font-weight: 650;
}

.mission-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.05rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fdff 100%),
    linear-gradient(115deg, rgba(0, 173, 239, 0.1), rgba(244, 160, 3, 0.08));
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 173, 239, 0.24);
}

.mission-card-wide {
  grid-column: 1 / -1;
}

.mission-card h3 {
  margin-bottom: 0.5rem;
  color: #0f4f6a;
  font-weight: 800;
}

.mission-card p + p {
  margin-top: 0.55rem;
}

.mission-card p {
  color: #234f66;
  font-weight: 560;
}

.feature-grid,
.work-grid,
.involved-grid,
.support-cards {
  display: grid;
  gap: 0.9rem;
}

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

.feature-card,
.work-card,
.involved-grid article,
.support-cards article,
.demo-steps article,
.product-layout,
.contact-wrap,
.lead-form,
.price-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-card,
.involved-grid article,
.support-cards article,
.work-card {
  padding: 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.work-card:hover,
.involved-grid article:hover,
.support-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 173, 239, 0.24);
}

.work-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 173, 239, 0.16);
  color: #0d6e97;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.section-blue {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 173, 239, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fdff 0%, #ecf7fc 100%);
}

.section-sun {
  background:
    radial-gradient(circle at 10% 15%, rgba(127, 214, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
}

.product-switch {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.1);
  width: fit-content;
}

.switch-btn {
  --bx: 0px;
  --by: 0px;
  border: 0;
  padding: 0.56rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  color: #245470;
  background: #e6f6fd;
  cursor: pointer;
  transform: translate(var(--bx), var(--by));
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.switch-btn.active {
  color: #fff;
  background: var(--accent-orange);
  box-shadow: 0 8px 18px rgba(244, 160, 3, 0.3);
}

.switch-btn:hover {
  transform: translate(var(--bx), calc(var(--by) - 2px));
}

.about-story-card,
.about-purpose-card,
.work-card,
.mission-card,
.involved-grid article,
.support-cards article,
.demo-steps article,
.product-layout,
.lead-form,
.contact-wrap,
.feature-card {
  position: relative;
  overflow: hidden;
}

.card-interactive::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(240px circle at var(--sx, 50%) var(--sy, 50%), rgba(255, 255, 255, 0.5), transparent 60%),
    linear-gradient(110deg, transparent 0%, rgba(0, 173, 239, 0.08) 48%, rgba(127, 214, 255, 0.1) 54%, transparent 100%);
  transition: opacity 0.25s ease;
}

.card-interactive:hover::after {
  opacity: 1;
}

.product-panel {
  margin-top: 1rem;
}

.product-layout {
  padding: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1rem;
}

.product-layout img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-layout:hover img {
  transform: scale(1.03);
  filter: saturate(1.06);
}

.product-layout ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.product-layout li {
  margin-bottom: 0.35rem;
}

.interactive-panel {
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.demo-steps {
  display: grid;
  gap: 0.8rem;
}

.demo-redesign {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.25rem;
  width: min(1420px, calc(100% - 0.8rem));
  margin: 0 auto;
  padding: 1.15rem;
  border-radius: 28px;
  border: 1px solid rgba(0, 173, 239, 0.16);
  background:
    radial-gradient(circle at 92% 3%, rgba(127, 214, 255, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(239, 249, 255, 0.72) 100%);
}

.demo-redesign::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.24), transparent 42%);
}

.demo-headline {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  padding: 0.4rem 0.2rem 0.6rem;
}

.demo-headline h2 {
  max-width: none;
  line-height: 1.02;
  font-size: clamp(2.1rem, 3.7vw, 3rem);
}

.demo-headline p {
  color: #28526c;
}

.demo-headline .btn {
  margin-top: 0.2rem;
  justify-self: start;
  padding: 0.86rem 1.35rem;
  box-shadow: 0 14px 28px rgba(244, 160, 3, 0.3);
}

/* Centered request button below demo stage */
.demo-request-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.demo-request-wrap .btn {
  padding: 0.86rem 1.35rem;
  min-width: 220px;
  box-shadow: 0 14px 28px rgba(244, 160, 3, 0.3);
}

.demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.demo-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 160, 3, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a5f00;
  background: rgba(244, 160, 3, 0.12);
}

.demo-app-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 173, 239, 0.24);
  width: fit-content;
  justify-self: center;
  margin-top: 0.1rem;
}

.demo-app-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.52rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f5775;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.demo-app-btn.active {
  color: #ffffff;
  background: #00adef;
  box-shadow: 0 8px 16px rgba(0, 173, 239, 0.3);
}

.demo-app-btn[data-app="activities"].active {
  background: #f4a003;
  box-shadow: 0 8px 16px rgba(244, 160, 3, 0.32);
}

.demo-stage-shell {
  position: relative;
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at 90% 8%, rgba(127, 214, 255, 0.38), rgba(0, 173, 239, 0.14) 52%), linear-gradient(180deg, #ffffff 0%, #e9f7ff 100%);
  box-shadow: var(--shadow-strong);
  padding: 1.3rem;
}

.demo-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(220px circle at 18% 0%, rgba(255, 255, 255, 0.5), transparent 68%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 86%);
}

#demo-stage-host {
  border-radius: 18px;
  overflow: hidden;
  min-height: 720px;
}

#demo-stage-host .demo-stage {
  max-width: none;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 0.9rem !important;
}

#demo-stage-host .viewer {
  background: linear-gradient(160deg, #eef8ff 0%, #d6efff 100%) !important;
  border: 1px solid rgba(0, 173, 239, 0.28) !important;
  box-shadow:
    0 24px 56px rgba(0, 122, 170, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset !important;
  min-height: 620px;
  aspect-ratio: 16 / 8.8;
}

#demo-stage-host .slide-visual {
  background: #edf8ff !important;
}

#demo-stage-host .slide-visual img,
#demo-stage-host .mock-post-image img,
#demo-stage-host .mock-tv img {
  object-fit: contain !important;
  object-position: center !important;
  background: #f7fcff;
}

#demo-stage-host .slide-info,
#demo-stage-host .slide-info[style] {
  background: linear-gradient(165deg, rgba(0, 122, 170, 0.96) 0%, rgba(0, 92, 130, 0.97) 58%, rgba(0, 79, 112, 0.98) 100%) !important;
  color: #ffffff !important;
  padding: 2rem 1.8rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0.7rem !important;
}

#demo-stage-host .slide-info::before {
  background: radial-gradient(circle at 0% 0%, rgba(244, 160, 3, 0.34), transparent 58%) !important;
}

#demo-stage-host .slide-info h2,
#demo-stage-host .slide-info p,
#demo-stage-host .slide-app-tag,
#demo-stage-host .slide-counter {
  color: #ffffff !important;
}

#demo-stage-host .slide-feature-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0a5f85;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

#demo-stage-host .slide-app-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.72rem !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

#demo-stage-host .slide-icon {
  font-size: 1.45rem;
  line-height: 1;
}

#demo-stage-host .slide-info h2 {
  margin: 0 !important;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

#demo-stage-host .slide-info p {
  margin: 0 !important;
  font-size: 0.99rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 48ch;
}

#demo-stage-host .slide-highlights {
  margin-top: 0.18rem;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

#demo-stage-host .slide-info h2 em,
#demo-stage-host .slide-app-tag {
  color: #ffd07a !important;
}

#demo-stage-host .highlight-pill {
  margin: 0 !important;
  padding: 0.5rem 0.62rem !important;
  border-radius: 10px !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  color: #ffffff !important;
}

#demo-stage-host .highlight-pill::before,
#demo-stage-host .highlight-pill.teal::before,
#demo-stage-host .highlight-pill.amber::before {
  background: #f4a003 !important;
}

#demo-stage-host .progress-pip {
  background: rgba(0, 173, 239, 0.22) !important;
}

#demo-stage-host .progress-pip:hover {
  background: rgba(0, 173, 239, 0.38) !important;
}

#demo-stage-host .progress-fill.teal {
  background: #00adef !important;
}

#demo-stage-host .progress-fill.amber {
  background: #f4a003 !important;
}

#demo-stage-host .ctrl-btn {
  background: rgba(0, 173, 239, 0.14) !important;
  border: 1px solid rgba(0, 173, 239, 0.36) !important;
  color: #0a6c98 !important;
}

#demo-stage-host .play-btn,
#demo-stage-host .play-btn.amber-play {
  background: #f4a003 !important;
  box-shadow: 0 8px 22px rgba(244, 160, 3, 0.35) !important;
  color: #ffffff !important;
}

#demo-stage-host .toggle-btn.active {
  background: #00adef !important;
  box-shadow: 0 8px 20px rgba(0, 173, 239, 0.32) !important;
}

#demo-stage-host .toggle-btn.active.amber-active {
  background: #f4a003 !important;
  box-shadow: 0 8px 20px rgba(244, 160, 3, 0.32) !important;
}

#demo-stage-host .controls {
  margin-top: 14px;
}

.demo-carousel {
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at 90% 8%, rgba(127, 214, 255, 0.32), rgba(0, 173, 239, 0.16) 52%), linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
  box-shadow: var(--shadow-strong);
  padding: 1rem;
}

.demo-pips {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.demo-pip {
  width: 58px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.demo-pip.active {
  background: linear-gradient(90deg, #43c4f7, #9ae7ff);
}

.demo-slide {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 24, 24, 0.8);
}

.demo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-info {
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(10, 27, 27, 0.96) 0%, rgba(8, 20, 20, 0.98) 100%);
}

.demo-info-amber {
  background: linear-gradient(180deg, rgba(34, 23, 10, 0.96) 0%, rgba(26, 17, 8, 0.98) 100%);
}

.demo-app-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-orange);
}

.demo-info-amber .demo-app-tag {
  color: #ffc867;
}

.demo-info h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}

.demo-info p {
  color: rgba(255, 255, 255, 0.7);
}

.demo-info ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.demo-ctrl,
.demo-play {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.demo-ctrl {
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
}

.demo-play {
  background: var(--accent-orange);
  font-size: 0.88rem;
  font-weight: 800;
}

.demo-counter {
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.demo-steps article {
  padding: 1rem;
  border-left: 4px solid rgba(0, 173, 239, 0.42);
}

.demo-steps strong {
  color: #106f99;
}

.involved-grid,
.support-cards {
  margin-top: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-hero {
  display: grid;
  gap: 0.8rem;
}

.support-invite {
  margin: 0;
  color: #0f5a79;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 800;
}

.support-sponsor {
  margin-top: 0.28rem;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(0, 173, 239, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(127, 214, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(232, 246, 255, 0.9));
  box-shadow: 0 14px 34px rgba(0, 136, 188, 0.16);
}

.support-sponsor-logo {
  width: 100%;
  max-width: 112px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 0.4rem;
  border: 1px solid rgba(0, 173, 239, 0.18);
}

.support-sponsor h3 {
  font-size: 1.05rem;
  color: #0d4e6d;
  margin-bottom: 0.25rem;
}

.support-sponsor p {
  color: #28526c;
}

.support-highlight {
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 160, 3, 0.4);
  background: linear-gradient(180deg, rgba(255, 244, 219, 0.88), rgba(255, 239, 206, 0.98));
  color: #7a4a00;
}

.support-cards {
  margin-top: 0;
}

.support-cards article {
  border-top: 4px solid rgba(0, 173, 239, 0.38);
}

.support-cards article:nth-child(2) {
  border-top-color: rgba(18, 151, 214, 0.45);
}

.support-cards article:nth-child(3) {
  border-top-color: rgba(244, 160, 3, 0.52);
}

.support-cards h3 {
  margin-bottom: 0.5rem;
  color: #0f4f6a;
  font-weight: 800;
}

.support-cards p {
  color: #2a556d;
  font-weight: 560;
}

.contact-wrap {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.lead-form {
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.65rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.8rem;
  font: inherit;
  resize: vertical;
  min-height: 132px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus {
  outline: none;
  border-color: rgba(0, 173, 239, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.12);
}

.lead-form textarea:focus {
  outline: none;
  border-color: rgba(0, 173, 239, 0.48);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.12);
}

.form-status {
  margin: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 650;
}

.form-status.is-success {
  background: rgba(121, 229, 255, 0.16);
  border: 1px solid rgba(0, 173, 239, 0.2);
  color: #0f506c;
}

.form-status.is-error {
  background: rgba(244, 160, 3, 0.14);
  border: 1px solid rgba(244, 160, 3, 0.28);
  color: #925000;
}

.site-footer {
  border-top: 1px solid rgba(0, 173, 239, 0.2);
  background:
    radial-gradient(circle at 88% 8%, rgba(127, 214, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #fcfeff 0%, #edf8ff 100%);
  padding: 1.2rem 0 2.1rem;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
  gap: 1rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-wrap h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f506c;
}

.footer-brand-col,
.footer-links-col,
.footer-contact-col,
.footer-legal-col {
  padding: 0.85rem;
  border: 1px solid rgba(0, 173, 239, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(0, 136, 188, 0.09);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: var(--ink);
}

/* Scale down the shared brand lockup inside the footer */
.footer-brand .brand-lockup {
  padding: 0.28rem 0.48rem 0.34rem;
  box-shadow: none;
  background: transparent;
  border: none;
}

.footer-brand .brand-name {
  font-size: 1.06rem;
}

.footer-brand .brand-tech {
  font-size: 0.84rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 173, 239, 0.18));
}

.footer-tagline {
  margin-top: 0.5rem;
  color: #3a6178;
}

.footer-links {
  display: grid;
  gap: 0.38rem;
}

.footer-links a,
.footer-contact-col a {
  color: #0d6e97;
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover,
.footer-contact-col a:hover {
  color: #f4a003;
}

.footer-legal-col .footer-links a {
  cursor: pointer;
}

.footer-contact-col address {
  font-style: normal;
  line-height: 1.6;
  color: #2c536b;
}

.footer-contact-col p {
  margin-top: 0.45rem;
}

.modal-open {
  overflow: hidden;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 30, 0.5);
  backdrop-filter: blur(10px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 920px);
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(0, 173, 239, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 229, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 248, 255, 0.96) 100%);
  box-shadow: 0 28px 80px rgba(9, 36, 49, 0.28);
  overflow: hidden;
}

.legal-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(0, 173, 239, 0.14);
}

.legal-modal__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d6e97;
}

.legal-modal__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.legal-modal__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f506c;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.legal-modal__close:hover {
  transform: rotate(90deg);
  color: #f4a003;
  border-color: rgba(244, 160, 3, 0.35);
}

.legal-modal__body {
  min-height: 300px;
  overflow: auto;
}

.legal-loader[hidden],
.legal-modal__content[hidden] {
  display: none !important;
}

.legal-loader {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  padding: 2rem;
  text-align: center;
}

.legal-loader__halo {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 229, 255, 0.35) 0%, rgba(244, 160, 3, 0.18) 46%, transparent 72%);
  animation: legalLoaderPulse 1.8s ease-in-out infinite;
}

.legal-loader__logo {
  position: relative;
  z-index: 1;
  width: 90px;
  height: auto;
  animation: legalLoaderWave 1.25s ease-in-out infinite;
  transform-origin: center 85%;
  filter: drop-shadow(0 10px 20px rgba(0, 173, 239, 0.2));
}

.legal-loader__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #28526c;
  font-weight: 700;
}

.legal-loader__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.4rem;
}

.legal-loader__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: legalLoaderDot 1s ease-in-out infinite;
}

.legal-loader__dots span:nth-child(1) {
  background: #79e5ff;
  animation-delay: 0s;
}

.legal-loader__dots span:nth-child(2) {
  background: #00adee;
  animation-delay: 0.16s;
}

.legal-loader__dots span:nth-child(3) {
  background: #f4a003;
  animation-delay: 0.32s;
}

.legal-modal__content {
  padding: 1.2rem 1.25rem 1.5rem;
}

.legal-doc {
  color: #28526c;
}

.legal-doc__updated {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d6e97;
}

.legal-doc h3 {
  margin: 1.2rem 0 0.5rem;
  color: #0f506c;
  font-size: 1.02rem;
}

.legal-doc p,
.legal-doc li {
  line-height: 1.7;
}

.legal-doc ul {
  margin: 0.45rem 0 0.85rem 1.2rem;
}

.legal-doc a {
  color: #0d6e97;
  font-weight: 700;
}

@keyframes legalLoaderPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes legalLoaderWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(16deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(12deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}

@keyframes legalLoaderDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-9px);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes driftA {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(14px);
  }
}

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

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes marqueeX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════ */
/* LOADER DISABLED — remove this rule to re-enable */
#page-loader { display: none !important; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Background decorative orbs */
.loader-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.loader-orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #79e5ff 0%, transparent 70%);
  top: -80px;
  left: -80px;
  animation: loaderOrbDrift 6s ease-in-out infinite alternate;
}

.loader-orb-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #faa403 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  animation: loaderOrbDrift 7s ease-in-out infinite alternate-reverse;
}

@keyframes loaderOrbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Centre container */
.loader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

/* Pulsing glow ring behind logo */
.loader-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  margin-top: -140px; /* sit behind logo */
  margin-left: -85px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 229, 255, 0.35) 0%, rgba(250, 164, 3, 0.18) 50%, transparent 72%);
  animation: loaderRingPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes loaderRingPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Logo */
.loader-logo-wrap {
  position: relative;
}

.loader-logo {
  width: 120px;
  height: auto;
  display: block;
  /* Pop in, then wave */
  animation:
    loaderLogoPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both,
    loaderWave 1.4s ease-in-out 0.9s 4;
  transform-origin: center 85%; /* pivot near base = natural wrist wave */
  filter: drop-shadow(0 8px 20px rgba(0, 173, 239, 0.28));
}

@keyframes loaderLogoPop {
  from { opacity: 0; transform: scale(0.45) translateY(28px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes loaderWave {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(18deg); }
  20%  { transform: rotate(-14deg); }
  35%  { transform: rotate(16deg); }
  50%  { transform: rotate(-10deg); }
  65%  { transform: rotate(10deg); }
  80%  { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

/* Brand name */
.loader-brand {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: loaderFadeUp 0.55s ease 0.55s both;
}

.loader-brand-happy { color: #79e5ff; }
.loader-brand-dot   { color: #111111; }
.loader-brand-care  { color: #f4a003; }

/* Tagline */
.loader-tagline {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a7a90;
  margin: 0;
  animation: loaderFadeUp 0.55s ease 0.75s both;
}

/* Bouncing dots */
.loader-dots {
  display: flex;
  gap: 7px;
  margin-top: 0.3rem;
  animation: loaderFadeUp 0.55s ease 0.95s both;
}

.loader-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  animation: loaderDotBounce 1.1s ease-in-out infinite;
}

.loader-dots span:nth-child(1) {
  background: #79e5ff;
  animation-delay: 0s;
}
.loader-dots span:nth-child(2) {
  background: #00adee;
  animation-delay: 0.18s;
}
.loader-dots span:nth-child(3) {
  background: #f4a003;
  animation-delay: 0.36s;
}

@keyframes loaderDotBounce {
  0%, 70%, 100% { transform: translateY(0);    opacity: 0.5; }
  35%           { transform: translateY(-11px); opacity: 1;   }
}

@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .footer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-revamp {
    grid-template-columns: 1fr;
  }

  .about-modern,
  .demo-redesign,
  .about-highlight-grid,
  .mission-grid,
  .work-grid,
  .involved-grid,
  .support-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout img {
    height: 220px;
  }

  .demo-redesign {
    grid-template-columns: 1fr;
    width: min(1180px, calc(100% - 1rem));
    padding: 0.85rem;
  }

  #demo-stage-host {
    min-height: 620px;
  }

  #demo-stage-host .viewer {
    min-height: 520px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.55rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 1.9rem;
  }

  .hero-modern-wrap {
    display: block;
  }

  .hero-showcase {
    min-height: 540px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .hero-overlay {
    left: 4%;
    right: 4%;
    bottom: 12%;
    max-width: none;
  }

  .hero-overlay h1 {
    font-size: clamp(2.9rem, 10vw, 5rem);
    max-width: 17ch;
  }

  .about-modern {
    grid-template-columns: 1fr;
  }

  .about-revamp {
    grid-template-columns: 1fr;
  }

  .demo-slide {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .demo-visual {
    min-height: 280px;
  }

  .demo-info {
    padding: 1.1rem;
  }

  .demo-redesign {
    width: min(1120px, calc(100% - 0.9rem));
    border-radius: 22px;
  }

  #demo-stage-host {
    min-height: auto;
  }

  #demo-stage-host .slide-info,
  #demo-stage-host .slide-info[style] {
    padding: 1.45rem 1.2rem !important;
  }

  #demo-stage-host .slide-highlights {
    grid-template-columns: 1fr;
  }

  #demo-stage-host .viewer {
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
  }

  .two-col,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .support-sponsor {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1140px, calc(100% - 1.2rem));
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-lockup {
    padding: 0.26rem 0.46rem 0.3rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-tech {
    font-size: 0.8rem;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-brand-col,
  .footer-links-col,
  .footer-contact-col,
  .footer-legal-col {
    padding: 0.78rem;
  }

  .hero-showcase {
    min-height: 440px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.4rem, 10.8vw, 3.8rem);
    max-width: 17ch;
  }

  .photo-a {
    width: 72%;
    height: 290px;
  }

  .photo-b {
    width: 66%;
    height: 240px;
  }

  .photo-c {
    width: 72%;
    height: 210px;
  }

  .hero-overlay {
    padding: 0;
  }

  .hero-overlay h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.4rem);
  }

  .demo-carousel {
    padding: 0.7rem;
  }

  .demo-redesign {
    width: min(1080px, calc(100% - 0.55rem));
    padding: 0.7rem;
    border-radius: 18px;
  }

  #demo-stage-host {
    min-height: auto;
  }

  #demo-stage-host .viewer {
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
  }

  .demo-pip {
    width: 42px;
  }

  .demo-controls {
    gap: 0.45rem;
  }

  .demo-ctrl,
  .demo-play {
    width: 38px;
    height: 38px;
  }

  .demo-counter {
    font-size: 0.82rem;
  }

  .product-switch {
    width: 100%;
    border-radius: 14px;
  }

  .btn {
    width: 100%;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .tab-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    width: 100%;
  }

  .section {
    padding: 3.2rem 0;
  }

  .ambient-orb-a {
    width: 260px;
    height: 260px;
    left: -110px;
  }

  .ambient-orb-b {
    width: 320px;
    height: 320px;
    right: -140px;
  }

  .ambient-orb-c {
    display: none;
  }

  .cursor-glow,
  .scroll-progress {
    display: none;
  }

  .mission-grid,
  .work-grid,
  .involved-grid,
  .support-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-layer,
  .ambient-orb,
  .ambient-mesh,
  .ambient-grid,
  .card-interactive,
  .btn,
  .switch-btn,
  .hero-line-1,
  .hero-line-2,
  .hero-dot,
  .loader-logo,
  .loader-bg-orb,
  .loader-glow-ring,
  .loader-dots span,
  .legal-loader__logo,
  .legal-loader__halo,
  .legal-loader__dots span {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .scroll-progress,
  .cursor-glow {
    display: none !important;
  }

  .hero-line-1,
  .hero-line-2,
  .hero-dot {
    opacity: 1 !important;
  }
}
