:root {
  --bg: #071523;
  --bg-soft: #0f2234;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-border: rgba(187, 210, 230, 0.24);
  --text: #f4f8fc;
  --muted: #b8cbdd;
  --brand: #29b6f6;
  --brand-2: #00bfa5;
  --brand-3: #73d4ff;
  --shadow: 0 26px 70px rgba(3, 11, 19, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at 5% 0%, rgba(41, 182, 246, 0.18), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(0, 191, 165, 0.16), transparent 28%),
    linear-gradient(180deg, #06121d 0%, #0a1a2a 45%, #08131e 100%);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 84%);
  z-index: -1;
}

body.kids-theme {
  --text: #102844;
  --muted: #42607e;
  --surface-border: rgba(98, 139, 189, 0.34);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 210, 72, 0.34), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(60, 196, 255, 0.3), transparent 30%),
    radial-gradient(circle at 22% 92%, rgba(56, 118, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #dff5ff 0%, #cbecff 40%, #e7fbff 100%);
}

body.kids-theme .site-header.scrolled,
body.kids-theme .site-header {
  background: rgba(214, 241, 255, 0.72);
  border-color: rgba(91, 147, 209, 0.24);
}

body.kids-theme .soft-card,
body.kids-theme .feature-card,
body.kids-theme .stat-card,
body.kids-theme .timeline-card,
body.kids-theme .mini-card,
body.kids-theme .contact-card,
body.kids-theme .section-panel,
body.kids-theme .phone-shell,
body.kids-theme .hero-visual,
body.kids-theme .cta-band,
body.kids-theme .play-banner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 250, 255, 0.86));
  border-color: rgba(116, 164, 214, 0.32);
  box-shadow: 0 20px 48px rgba(68, 124, 181, 0.16);
}

body.kids-theme .nav-links a,
body.kids-theme .brand-text span,
body.kids-theme .footer-links a,
body.kids-theme .meta-list span,
body.kids-theme .footer-note,
body.kids-theme .card-text,
body.kids-theme .info-line {
  color: #3f5e7e;
}

body.kids-theme .btn-primary {
  color: #10304a;
  background: linear-gradient(130deg, #4ee6ff, #57b8ff 45%, #ffe06f);
  box-shadow: 0 14px 30px rgba(87, 184, 255, 0.34);
}

body.kids-theme .btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(102, 155, 210, 0.3);
  color: #1d3d5d;
}

body.kids-theme .kicker,
body.kids-theme .timeline-label,
body.kids-theme .stat-number,
body.kids-theme .brand-text strong,
body.kids-theme .contact-item strong,
body.kids-theme .meta-list strong,
body.kids-theme .marker-title,
body.kids-theme .feature-card h3,
body.kids-theme .mini-card h3,
body.kids-theme .section-title h2,
body.kids-theme .hero-copy h1,
body.kids-theme .hero-copy .mini-note {
  color: #143657;
}

body.kids-theme .check-list li {
  color: #214567;
}

body.kids-theme .eyebrow {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(96, 150, 209, 0.32);
  color: #2b5a87;
  box-shadow: 0 10px 20px rgba(87, 146, 201, 0.14);
}

body.kids-theme .eyebrow .dot {
  background: #38c9ec;
  box-shadow: 0 0 12px rgba(56, 201, 236, 0.45);
}

body.kids-theme .hero-copy p,
body.kids-theme .hero-copy .mini-note {
  color: #365777;
}

body.kids-theme .pill {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(106, 157, 209, 0.3);
  color: #29517a;
}

body.kids-theme .badge {
  background: rgba(89, 195, 255, 0.2);
  border-color: rgba(89, 195, 255, 0.38);
  color: #1f5f86;
}

body.suite-theme {
  background:
    radial-gradient(circle at 85% 12%, rgba(93, 210, 255, 0.18), transparent 24%),
    radial-gradient(circle at 10% 4%, rgba(255, 214, 102, 0.16), transparent 28%),
    linear-gradient(180deg, #08111c 0%, #0d1522 56%, #10141e 100%);
}

img {
  max-width: 100%;
}

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

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 21, 35, 0.58);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 21, 35, 0.9);
  border-color: rgba(187, 210, 230, 0.2);
  box-shadow: 0 12px 36px rgba(1, 8, 15, 0.35);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #63d2ff, #39b8ff);
  color: #042034;
  font-size: 1rem;
  box-shadow: 0 14px 26px rgba(57, 184, 255, 0.3);
}

.brand-logo {
  padding: 4px;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

body.kids-theme .brand-badge {
  background: linear-gradient(135deg, #ffe57a, #ffb86d);
  color: #3c2b00;
}

body.suite-theme .brand-badge {
  background: linear-gradient(135deg, #6ec8ff, #a78bfa);
  color: #04111d;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, #63d2ff, #32ceb3);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.btn-row,
.hero-actions,
.cta-actions,
.card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(187, 210, 230, 0.25);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-primary {
  color: #052133;
  background: linear-gradient(135deg, #73d4ff, #4ce7cf);
  box-shadow: 0 14px 32px rgba(76, 231, 207, 0.23);
  border: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 34px;
  align-items: start;
}

body.suite-theme .hero-grid {
  grid-template-areas:
    "copy visual"
    "stats stats";
}

body.suite-theme .hero-copy {
  grid-area: copy;
}

body.suite-theme .hero-visual {
  grid-area: visual;
}

body.suite-theme .hero-stat-grid {
  grid-area: stats;
  margin-top: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6e4f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #86f2d4;
  box-shadow: 0 0 14px rgba(134, 242, 212, 0.6);
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-copy .mini-note {
  margin-top: 18px;
  color: #cfe0f2;
  font-size: 0.92rem;
}

.hero-visual,
.section-panel,
.soft-card,
.feature-card,
.stat-card,
.timeline-card,
.contact-card,
.phone-shell,
.play-banner,
.cta-band,
.mini-card {
  position: relative;
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 28px;
  overflow: hidden;
}

.section-panel {
  overflow: hidden;
  padding: 26px;
}

.feature-card,
.stat-card,
.timeline-card,
.contact-card,
.mini-card,
.soft-card,
.section-panel,
.play-banner,
.cta-band,
.hero-visual {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover,
.stat-card:hover,
.timeline-card:hover,
.contact-card:hover,
.mini-card:hover,
.soft-card:hover,
.section-panel:hover,
.play-banner:hover,
.cta-band:hover,
.hero-visual:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 208, 238, 0.42);
  box-shadow: 0 28px 72px rgba(2, 10, 18, 0.4);
}

.glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.68;
}

.glow-one {
  top: -12px;
  right: 24px;
  width: 180px;
  height: 180px;
  background: rgba(124, 140, 255, 0.28);
}

.glow-two {
  bottom: 18px;
  left: -8px;
  width: 160px;
  height: 160px;
  background: rgba(79, 224, 194, 0.22);
}

.panel-stack {
  position: relative;
  display: grid;
  gap: 16px;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 26px;
  background: rgba(8, 20, 33, 0.86);
  border: 1px solid rgba(187, 210, 230, 0.18);
}

body.kids-theme .dashboard-card {
  background: rgba(255, 255, 255, 0.22);
}

.metric-row,
.mock-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-box,
.mock-tile {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(187, 210, 230, 0.18);
}

.metric-box h3,
.mock-tile h3,
.section-title h2,
.card-header h3,
.feature-card h3,
.stat-card h3,
.timeline-card h3,
.contact-card h3,
.play-banner h3,
.mini-card h3,
.phone-screen h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.metric-box span,
.mock-tile span,
.meta-list span,
.info-line,
.card-text,
.mini-copy,
.footer-note {
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.pill,
.badge,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pill {
  background: rgba(255, 255, 255, 0.06);
  color: #d6e6f5;
  border: 1px solid rgba(187, 210, 230, 0.2);
}

.badge {
  background: rgba(41, 182, 246, 0.14);
  color: #c5ecff;
  border: 1px solid rgba(41, 182, 246, 0.28);
}

body.kids-theme .badge {
  background: rgba(255, 235, 132, 0.24);
  color: #fff7d3;
  border-color: rgba(255, 235, 132, 0.28);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  padding: 42px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 64ch;
}

.feature-card,
.stat-card,
.timeline-card,
.contact-card,
.mini-card,
.soft-card {
  padding: 24px;
}

.feature-icon,
.dot-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(115, 212, 255, 0.2), rgba(76, 231, 207, 0.16));
  border: 1px solid rgba(187, 210, 230, 0.22);
  font-weight: 800;
}

body.kids-theme .feature-icon {
  background: linear-gradient(135deg, rgba(255, 213, 99, 0.24), rgba(255, 157, 132, 0.22));
}

.feature-card p,
.stat-card p,
.timeline-card p,
.contact-card p,
.mini-card p,
.soft-card p,
.section-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dce8f5;
}

.check-list li::before {
  content: "✦";
  color: #6fe6d5;
  font-size: 0.9rem;
  margin-top: 3px;
}

body.kids-theme .check-list li::before {
  color: #fff4ac;
}

.phone-shell {
  padding: 18px;
  overflow: hidden;
}

.phone-frame {
  width: min(100%, 340px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, #192337, #0a101a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

body.kids-theme .phone-frame {
  background: linear-gradient(180deg, #6ea5ff, #5b7eff);
}

.phone-screen {
  padding: 18px;
  min-height: 540px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 140, 255, 0.2), transparent 35%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.kids-theme .phone-screen {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 250, 210, 0.32), transparent 35%),
    rgba(255, 255, 255, 0.18);
}

.notch {
  width: 122px;
  height: 26px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 70%);
  border-radius: inherit;
  background: linear-gradient(90deg, #73d4ff, #4ce7cf);
}

body.kids-theme .progress-bar span {
  background: linear-gradient(90deg, #ffe57a, #ff8b89);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suite-shot-only {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(187, 210, 230, 0.24);
  background:
    radial-gradient(circle at 10% 0%, rgba(115, 212, 255, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 46px rgba(2, 10, 18, 0.32);
}

.suite-shot-strip {
  position: relative;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 212, 255, 0.42) transparent;
  border-radius: 20px;
}

.suite-shot-strip img {
  width: clamp(150px, 20vw, 178px);
  aspect-ratio: 9 / 19.5;
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(187, 210, 230, 0.2);
  box-shadow: 0 12px 28px rgba(2, 10, 18, 0.35);
  scroll-snap-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.suite-shot-strip img:first-child {
  width: clamp(165px, 21vw, 192px);
}

.suite-shot-strip img:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 10, 18, 0.44);
}

.suite-shot-strip::-webkit-scrollbar {
  height: 6px;
}

.suite-shot-strip::-webkit-scrollbar-thumb {
  background: rgba(115, 212, 255, 0.4);
  border-radius: 999px;
}

.kids-shot-only {
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(95, 156, 216, 0.32);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 224, 110, 0.22), transparent 40%),
    radial-gradient(circle at 100% 10%, rgba(103, 205, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(237, 248, 255, 0.86));
}

.kids-shot-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.kids-mini-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(111, 166, 219, 0.38);
  box-shadow: 0 12px 24px rgba(54, 125, 188, 0.24);
  background: #ffffff;
}

.kids-shot-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(78, 178, 245, 0.48) transparent;
}

.kids-shot-strip img {
  width: clamp(142px, 20vw, 176px);
  aspect-ratio: 9 / 19.5;
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(112, 167, 218, 0.35);
  box-shadow: 0 14px 28px rgba(59, 123, 181, 0.2);
  scroll-snap-align: center;
}

.kids-shot-strip img:first-child {
  width: clamp(154px, 22vw, 190px);
}

.kids-shot-strip::-webkit-scrollbar {
  height: 6px;
}

.kids-shot-strip::-webkit-scrollbar-thumb {
  background: rgba(78, 178, 245, 0.46);
  border-radius: 999px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.meta-list strong,
.info-row strong,
.timeline-label,
.stat-number {
  display: block;
  color: var(--text);
}

.play-banner,
.cta-band {
  padding: 28px;
  overflow: hidden;
}

.play-banner::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -40px -46px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.22), transparent 68%);
}

.footer {
  padding: 28px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.footer-note {
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

.kicker {
  color: #d8e9f7;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-text {
  color: #dff9f1;
}

body.kids-theme .highlight-text {
  color: #fff7d9;
}

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

.section-panel .info-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.info-row {
  display: grid;
  gap: 6px;
}

.section-panel .info-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(187, 210, 230, 0.16);
}

.section-panel .info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.timeline-line {
  display: grid;
  gap: 12px;
  position: relative;
  padding-left: 20px;
  margin-top: 18px;
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.timeline-item {
  position: relative;
  padding: 0 0 0 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6ec8ff, #7bf1d7);
  box-shadow: 0 0 0 4px rgba(110, 200, 255, 0.12);
}

body.kids-theme .timeline-item::before {
  background: linear-gradient(180deg, #ffe57a, #ff947a);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.marker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.marker-card {
  min-height: 130px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  display: grid;
  align-content: space-between;
}

.marker-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-block {
  position: absolute;
  border-radius: 28px;
  opacity: 0.5;
  pointer-events: none;
}

.accent-one {
  width: 120px;
  height: 120px;
  right: -14px;
  top: 18px;
  background: linear-gradient(135deg, rgba(110, 200, 255, 0.26), rgba(124, 140, 255, 0.12));
}

.accent-two {
  width: 140px;
  height: 140px;
  left: -28px;
  bottom: -34px;
  background: linear-gradient(135deg, rgba(79, 224, 194, 0.16), rgba(124, 140, 255, 0.08));
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
  }

  .suite-shot-strip img {
    width: clamp(138px, 18vw, 164px);
  }

  .suite-shot-strip img:first-child {
    width: clamp(148px, 19vw, 176px);
  }

  .kids-shot-strip img {
    width: clamp(130px, 18vw, 162px);
  }

  .kids-shot-strip img:first-child {
    width: clamp(144px, 19vw, 176px);
  }
}

.hero-stat-grid .stat-card {
  padding: 18px;
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.callout {
  border-left: 3px solid rgba(115, 212, 255, 0.72);
  padding-left: 14px;
  color: #deebf7;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .feature-card,
  .section-panel,
  .play-banner,
  .contact-card {
    animation: rise-in 0.7s ease both;
  }

  .hero-visual {
    animation-delay: 0.08s;
  }

  .feature-card:nth-child(2) {
    animation-delay: 0.12s;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.kids-theme .callout {
  border-left-color: rgba(255, 225, 122, 0.9);
}

@media (max-width: 1024px) {
  .hero-grid,
  .cta-band,
  .footer-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-panel .info-grid {
    grid-template-columns: 1fr;
  }

  body.suite-theme .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "stats";
  }

  .kids-shot-only {
    padding: 14px;
  }

  .suite-shot-only {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.kids-theme .nav-links {
    background: rgba(44, 74, 170, 0.95);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links .btn {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .info-grid,
  .metric-row,
  .mock-row,
  .hero-stat-grid,
  .stat-strip,
  .marker-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .feature-card,
  .stat-card,
  .timeline-card,
  .soft-card,
  .play-banner,
  .cta-band,
  .contact-card,
  .mini-card,
  .section-panel,
  .phone-shell,
  .hero-visual {
    border-radius: 24px;
  }

  .phone-screen {
    min-height: 480px;
  }

  .suite-shot-strip img {
    width: clamp(132px, 42vw, 170px);
  }

  .suite-shot-strip img:first-child {
    width: clamp(142px, 45vw, 186px);
  }

  .kids-shot-strip img {
    width: clamp(126px, 41vw, 166px);
  }

  .kids-shot-strip img:first-child {
    width: clamp(138px, 45vw, 182px);
  }
}
