:root {
  --bg-top: #2aa0ff;
  --bg-mid: #2b61ff;
  --bg-deep: #1f2f9e;
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.86);
  --ink-faint: rgba(255, 255, 255, 0.72);
  --panel: rgba(216, 225, 241, 0.38);
  --panel-strong: rgba(228, 235, 247, 0.54);
  --panel-border: rgba(255, 255, 255, 0.52);
  --panel-dark: rgba(14, 27, 86, 0.56);
  --blue: #14c7ff;
  --pink: #ff4dd8;
  --purple: #8f4dff;
  --shadow: 0 20px 60px rgba(8, 17, 65, 0.28);
  --shadow-soft: 0 14px 36px rgba(8, 17, 65, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --site-max: 1560px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #2492ff 0%, #315bff 25%, #2a3bb2 65%, #e9eef8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 252, 189, 0.45), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(255, 251, 174, 0.6), transparent 12%),
    linear-gradient(180deg, #2aa0ff 0%, #2b69ff 34%, #3348d8 66%, #edf2f8 100%);
}

.sun-orb {
  position: absolute;
  top: 64px;
  right: 56px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 204, 0.98) 0%, rgba(255, 244, 161, 0.72) 42%, rgba(255, 239, 143, 0.1) 70%, transparent 72%);
  filter: blur(1px);
  animation: pulseSun 6s ease-in-out infinite;
}

.star-field {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  opacity: 0.75;
}
.stars-1 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.98) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,0.9) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,0.82) 0 1px, transparent 2px);
  background-size: 210px 210px, 280px 280px, 340px 340px;
  animation: driftStars 50s linear infinite;
}
.stars-2 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,0.8) 0 1px, transparent 2px);
  background-size: 260px 260px, 310px 310px;
  opacity: 0.48;
  animation: driftStars2 75s linear infinite;
}

.shooting-star {
  position: absolute;
  width: clamp(140px, 16vw, 250px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(194,231,255,0.18) 24%, rgba(255,255,255,0.98) 88%, #fff 100%);
  box-shadow: 0 0 10px rgba(255,255,255,0.72), 0 0 22px rgba(113,213,255,0.42);
  transform: rotate(24deg);
  transform-origin: right center;
  opacity: 0;
  will-change: transform, opacity;
}
.shooting-star::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 9px #fff, 0 0 20px rgba(155,226,255,0.95);
  transform: translateY(-50%);
}
.shooting-star-a { top: 11%; left: 46%; animation: glideStar 9s cubic-bezier(.2,.65,.3,1) infinite 0.8s; }
.shooting-star-b { top: 22%; left: 8%; animation: glideStar 12s cubic-bezier(.2,.65,.3,1) infinite 5.2s; }

.campus-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3vh;
  height: 58vh;
  min-height: 480px;
  background: url("assets/school-campus.webp") center bottom / cover no-repeat;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.02);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.45) 15%, #000 34%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.45) 15%, #000 34%, #000 100%);
}

.site-header,
.section-shell,
.site-footer {
  width: min(calc(100% - 32px), var(--site-max));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(164, 184, 220, 0.2);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.brand-mark img { width: 82px; height: 82px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18)); }
.site-nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; }
.site-nav a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(255,255,255,0.16); transform: translateY(-1px); outline: none; }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(90, 41, 209, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.header-cta {
  padding: 14px 22px;
  font-size: 1.08rem;
  background: linear-gradient(90deg, #d84cff 0%, #6a67ff 48%, #25dbff 100%);
}
.header-cta:hover,
.btn:hover,
.store-btn:hover,
.price-link:hover { transform: translateY(-2px); }
.header-cta span,
.btn span { font-size: 1.25em; line-height: 1; }
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.hero-shell { padding-top: 34px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.9fr) minmax(0, 1.02fr);
  gap: 18px;
  align-items: start;
}
.frost-panel {
  background: linear-gradient(180deg, rgba(225, 233, 246, 0.32), rgba(209, 220, 237, 0.24));
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.hero-copy {
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 100%;
}
.eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
}
.hero-copy h1 {
  margin: 0;
  line-height: 0.92;
  text-wrap: balance;
}
.title-brand,
.title-sub { display: block; }
.title-brand {
  font-size: clamp(3.6rem, 5vw, 5.9rem);
  font-weight: 1000;
  color: white;
}
.title-sub {
  margin-top: 6px;
  font-size: clamp(2.85rem, 4.4vw, 4.95rem);
  font-weight: 1000;
  background: linear-gradient(90deg, #ffffff 0%, #fff 12%, #ff80df 54%, #6be6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: clamp(1.34rem, 1.8vw, 1.68rem);
  line-height: 1.3;
  color: white;
  font-weight: 500;
}
.feature-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  padding: 12px 14px;
  background: rgba(146, 165, 205, 0.22);
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}
.feature-pill strong,
.feature-pill small { display: block; }
.feature-pill strong { font-size: 1rem; }
.feature-pill small { color: var(--ink-faint); font-size: 0.92rem; }
.pill-icon { font-size: 1.65rem; flex: 0 0 auto; }
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn {
  padding: 15px 22px;
  font-size: 1.08rem;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, #eb4cff 0%, #7660ff 50%, #21d8ff 100%);
  color: white;
}
.btn-secondary {
  background: rgba(219, 228, 244, 0.24);
  color: white;
  border: 1px solid rgba(255,255,255,0.42);
}
.btn-small { padding: 12px 18px; width: 100%; }
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 210px;
  min-height: 64px;
  padding: 9px 18px 9px 14px;
  border-radius: 10px;
  background: #050505;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 10px 24px rgba(5, 10, 35, 0.28);
}
.google-play-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.28));
}
.store-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-align: left;
}
.store-copy small {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.store-copy strong {
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-tagline {
  margin: 20px 0 0;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.98rem;
}

.hero-center { position: relative; min-height: 100%; }
.son-spotlight {
  position: relative;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  overflow: visible;
}
.son-spotlight img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 30px 64px rgba(10, 26, 89, 0.24);
}
.halo {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.72;
  z-index: -1;
}
.halo-a { width: 280px; height: 280px; top: 100px; left: -20px; background: rgba(255, 120, 224, 0.5); }
.halo-b { width: 280px; height: 280px; bottom: 80px; right: -30px; background: rgba(70, 209, 255, 0.45); }

.hero-side {
  display: grid;
  gap: 14px;
}
.hero-script {
  justify-self: end;
  margin-right: 18px;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-style: italic;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  line-height: 0.96;
  text-align: right;
  text-shadow: 0 4px 14px rgba(45, 66, 153, 0.34);
}
.phone-mockup {
  position: relative;
  border-radius: 48px;
  padding: 24px 18px 16px;
  background: linear-gradient(180deg, rgba(5, 21, 76, 0.95), rgba(8, 14, 48, 0.98));
  border: 7px solid rgba(17, 21, 34, 0.96);
  box-shadow: 0 24px 60px rgba(6, 16, 58, 0.35);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 12px;
  border-radius: 999px;
  background: rgba(32, 35, 47, 0.92);
}
.phone-top-brand { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.phone-top-brand img { width: 58px; height: 58px; border-radius: 16px; object-fit: cover; }
.phone-top-brand strong { display: block; font-size: 2rem; line-height: 1; }
.phone-top-brand small { color: rgba(255,255,255,0.82); font-size: 0.98rem; }
.children-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; color: rgba(255,255,255,0.95); font-size: 0.98rem; font-weight: 700;
}
.children-label a { color: rgba(255,255,255,0.75); }
.child-row,
.app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(36, 78, 175, 0.92), rgba(25, 53, 132, 0.92));
  border-radius: 18px;
  padding: 12px 14px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  color: #0f216f;
  background: linear-gradient(180deg, #ffd575, #ffcb5e);
}
.avatar-photo {
  background-image: url('assets/son-hero.png');
  background-size: cover;
  background-position: center 10%;
  color: transparent;
}
.avatar-blue { background: linear-gradient(180deg, #91dcff, #53c3ff); }
.child-copy strong,
.child-copy small,
.app-card strong,
.app-card small { display: block; }
.child-copy strong,
.app-card strong { font-size: 1.04rem; }
.child-copy small,
.app-card small { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.arrow { margin-left: auto; font-size: 1.4rem; color: rgba(255,255,255,0.78); }
.card-icon { font-size: 1.6rem; }
.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.phone-nav a {
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
}
.phone-nav span { display: block; font-size: 1.2rem; margin-bottom: 4px; }

.getti-card {
  display: grid;
  gap: 16px;
  border-radius: 28px;
  padding: 18px;
}
.getti-head {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}
.getti-head img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.4);
}
.getti-head strong { display: block; font-size: 1.55rem; }
.getti-head p { margin: 6px 0 0; color: var(--ink-soft); font-size: 1rem; }
.getti-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: white;
  line-height: 1.65;
  font-size: 1rem;
}

.roles-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.role-card {
  border-radius: 24px;
  padding: 18px 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 150px;
}
.role-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 14px 28px rgba(19, 32, 103, 0.22), inset 0 1px 0 rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.role-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 7px rgba(15,24,78,0.22));
}
.role-icon--families { background: linear-gradient(145deg, #ff62d0, #7f5cff); }
.role-icon--educators { background: linear-gradient(145deg, #31c9ff, #3157e9); }
.role-icon--slps { background: linear-gradient(145deg, #a867ff, #eb4ccc); }
.role-icon--schools { background: linear-gradient(145deg, #28d7c5, #3475ed); }
.role-icon--districts { background: linear-gradient(145deg, #6c70ff, #3b46b8); }
.role-card h2 { margin: 0 0 8px; font-size: 1.8rem; line-height: 1; }
.role-card p { margin: 0; color: rgba(255,255,255,0.9); font-size: 1.06rem; line-height: 1.35; }
.role-card span:last-child { display: inline-block; margin-top: 10px; color: #1c5bff; font-weight: 800; }

.pricing-demo-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}
.pricing-panel,
.demo-panel,
.download-band,
.contact-shell {
  border-radius: 30px;
  padding: 24px;
}
.section-heading h2 {
  margin: 10px 0 6px;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.04;
}
.section-heading p:last-child { margin-top: 8px; color: rgba(255,255,255,0.94); font-size: 1.08rem; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.price-card {
  background: rgba(239, 243, 250, 0.42);
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 24px;
  padding: 18px;
  color: #23327b;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38);
}
.price-icon { font-size: 2rem; }
.price-card h3 { margin: 12px 0 8px; font-size: 1.8rem; line-height: 1; color: #2239a0; }
.price-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; color: #192f96; }
.price-line strong { font-size: 2.2rem; line-height: 1; }
.price-line span { font-size: 1rem; font-weight: 700; }
.price-card p { margin: 12px 0 18px; font-size: 1.02rem; line-height: 1.4; color: #3046a7; }
.price-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  font-weight: 800;
  color: white;
  background: linear-gradient(90deg, #eb4cff 0%, #7b5cff 48%, #23d4ff 100%);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.demo-form label,
.contact-form { display: block; }
.demo-form span { display: block; font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(244,247,251,0.54);
  color: #26326b;
  padding: 13px 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
input::placeholder,
textarea::placeholder { color: rgba(59, 76, 142, 0.62); }
textarea { min-height: 140px; resize: vertical; }
.form-btn { width: 100%; }
.demo-form .form-btn { grid-column: 1 / -1; }
.demo-checks {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: white;
  font-size: 1.04rem;
  font-weight: 600;
}
.demo-checks li::before {
  content: "✓";
  margin-right: 10px;
  color: #564fff;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 0.9rem;
}
.form-note { min-height: 24px; margin: 14px 0 0; color: rgba(255,255,255,0.92); font-weight: 600; }

.download-band {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-shell {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.left h2 { max-width: 560px; }
.contact-form {
  display: grid;
  gap: 14px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.checkbox-row input { width: auto; }

.site-footer {
  margin-top: 22px;
  margin-bottom: 24px;
  border-radius: 26px;
  padding: 18px 20px;
  background: rgba(233, 238, 248, 0.78);
  color: #3150b2;
  border: 1px solid rgba(255,255,255,0.54);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-left img { width: 64px; height: 64px; border-radius: 18px; }
.footer-left strong, .footer-left span { display: block; }
.footer-left strong { font-size: 1.4rem; }
.footer-links, .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.footer-links a,
.footer-meta a { font-weight: 700; }

@keyframes driftStars {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-120px, 80px, 0); }
}
@keyframes driftStars2 {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(80px, 60px, 0); }
}
@keyframes glideStar {
  0%, 7% { transform: translate3d(-18vw, -9vw, 0) rotate(24deg); opacity: 0; }
  10% { opacity: 0.95; }
  22% { opacity: 0.9; }
  30%, 100% { transform: translate3d(44vw, 22vw, 0) rotate(24deg); opacity: 0; }
}
@keyframes pulseSun {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 1380px) {
  .hero-grid { grid-template-columns: 1fr 0.9fr; }
  .hero-side { grid-column: 1 / -1; grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px); align-items: start; }
  .hero-script { grid-column: 1 / -1; justify-self: end; }
  .roles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas: "brand actions" "nav nav";
  }
  .brand-mark { grid-area: brand; }
  .header-cta { grid-area: actions; justify-self: end; }
  .site-nav { grid-area: nav; justify-content: flex-start; }
  .hero-grid,
  .pricing-demo-grid,
  .contact-shell { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .hero-script { justify-self: start; margin-right: 0; }
  .roles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  body { background-attachment: fixed; }
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }
  .menu-toggle { display: inline-block; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
  }
  .site-nav.open { display: flex; }
  .header-cta { padding: 12px 16px; font-size: 0.98rem; }
  .brand-mark img { width: 68px; height: 68px; }
  .hero-copy,
  .pricing-panel,
  .demo-panel,
  .contact-shell,
  .download-band { padding: 18px; }
  .title-brand { font-size: clamp(3.05rem, 11vw, 4.2rem); }
  .title-sub { font-size: clamp(2.32rem, 9vw, 3.5rem); }
  .feature-pills,
  .roles-grid,
  .pricing-cards,
  .demo-form { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .store-btn { width: 100%; }
  .son-spotlight img { min-height: 420px; }
  .campus-scene {
    bottom: 0;
    height: 44vh;
    min-height: 360px;
    background-size: auto 100%;
    opacity: 0.68;
  }
  .download-band { flex-direction: column; align-items: stretch; }
  .site-footer { text-align: center; }
  .footer-left, .footer-links, .footer-meta { justify-content: center; }
}


/* FINAL POLISH — approved surgical pass */
.brand-mark img,
.phone-top-brand img,
.footer-left img {
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  background: transparent !important;
  clip-path: none !important;
}

.brand-mark {
  overflow: visible !important;
}

.son-spotlight {
  background: transparent !important;
  padding: 0 !important;
  overflow: visible !important;
}

.son-spotlight img {
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: saturate(.96) contrast(.98) brightness(1.01);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 92%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 4%, #000 92%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-composite: intersect;
}

.getti-head img {
  object-fit: cover !important;
  object-position: 50% 18% !important;
}

/* Wired role destinations */
.audience-pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.pathway-panel {
  scroll-margin-top: 132px;
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pathway-panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1.08;
}
.pathway-panel > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pathway-panel ul {
  margin: 18px 0 24px;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pathway-panel li + li { margin-top: 8px; }
.pathway-panel .btn {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 1080px) {
  .audience-pathways { grid-template-columns: 1fr; }
}

/* Sponsor Access */
.sponsor-shell {
  scroll-margin-top: 132px;
  margin-top: 18px;
  border-radius: var(--radius-xl);
  padding: 30px;
}
.sponsor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: center;
}
.sponsor-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
}
.sponsor-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.5;
}
.sponsor-trust {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(25, 218, 255, 0.2), rgba(231, 76, 255, 0.22));
  border: 1px solid rgba(255,255,255,0.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.sponsor-trust strong,
.sponsor-trust span { display: block; }
.sponsor-trust strong {
  font-size: 1.24rem;
  margin-bottom: 7px;
}
.sponsor-trust span {
  color: var(--ink-soft);
  line-height: 1.45;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.sponsor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 22px;
  background: rgba(218, 229, 246, 0.27);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: var(--shadow-soft);
}
.sponsor-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #eb4cff, #5268ff 58%, #21d8ff);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 12px 26px rgba(27, 42, 118, 0.24);
}
.sponsor-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sponsor-card h3 {
  margin: 18px 0 0;
  font-size: 1.45rem;
}
.sponsor-card p {
  margin: 10px 0 20px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.sponsor-link {
  margin-top: auto;
  color: #fff;
  font-weight: 850;
}
.sponsor-link span { margin-left: 5px; }
.future-label {
  position: absolute;
  top: 22px;
  right: 18px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
}
.sponsor-card--future { background: rgba(130, 142, 194, 0.22); }
@media (max-width: 1180px) {
  .sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .sponsor-heading { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .sponsor-shell { padding: 22px; }
}

/* Per-device language selector */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 2px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(12, 30, 105, 0.24);
  border: 1px solid rgba(255,255,255,0.42);
  color: rgba(255,255,255,0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.language-option {
  appearance: none;
  border: 0;
  padding: 4px 7px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}
.language-option.active {
  background: linear-gradient(90deg, #e84cff, #566dff 56%, #25d9ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(24, 44, 139, 0.3);
}
.language-option:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
