:root {
  --blue: #003d7c;
  --blue-deep: #022a54;
  --blue-mid: #315b82;
  --blue-pale: #eaf1f8;
  --orange: #ef7c00;
  --orange-dark: #d76700;
  --orange-pale: #fdf0e1;
  --ink: #17283c;
  --ink-soft: #586b80;
  --paper: #fcfbf8;
  --cream: #f7f3ea;
  --white: #fff;
  --line: #e6e2d9;
  --line-blue: #d8e2ee;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 10px 30px rgba(2, 42, 84, 0.07);
  --shadow-md: 0 22px 56px rgba(2, 42, 84, 0.13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; }
a { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  color: var(--blue-deep);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { color: var(--orange); font-style: normal; font-weight: 700; }
::selection { color: var(--blue-deep); background: #ffd7aa; }
:focus-visible { outline: 3px solid rgba(239, 124, 0, 0.72); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-deep);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: none; }
.wrap { width: min(100% - 48px, 1160px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-compact { padding: 76px 0; }
.section-border { border-top: 1px solid var(--line); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 1px; background: var(--orange); content: ""; }
.eyebrow-light { color: #b8cce2; }
.eyebrow .acr { color: var(--orange); }
.section-head { max-width: 740px; margin-bottom: 44px; }
.section-head h2 { margin: 16px 0 15px; font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-bottom: 0; color: var(--ink-soft); font-size: 1.04rem; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 25px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 10px 28px rgba(239, 124, 0, 0.2); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 15px 32px rgba(239, 124, 0, 0.28); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { color: #fff; background: var(--blue); }
.btn-light-outline { border-color: rgba(255, 255, 255, 0.44); color: #fff; }
.btn-light-outline:hover { background: rgba(255, 255, 255, 0.1); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.18s ease, border-color 0.18s ease;
}
.arrow-link:hover { gap: 12px; border-color: var(--orange); }

/* Navigation */
.site-nav {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(230, 226, 217, 0.88);
  background: rgba(252, 251, 248, 0.93);
  backdrop-filter: blur(18px);
}
.nav-inner { display: flex; height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: none; align-items: center; text-decoration: none; }
.brand img { width: 126px; height: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); margin: 0; padding: 0; list-style: none; }
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { opacity: 1; transform: scaleX(1); }
.nav-links .nav-contact { padding: 9px 18px; border-radius: 999px; color: #fff; background: var(--blue); }
.nav-links .nav-contact::after { display: none; }
.nav-links .nav-contact:hover, .nav-links .nav-contact.active { color: #fff; background: var(--blue-deep); }
.menu-btn {
  display: none;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue);
  background: #fff;
  cursor: pointer;
}
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .menu-close, .menu-btn[aria-expanded="true"] .menu-open { display: none; }
.menu-btn[aria-expanded="true"] .menu-close { display: block; }

/* Home hero */
.hero { position: relative; overflow: hidden; padding: 90px 0 100px; }
.hero::before {
  position: absolute;
  top: -260px;
  right: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 124, 0, 0.11), rgba(239, 124, 0, 0) 68%);
  content: "";
  pointer-events: none;
}
.hero::after {
  position: absolute;
  bottom: 42px;
  left: 50%;
  width: 680px;
  height: 290px;
  background-image: radial-gradient(rgba(0, 61, 124, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
  align-items: center;
  gap: 64px;
}
.hero h1 { max-width: 720px; margin: 20px 0 24px; font-size: clamp(3rem, 5.5vw, 4.75rem); }
.hero-lede { max-width: 620px; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.1rem; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-badge { display: inline-flex; width: 138px; height: 46px; align-items: center; }
.store-badge img { width: 100%; height: 100%; object-fit: fill; }
.hero-meta { max-width: 620px; margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.82rem; }
.hero-meta strong { color: var(--blue); }
.hero-meta a { text-decoration-color: transparent; text-underline-offset: .18em; }
.hero-meta a:hover { text-decoration-color: currentColor; }
.phone-scene { position: relative; height: 590px; isolation: isolate; }
.phone-scene::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--orange-pale);
  box-shadow: 0 0 0 34px rgba(234, 241, 248, 0.75);
  content: "";
  transform: translate(-50%, -50%);
}
.phone-shot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 38px;
  background: #0c1420;
  box-shadow: 0 26px 60px rgba(2, 42, 84, 0.24);
  overflow: hidden;
}
.phone-shot img { width: 100%; border-radius: 30px; }
.phone-shot-main { z-index: 3; transform: translate(-50%, -50%) rotate(1.5deg); }
.phone-shot-left { z-index: 1; width: 212px; opacity: 0.86; transform: translate(-97%, -48%) rotate(-8deg); }
.phone-shot-right { z-index: 2; width: 216px; opacity: 0.9; transform: translate(-1%, -47%) rotate(8deg); }
.phone-label {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 24px;
  max-width: 205px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 700;
}
.phone-label span { display: block; margin-bottom: 3px; color: var(--orange); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.trust-bar { border-block: 1px solid var(--line); background: #fff; }
.trust-inner { display: flex; min-height: 82px; align-items: center; justify-content: center; gap: 12px; color: var(--ink-soft); font-size: 0.83rem; text-align: center; }
.trust-mark { color: var(--orange); font-family: var(--display); font-size: 1.45rem; }

/* Home sections */
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.audience-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(2, 42, 84, 0.04);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.audience-card::after { position: absolute; top: -42px; right: -42px; width: 120px; height: 120px; border-radius: 50%; background: var(--orange-pale); content: ""; opacity: 0.7; }
.audience-card:hover { border-color: var(--line-blue); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.card-icon { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; margin-bottom: 22px; border-radius: 15px; color: var(--orange); background: var(--orange-pale); }
.card-icon svg { width: 25px; height: 25px; }
.audience-card .card-label { margin-bottom: 8px; color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.audience-card h3 { margin-bottom: 11px; font-size: 1.46rem; }
.audience-card p { margin-bottom: 24px; color: var(--ink-soft); font-size: 0.92rem; }
.audience-card .arrow-link { align-self: flex-start; margin-top: auto; }
.framework-section { position: relative; overflow: hidden; color: #fff; background: var(--blue-deep); }
.framework-section::before { position: absolute; top: -210px; left: -150px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(239, 124, 0, 0.18), transparent 68%); content: ""; }
.framework-grid { position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: end; gap: 72px; }
.framework-copy h2 { margin: 18px 0; color: #fff; font-size: clamp(2.15rem, 4vw, 3.35rem); }
.framework-copy h2 em { color: #ffb369; }
.framework-copy p { color: #b7cce2; }
.framework-copy .btn { margin-top: 26px; }
.beat-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.beat-card { min-height: 180px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 18px; background: rgba(255, 255, 255, 0.065); }
.beat-card span { display: block; margin-bottom: 24px; color: #ffb369; font-family: var(--display); font-size: 2rem; line-height: 1; }
.beat-card h3 { margin-bottom: 8px; color: #fff; font-family: var(--body); font-size: 0.95rem; font-weight: 700; letter-spacing: 0; }
.beat-card p { color: #a9c2dd; font-size: 0.82rem; }
.aspiration { text-align: center; }
.aspiration-inner { max-width: 850px; margin-inline: auto; }
.spark-glyph { display: block; margin-bottom: 8px; color: var(--orange); font-family: var(--display); font-size: 2.1rem; }
.aspiration h2 { margin: 16px 0 22px; font-size: clamp(2.2rem, 4.6vw, 3.55rem); }
.aspiration p { color: var(--ink-soft); font-size: 1.06rem; }
.contact-band { position: relative; padding: 84px 0; color: #fff; background: var(--blue); overflow: hidden; }
.contact-band::after { position: absolute; right: -130px; bottom: -210px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239, 124, 0, 0.26), transparent 68%); content: ""; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 70px; }
.contact-copy h2 { margin: 16px 0; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.contact-copy h2 em { color: #ffb369; }
.contact-copy p { color: #c4d6e8; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: var(--radius); background: rgba(255, 255, 255, 0.075); backdrop-filter: blur(6px); }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { color: #c4d6e8; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid transparent; border-radius: 12px; color: var(--ink); background: #fff; padding: 12px 13px; }
.form-field textarea { min-height: 92px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(239, 124, 0, 0.22); }
.form-actions { display: flex; grid-column: 1 / -1; align-items: center; gap: 15px; flex-wrap: wrap; }
.form-actions button { cursor: pointer; }
.form-note { min-height: 1.4em; margin: 0; color: #ffd2a3; font-size: 0.78rem; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 80px 0 74px; border-bottom: 1px solid var(--line); }
.page-hero::after { position: absolute; top: -210px; right: -140px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(239, 124, 0, 0.09), transparent 68%); content: ""; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); align-items: center; gap: 68px; }
.page-hero-single { grid-template-columns: minmax(0, 900px); }
.page-hero h1 { max-width: 780px; margin: 18px 0 20px; font-size: clamp(2.65rem, 5vw, 4.2rem); }
.page-hero .lede { max-width: 720px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.08rem; }
.page-aside { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.82); box-shadow: var(--shadow-sm); }
.page-aside-label { margin-bottom: 15px; color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.page-aside strong { display: block; color: var(--blue-deep); font-family: var(--display); font-size: 1.45rem; font-weight: 500; line-height: 1.25; }
.page-aside p { margin-top: 10px; color: var(--ink-soft); font-size: 0.86rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.stat { padding: 13px 8px; border-radius: 12px; background: var(--orange-pale); text-align: center; }
.stat b { display: block; color: var(--blue-deep); font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.stat span { color: var(--ink-soft); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.page-section { padding: 84px 0; border-bottom: 1px solid var(--line); }
.page-section-tint { background: #fff; }
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); align-items: center; gap: 72px; }
.split.reverse .feature-copy { order: 2; }
.split.reverse .feature-media { order: 1; }
.feature-copy h2 { margin: 14px 0 15px; font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.feature-copy p { color: var(--ink-soft); }
.feature-copy .arrow-link, .feature-copy .btn { margin-top: 10px; }
.feature-media { min-width: 0; }
.media-frame { position: relative; min-height: 340px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.media-frame::before { position: absolute; top: 12px; left: 16px; width: 6px; height: 6px; border-radius: 50%; background: #f3a95f; box-shadow: 11px 0 #e7c47f, 22px 0 #9ab8d3; content: ""; }
.media-frame img { width: 100%; height: 100%; min-height: 304px; margin-top: 10px; border-radius: 13px; object-fit: contain; background: #f7f9fb; }
.media-frame.photo img, .media-frame.story img { object-fit: cover; }
.media-frame.story img { aspect-ratio: 3 / 2; }
.media-caption { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 13px; color: var(--ink-soft); font-size: 0.76rem; }
.media-caption strong { color: var(--blue); font-size: 0.78rem; }
.phone-feature { position: relative; display: flex; min-height: 510px; align-items: center; justify-content: center; border-radius: var(--radius); background: linear-gradient(145deg, var(--blue-pale), #f8eee2); overflow: hidden; }
.phone-feature::before { position: absolute; width: 310px; height: 310px; border: 1px solid rgba(0, 61, 124, 0.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.4), 0 0 0 92px rgba(0, 61, 124, 0.035); content: ""; }
.app-phone { position: relative; z-index: 1; width: 225px; padding: 8px; border-radius: 34px; background: #0d1520; box-shadow: 0 24px 50px rgba(2, 42, 84, 0.22); }
.app-phone img { width: 100%; border-radius: 27px; }
.app-phone-small { width: 184px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gallery-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-card { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 30px rgba(2, 42, 84, 0.04); overflow: hidden; }
.gallery-visual { display: flex; height: 280px; align-items: center; justify-content: center; background: linear-gradient(145deg, #eef4f9, #fbf2e8); overflow: hidden; }
.gallery-visual img { width: 100%; height: 100%; object-fit: contain; }
.gallery-visual.photo img, .gallery-visual.story img { object-fit: cover; }
.gallery-visual.phone img { width: auto; height: 90%; border: 6px solid #0d1520; border-radius: 24px; box-shadow: 0 16px 32px rgba(2, 42, 84, 0.18); }
.gallery-copy { padding: 22px; }
.gallery-copy span { display: block; margin-bottom: 7px; color: var(--orange); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.gallery-copy h3 { margin-bottom: 7px; font-family: var(--body); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.gallery-copy p { color: var(--ink-soft); font-size: 0.84rem; }

/* Product storytelling — viewport-scale pacing inspired by product education pages. */
.product-wrap { width: min(100% - 48px, 1320px); margin-inline: auto; }
.story-section {
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  padding-block: clamp(36px, 6svh, 64px);
  scroll-margin-top: 76px;
}
.product-story-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(56px, 8vw, 112px);
}
.story-phone .feature-copy { max-width: 480px; }
.story-phone .feature-copy h2 { font-size: clamp(2.25rem, 4.4vw, 3.7rem); }
.story-phone .feature-copy p { max-width: 440px; font-size: 1.03rem; }
.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: var(--blue-mid);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}
.source-chip::before { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); content: ""; }
.product-phone-stage { min-height: min(70svh, 680px); }
.product-phone-stage::before { width: min(42vw, 420px); height: min(42vw, 420px); }
.product-phone { width: clamp(270px, 20vw, 310px); padding: 9px; border-radius: 42px; }
.product-phone img { border-radius: 33px; }
.app-showcase-section { padding: clamp(82px, 10vw, 136px) 0; background: #f3f5f7; overflow: hidden; }
.app-showcase-section .section-head { max-width: 800px; }
.app-showcase-section .section-head h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.product-gallery {
  display: flex;
  gap: clamp(20px, 2.5vw, 32px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 8px max(24px, calc((100vw - 1320px) / 2)) 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(24px, calc((100vw - 1320px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(0, 61, 124, 0.32) transparent;
  scrollbar-width: thin;
}
.product-gallery::-webkit-scrollbar { height: 8px; }
.product-gallery::-webkit-scrollbar-track { background: transparent; }
.product-gallery::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(0, 61, 124, 0.28); }
.product-gallery-card {
  display: grid;
  flex: 0 0 clamp(400px, 35vw, 500px);
  grid-template-rows: minmax(620px, 70svh) auto;
  border: 1px solid #dde3e9;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(2, 42, 84, 0.08);
  scroll-snap-align: start;
  overflow: hidden;
}
.product-gallery-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 34px 0;
  background: radial-gradient(circle at 50% 40%, #fff 0, #edf2f7 62%, #e4ebf2 100%);
  overflow: hidden;
}
.product-gallery-visual img {
  width: auto;
  height: calc(100% - 24px);
  border: 8px solid #0d1520;
  border-radius: 38px;
  background: #0d1520;
  box-shadow: 0 24px 50px rgba(2, 42, 84, 0.22);
}
.product-gallery-copy { padding: 27px 30px 30px; }
.product-gallery-copy span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.product-gallery-copy h3 { margin-bottom: 8px; font-size: 1.42rem; }
.product-gallery-copy p { color: var(--ink-soft); font-size: 0.9rem; }
.gallery-hint { display: flex; align-items: center; gap: 11px; margin: 14px 0 0; color: var(--ink-soft); font-size: 0.78rem; font-weight: 600; }
.gallery-hint span { color: var(--orange); font-size: 1rem; }
.platform-story { padding: clamp(86px, 9vw, 124px) 0; overflow: hidden; }
.platform-story-copy { max-width: 860px; margin-bottom: clamp(32px, 4vw, 50px); }
.platform-story-copy h2 { margin: 15px 0 15px; font-size: clamp(2.35rem, 4.6vw, 3.8rem); }
.platform-story-copy p { max-width: 760px; color: var(--ink-soft); font-size: 1.02rem; }
.platform-frame {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 30px 14px 14px;
  border: 1px solid #dce2e8;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(2, 42, 84, 0.12);
  overflow: hidden;
}
.platform-frame::before {
  position: absolute;
  top: 12px;
  left: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef8e72;
  box-shadow: 12px 0 #e7c36f, 24px 0 #82b89c;
  content: "";
}
.platform-frame img { width: 100%; border: 1px solid #e7eaee; border-radius: 17px; background: #f4f5f7; }
.platform-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 7px 2px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}
.platform-frame figcaption strong { color: var(--blue); font-size: 0.78rem; }
.platform-screenshot-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
.page-cta { padding: 78px 0; background: linear-gradient(180deg, var(--paper), #f4f7fa); text-align: center; }
.page-cta-inner { max-width: 720px; margin-inline: auto; }
.page-cta h2 { margin-bottom: 13px; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-cta p { margin: 0 auto 26px; color: var(--ink-soft); }
.cta-stores { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* How it works */
.story-beat { position: absolute; z-index: 2; top: 34px; left: 36px; display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: var(--orange); box-shadow: 0 10px 24px rgba(239, 124, 0, 0.28); font-family: var(--display); font-size: 1.2rem; }
.pipeline-grid .gallery-visual { height: 220px; padding: 18px; background: #f7f9fb; }
.story-video-beat { padding-block: clamp(36px, 5svh, 56px); }
.video-story-grid {
  min-height: calc(100svh - 148px);
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 7vw, 96px);
}
.video-story-grid .feature-copy { max-width: 500px; }
.video-story-grid .feature-copy h2 { margin: 14px 0 15px; font-size: clamp(2.3rem, 4.25vw, 3.65rem); }
.video-story-grid .feature-copy p { max-width: 460px; color: var(--ink-soft); font-size: 1.03rem; }
.video-still-stage {
  display: flex;
  min-height: min(72svh, 680px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line-blue);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 38%, #fff 0, #edf2f7 60%, #e7edf3 100%);
  box-shadow: 0 22px 56px rgba(2, 42, 84, 0.08);
  overflow: hidden;
}
.video-still {
  width: min(330px, 100%);
  margin: 0;
  padding: 8px;
  border-radius: 40px;
  background: #0d1520;
  box-shadow: 0 26px 58px rgba(2, 42, 84, 0.24);
}
.video-still img,
.video-still video { display: block; width: 100%; aspect-ratio: 9 / 16; border-radius: 32px; background: #0d1520; object-fit: cover; }
.journey-section { padding: clamp(86px, 9vw, 124px) 0 0; overflow: hidden; }
.journey-section .section-head { margin-bottom: 20px; }
.journey-story { position: relative; padding-left: 88px; }
.journey-rail {
  position: absolute;
  z-index: 2;
  top: calc((100svh - 76px) / 2);
  bottom: calc((100svh - 76px) / 2);
  left: 31px;
  width: 3px;
  border-radius: 999px;
  background: #dbe4ed;
  overflow: hidden;
}
.journey-rail span {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--orange), #f4a34c);
  transition: height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.journey-story[data-active="2"] .journey-rail span { height: 50%; }
.journey-story[data-active="3"] .journey-rail span { height: 100%; }
.journey-step {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: 32px 0;
  scroll-margin-top: 76px;
}
.journey-label { position: absolute; z-index: 4; top: 50%; left: clamp(18px, 4vw, 64px); max-width: 290px; color: var(--blue); font-size: clamp(2rem, 4vw, 4.4rem); line-height: 0.96; transform: translateY(-50%); }
.journey-stage { transform: translate3d(0, calc(var(--journey-offset, 0) * 1px), 0); }
.journey-step:not(.is-current) .journey-stage { opacity: 0.5; transform: translate3d(0, calc(var(--journey-offset, 0) * 1px), 0) scale(0.94); }
.journey-step.is-current .journey-stage { box-shadow: 0 32px 90px rgba(2, 42, 84, 0.16); }
.journey-step .journey-platform-stage .platform-frame,
.journey-step .journey-episodes-pair { margin-left: clamp(220px, 27vw, 390px); }
.journey-marker {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -88px;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 2px solid #dbe4ed;
  border-radius: 50%;
  color: var(--blue-mid);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(2, 42, 84, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: translateY(-50%);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.journey-step.is-current .journey-marker { border-color: var(--orange); color: #fff; background: var(--orange); transform: translateY(-50%) scale(1.08); }
.journey-stage {
  position: relative;
  display: flex;
  min-height: min(78svh, 720px);
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 42px);
  border: 1px solid var(--line-blue);
  border-radius: 34px;
  background: radial-gradient(circle at 50% 38%, #fff 0, #edf2f7 60%, #e5ecf3 100%);
  box-shadow: 0 24px 70px rgba(2, 42, 84, 0.1);
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.journey-step:not(.is-current) .journey-stage { opacity: 0.72; transform: scale(0.965); }
.journey-platform-stage .platform-frame { z-index: 1; width: min(88%, 1000px); margin: 0; }
.journey-materials-stage .platform-frame { transform: rotate(-0.8deg); }
.journey-pathway-stage .platform-frame { transform: rotate(0.8deg); }
.journey-materials-stage { background: linear-gradient(145deg, #eef4f9, #fbf2e8); }
.journey-pathway-stage { background: linear-gradient(145deg, #f8efe4, #eaf1f8); }
.journey-decoration { position: absolute; pointer-events: none; }
.journey-pages {
  top: 54px;
  right: 5%;
  width: 130px;
  height: 168px;
  border: 1px solid rgba(0, 61, 124, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: -22px 18px 0 rgba(255, 255, 255, 0.46), -44px 36px 0 rgba(255, 255, 255, 0.26);
  transform: rotate(8deg);
}
.journey-sparks {
  top: 13%;
  left: 6%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 72px 36px 0 rgba(239, 124, 0, 0.46), 34px 112px 0 rgba(0, 61, 124, 0.24), 112px 152px 0 rgba(239, 124, 0, 0.26);
}
.journey-app-stage {
  min-height: min(80svh, 720px);
  background: radial-gradient(circle at 50% 40%, #fff 0, #edf2f7 58%, #e5ecf3 100%);
}
.journey-orbit { width: min(48vw, 560px); height: min(48vw, 560px); border: 1px solid rgba(0, 61, 124, 0.12); border-radius: 50%; box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.42), 0 0 0 108px rgba(0, 61, 124, 0.035); }
.journey-episodes-pair { position: relative; z-index: 1; display: flex; width: min(100% - clamp(220px, 27vw, 390px), 690px); align-items: center; justify-content: center; gap: clamp(18px, 3vw, 42px); }
.journey-episode-frame { flex: 0 1 auto; margin: 0; padding: 7px; border-radius: 38px; background: #0d1520; box-shadow: 0 26px 58px rgba(2,42,84,.22); overflow: hidden; }
.journey-episode-frame img { width: 100%; border-radius: 31px; }
.journey-units-frame { width: clamp(210px, 17vw, 255px); transform: translateY(-22px) rotate(-1.4deg); }
.journey-video-frame { width: clamp(220px, 18vw, 270px); transform: translateY(30px) rotate(1.4deg); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.member-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.member-card:hover { border-color: var(--line-blue); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.role-avatar { position: relative; display: flex; width: 100%; aspect-ratio: 1.55; align-items: flex-end; margin-bottom: 22px; padding: 22px; border-radius: 17px; color: #fff; background: radial-gradient(circle at 82% 18%, rgba(239, 124, 0, 0.42), transparent 28%), linear-gradient(145deg, var(--blue), var(--blue-deep)); overflow: hidden; }
.role-avatar::after { position: absolute; top: 20px; right: 20px; width: 72px; height: 72px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.035); content: ""; }
.role-avatar span { position: relative; z-index: 1; color: #ffb369; font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.member-card h3 { margin-bottom: 4px; font-size: 1.35rem; }
.member-role { display: block; margin-bottom: 10px; color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.member-card p { color: var(--ink-soft); font-size: 0.86rem; }
.institution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.institution-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.institution-card .institution-mark { display: inline-flex; min-width: 62px; height: 42px; align-items: center; justify-content: center; margin-bottom: 20px; padding-inline: 12px; border-radius: 10px; color: #fff; background: var(--blue); font-weight: 700; letter-spacing: 0.08em; }
.institution-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.institution-card p { color: var(--ink-soft); font-size: 0.9rem; }

/* Footer */
.site-footer { border-top: 0; color: rgba(255,255,255,.84); background: var(--blue-deep); }
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(54px, 7vw, 76px) 0 42px;
}
.footer-logo-link { display: inline-flex; text-decoration: none; }
.footer-logo-link img { width: 138px; height: auto; }
.footer-brand p { max-width: 430px; margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: .86rem; }
.footer-brand p a,
.footer-base a { color: #fff; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 3px; }
.footer-brand p a:hover,
.footer-base a:hover { color: #ffad55; text-decoration-color: currentColor; }
.footer-columns { display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); gap: clamp(32px, 5vw, 70px); }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; }
.footer-column h2 {
  margin: 0 0 13px;
  color: rgba(255,255,255,.68);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-column a { padding: 4px 0; color: rgba(255,255,255,.86); font-size: .84rem; text-decoration: none; }
.footer-column a:hover { color: #ffad55; }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: .75rem;
}
.footer-base p { margin: 0; }

/* Motion: content stays visible without JavaScript; the observer is an enhancement. */
.motion-ready [data-reveal] { opacity: 0; transform: translateY(42px) scale(0.985); filter: blur(2px); transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.motion-ready [data-reveal].is-visible { filter: none; }

@media (max-width: 1080px) {
  .menu-btn { display: inline-flex; }
  .nav-links {
    position: fixed;
    z-index: 110;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(252, 251, 248, 0.985);
    box-shadow: 0 22px 38px rgba(2, 42, 84, 0.1);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links .nav-contact { display: inline-flex; margin-top: 8px; padding: 13px 20px; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 36px; }
  .hero h1 { font-size: clamp(2.8rem, 5.3vw, 4rem); }
  .phone-scene { height: 530px; transform: scale(0.92); }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .hero { padding: 74px 0 70px; }
  .hero-grid, .page-hero-grid, .framework-grid, .contact-grid, .split { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .phone-scene { width: min(100%, 530px); height: 560px; margin-inline: auto; transform: none; }
  .audience-grid, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .framework-grid { gap: 48px; }
  .page-hero { padding: 66px 0; }
  .page-aside { max-width: 580px; }
  .split { gap: 44px; }
  .split.reverse .feature-copy, .split.reverse .feature-media { order: initial; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
  .product-story-grid { grid-template-columns: 1fr; }
  .video-story-grid { min-height: 0; grid-template-columns: 1fr; }
  .video-story-grid.reverse .feature-copy, .video-story-grid.reverse .feature-media { order: initial; }
  .video-story-grid .feature-copy { max-width: 660px; }
  .video-still-stage { width: min(100%, 650px); margin-inline: auto; }
  .story-phone .feature-copy { max-width: 660px; }
  .product-phone-stage { width: min(100%, 650px); margin-inline: auto; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 40px, 1160px); }
  .nav-inner { height: 70px; }
  .nav-links { top: 70px; max-height: calc(100vh - 70px); padding-inline: 20px; }
  .brand img { width: 112px; }
  .hero { padding: 54px 0 48px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.35rem, 11.2vw, 3.2rem); }
  .hero-lede, .page-hero .lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .store-badge { width: 132px; height: 44px; }
  .hero-meta { margin-top: 28px; }
  .phone-scene { height: 480px; margin-top: 10px; }
  .phone-scene::before { width: 285px; height: 285px; }
  .phone-shot { width: 205px; border-radius: 32px; }
  .phone-shot img { border-radius: 25px; }
  .phone-shot-left, .phone-shot-right { width: 172px; }
  .phone-label { right: 4px; bottom: 3px; }
  .trust-inner { align-items: flex-start; padding: 20px 0; text-align: left; }
  .section, .section-compact, .page-section { padding: 66px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2, .framework-copy h2, .contact-copy h2, .aspiration h2 { font-size: clamp(2rem, 9.5vw, 2.65rem); }
  .audience-grid, .beat-list, .gallery-grid, .gallery-grid-2, .team-grid, .institution-grid { grid-template-columns: 1fr; }
  .gallery-grid > :last-child:nth-child(odd) { grid-column: auto; }
  .audience-card { min-height: 0; }
  .contact-band { padding: 64px 0; }
  .contact-grid { gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .form-field-wide, .form-actions { grid-column: auto; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 50px 0; }
  .page-hero-grid { gap: 34px; }
  .page-aside { padding: 22px; }
  .page-aside strong { font-size: 1.3rem; }
  .split { gap: 32px; }
  .media-frame { min-height: 250px; padding: 13px; }
  .media-frame img { min-height: 230px; }
  .phone-feature { min-height: 455px; }
  .gallery-visual { height: 250px; }
  .story-section {
    min-height: calc(100svh - 70px);
    padding-block: 24px;
    scroll-margin-top: 70px;
  }
  .product-story-grid { gap: 18px; }
  .story-phone .feature-copy h2 { margin: 10px 0 10px; font-size: clamp(1.85rem, 8.8vw, 2.35rem); }
  .story-phone .feature-copy p { margin-bottom: 10px; font-size: 0.9rem; line-height: 1.5; }
  .source-chip { margin-top: 0; padding: 6px 9px; font-size: 0.57rem; }
  .product-phone-stage { min-height: min(49svh, 440px); border-radius: 22px; }
  .product-phone-stage::before { width: 235px; height: 235px; box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.4), 0 0 0 62px rgba(0, 61, 124, 0.035); }
  .product-phone { width: min(54vw, 205px); padding: 6px; border-radius: 31px; }
  .product-phone img { border-radius: 25px; }
  .app-showcase-section { padding: 76px 0; }
  .product-wrap { width: min(100% - 40px, 1320px); }
  .app-showcase-section .section-head h2 { font-size: clamp(2.25rem, 10.5vw, 3rem); }
  .product-gallery {
    gap: 16px;
    margin-left: calc(50% - 50vw);
    padding-inline: 20px;
  }
  .product-gallery-card {
    flex-basis: calc(100vw - 56px);
    grid-template-rows: minmax(510px, 63svh) auto;
    border-radius: 25px;
  }
  .product-gallery-visual { padding: 25px 20px 0; }
  .product-gallery-visual img { height: calc(100% - 16px); border-width: 6px; border-radius: 31px; }
  .product-gallery-copy { padding: 22px; }
  .product-gallery-copy h3 { font-size: 1.25rem; }
  .platform-story { padding: 76px 0; }
  .platform-story-copy { margin-bottom: 28px; }
  .platform-story-copy h2 { font-size: clamp(2.05rem, 9.8vw, 2.75rem); }
  .platform-story-copy p { font-size: 0.94rem; }
  .platform-frame {
    padding: 27px 10px 10px;
    border-radius: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: rgba(0, 61, 124, 0.32) transparent;
    scrollbar-width: thin;
  }
  .platform-frame img { width: 820px; max-width: none; border-radius: 13px; }
  .platform-frame figcaption { width: 820px; min-width: 820px; padding-inline: 4px; }
  .platform-frame figcaption strong::after { color: var(--orange); content: " · Swipe to inspect →"; font-family: var(--body); font-size: 0.66rem; font-weight: 700; }
  .pipeline-grid .gallery-visual { height: 200px; }
  .story-video-beat { padding-block: 24px; }
  .video-story-grid { min-height: calc(100svh - 118px); gap: 16px; }
  .video-story-grid .feature-copy h2 { margin: 9px 0; font-size: clamp(1.8rem, 8.5vw, 2.25rem); }
  .video-story-grid .feature-copy p { margin-bottom: 0; font-size: 0.88rem; line-height: 1.48; }
  .video-story-grid .eyebrow { font-size: 0.64rem; }
  .video-still-stage { min-height: min(51svh, 430px); padding: 12px; border-radius: 22px; }
  .video-still { width: min(57vw, 225px); padding: 6px; border-radius: 31px; }
  .video-still img,
  .video-still video { border-radius: 25px; }
  .journey-section { padding: 76px 0 0; }
  .journey-section .section-head { margin-bottom: 12px; }
  .journey-story { padding-left: 36px; }
  .journey-rail { top: calc((100svh - 70px) / 2); bottom: calc((100svh - 70px) / 2); left: 12px; width: 2px; }
  .journey-step { min-height: calc(100svh - 70px); padding: 22px 0; scroll-margin-top: 70px; }
  .journey-marker { left: -36px; width: 26px; height: 26px; border-width: 1px; font-size: 0.5rem; }
  .journey-label { position: relative; top: auto; left: auto; margin: 0 0 18px 4px; font-size: clamp(2rem, 10vw, 3rem); transform: none; }
  .journey-step { display: flex; align-items: stretch; justify-content: center; flex-direction: column; }
  .journey-step .journey-platform-stage .platform-frame,
  .journey-step .journey-episodes-pair { margin-left: 0; }
  .journey-stage { min-height: min(68svh, 570px); padding: 10px; border-radius: 24px; }
  .journey-platform-stage { min-height: min(68svh, 570px); }
  .journey-platform-stage .platform-frame { width: 94%; overflow-x: auto; }
  .journey-platform-stage .platform-frame img { width: 820px; max-width: none; }
  .journey-pages { top: 32px; right: -12px; width: 76px; height: 98px; border-radius: 10px; }
  .journey-sparks { top: 12%; left: 4%; transform: scale(0.72); }
  .journey-app-stage { min-height: min(68svh, 570px); }
  .journey-orbit { width: 230px; height: 230px; box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.42), 0 0 0 64px rgba(0, 61, 124, 0.035); }
  .journey-episodes-pair { width: 100%; gap: 9px; }
  .journey-episode-frame { padding: 4px; border-radius: 24px; }
  .journey-episode-frame img { border-radius: 20px; }
  .journey-units-frame { width: min(42vw, 168px); transform: translateY(-14px) rotate(-1deg); }
  .journey-video-frame { width: min(43vw, 172px); transform: translateY(16px) rotate(1deg); }
  .footer-main { gap: 34px; padding-top: 44px; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 34px; }
  .footer-base { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 2026 product presentation: app-aligned type, interactive hero and clean media. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero { display: grid; min-height: calc(100svh - 76px); align-items: center; padding: clamp(24px, 3vw, 36px) 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, 360px); align-items: center; gap: clamp(42px, 7vw, 104px); }
.hero-copy { z-index: 4; width: min(100%, 690px); margin: 0; text-align: left; }
.hero-copy .eyebrow { justify-content: flex-start; }
.hero-acronym { color: var(--ink-soft); font-family: var(--body); font-size: .76rem; font-synthesis: none; font-weight: 700; letter-spacing: 0; line-height: 1; text-transform: none; }
.hero-acronym::before { display: none; }
.hero-acronym b { color: var(--orange); font-weight: 700; }
.hero-acronym-terms { display: inline-flex; align-items: baseline; justify-content: flex-start; gap: .18em .5em; flex-wrap: wrap; }
.hero-acronym-terms > span { display: inline-block; color: var(--ink-soft); white-space: nowrap; }
.hero h1 { max-width: 690px; margin: 14px 0 18px; font-size: clamp(3rem, 4.4vw, 3.9rem); line-height: 1.02; letter-spacing: -.05em; }
.hero h1 em { display: block; }
.hero-lede { max-width: 60ch; margin: 0 0 22px; font-size: clamp(.98rem, 1.35vw, 1.08rem); }
.hero-actions { justify-content: flex-start; }
.hero-meta { max-width: 650px; margin: 20px 0 0; padding-top: 12px; line-height: 1.45; }
.hero-pathway-showcase { display: grid; justify-items: center; gap: 14px; margin: 0; }
.hero-pathway-showcase figcaption { color: var(--blue); font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.hero-pathway-phone { width: clamp(250px, 20vw, 285px); padding: 8px; border-radius: 42px; box-shadow: none; }
.hero-pathway-phone img { border-radius: 34px; }

/* Product screenshots sit directly on the page, matching the Apple reference. */
.app-showcase-section { background: var(--paper); }
.product-gallery-card { border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
.product-gallery-visual { padding: 0; background: transparent; overflow: visible; }
.product-gallery-visual img { height: min(68svh, 660px); box-shadow: 0 24px 55px rgba(2,42,84,.2); }
.video-still-stage { border: 0; background: transparent; box-shadow: none; }
.journey-stage,
.journey-materials-stage,
.journey-pathway-stage,
.journey-app-stage { border: 0; background: transparent; box-shadow: none; }
.journey-step.is-current .journey-stage { box-shadow: none; }
.journey-stage .journey-decoration { display: none; }
.journey-stage .platform-frame { padding: 0; border: 0; background: transparent; box-shadow: none; }
.journey-stage .platform-frame::before { display: none; }
.journey-stage .platform-frame img { border: 0; box-shadow: 0 26px 65px rgba(2,42,84,.15); }
.story-phone .product-phone-stage { border: 0; background: transparent; box-shadow: none; overflow: visible; }
.story-phone .product-phone-stage::before { display: none; }

.team-roster-section .section-head { margin-bottom: 26px; }
.team-roster-section .section-head h2 { margin: 0; }
.name-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.name-card { min-width: 0; border: 1px solid var(--line-blue); border-radius: 18px; background: #fff; overflow: hidden; }
.person-link { display: grid; height: 100%; grid-template-rows: auto 1fr; text-decoration: none; }
.person-photo { display: block; aspect-ratio: 1; background: var(--blue-pale); overflow: hidden; }
.person-photo img { width: 100%; height: 100%; filter: grayscale(1); object-fit: cover; object-position: center; transform: scale(1.002); transition: transform .45s cubic-bezier(.16,1,.3,1); }
.person-link:hover .person-photo img { transform: scale(1.035); }
.name-card h3 { align-self: center; margin: 0; padding: 20px 22px; font-size: clamp(1rem, 1.5vw, 1.22rem); }
.name-card a:hover { color: var(--orange); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(250px, 320px); gap: clamp(32px, 5vw, 64px); }
  .hero h1 { font-size: clamp(2.8rem, 5.8vw, 3.9rem); }
  .hero-pathway-phone { width: min(28vw, 280px); }
}
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-copy { width: min(100%, 720px); }
  .hero-pathway-phone { width: min(48vw, 280px); }
}
@media (max-width: 700px) {
  .hero { padding-top: 28px; }
  .hero h1 { font-size: clamp(2.12rem, 9.4vw, 2.75rem); line-height: 1.04; }
  .hero-lede { margin-bottom: 18px; font-size: .91rem; line-height: 1.5; }
  .hero-actions { align-items: center; justify-content: flex-start; flex-direction: row; flex-wrap: nowrap; }
  .hero-meta { margin-top: 14px; padding-top: 10px; font-size: .68rem; }
  .hero-pathway-showcase { justify-items: start; }
  .hero-pathway-phone { width: min(62vw, 250px); }
  .product-gallery-card { flex-basis: min(78vw, 340px); grid-template-rows: minmax(500px, 64svh); }
  .product-gallery-visual img { height: min(64svh, 570px); }
  .name-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .name-card h3 { padding: 15px 14px; font-size: .92rem; }
}

/* Notification-to-learning hero demo. The notification and device are native
   page layers; only the app viewport is recorded video. */
html { scrollbar-gutter: stable; }
html.motion-ready.intro-pending,
html.intro-running { overflow: hidden; overscroll-behavior: none; }
html.intro-running.intro-scroll-enabled {
  overflow-y: auto;
  overscroll-behavior: auto;
}

.site-demo-intro {
  position: fixed;
  z-index: 999;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  touch-action: none;
}
.site-demo-intro.is-preparing,
.site-demo-intro.is-playing {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.intro-pending .site-demo-intro {
  visibility: visible;
  opacity: 1;
}
.site-demo-intro.is-complete {
  opacity: 0;
  pointer-events: none;
  touch-action: auto;
  transition: opacity .18s ease;
}
.site-demo-intro-backdrop {
  position: absolute;
  inset: 0;
  background: #e7e8e6;
  transition: opacity .56s ease;
}
.site-demo-intro.is-phone-revealed .site-demo-intro-backdrop { opacity: 0; }

.spark-demo-device {
  position: relative;
  width: clamp(250px, 20vw, 285px);
  aspect-ratio: 1206 / 2622;
  isolation: isolate;
}
.spark-demo-shell {
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 43px;
  background: #071423;
  box-shadow: none;
}
.spark-demo-shell::before {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 3px;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .26), transparent);
  content: "";
}
.spark-demo-screen {
  position: absolute;
  z-index: 1;
  inset: 8px;
  border-radius: 35px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  overflow: hidden;
}
.spark-demo-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f6f7f9;
  object-fit: cover;
}

.hero-demo-showcase {
  position: relative;
  min-height: 660px;
  align-content: center;
  isolation: isolate;
}
.hero::before { display: none; }
.hero-demo-showcase .spark-demo-device {
  transform: var(--hero-demo-transform, none);
  transform-origin: 50% 42%;
  transition: transform .12s linear;
  will-change: transform;
}
.hero-demo-showcase figcaption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: var(--blue-mid);
  background: rgba(255, 255, 255, .86);
  box-shadow: none;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .03em;
  line-height: 1.2;
}
.hero-demo-showcase figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: none;
}

.spark-demo-device-intro {
  position: fixed;
  z-index: 2;
  top: var(--intro-target-top, 30vh);
  left: var(--intro-target-left, 40vw);
  width: var(--intro-target-width, 285px);
  opacity: 0;
  transform: translate3d(0, var(--intro-entry-y, -120vh), 0) scale(var(--intro-nudge-scale, 2.1));
  transform-origin: 50% 90px;
  transition: none;
  will-change: transform, opacity;
}
.site-demo-intro.is-playing .spark-demo-device-intro {
  transition:
    transform var(--intro-transform-duration, .55s) cubic-bezier(.22, 1, .36, 1),
    opacity .32s ease-out;
}
.spark-demo-device-intro .spark-demo-shell {
  opacity: 0;
  background: #050607;
  transition: opacity .48s ease .08s;
}
.spark-demo-device-intro .spark-demo-screen {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.spark-demo-device-intro .spark-demo-screen::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: #050607;
  content: "";
  opacity: 0;
  transition: opacity .48s ease .08s;
}
.spark-demo-panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: inset(45px 10px calc(100% - 119px) 10px round 18px);
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: clip-path 1.4s cubic-bezier(.16, 1, .3, 1);
  will-change: clip-path;
}
.spark-demo-nudge {
  position: absolute;
  z-index: 3;
  top: 45px;
  right: 10px;
  left: 10px;
  display: grid;
  height: 74px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(244, 244, 246, .96);
  transition:
    opacity .32s ease 1s,
    transform .5s cubic-bezier(.16, 1, .3, 1) .95s;
}
.spark-demo-nudge img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: none;
}
.spark-demo-nudge-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 1.18;
}
.spark-demo-nudge-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 1px;
  color: #6e6e73;
  font-size: 7px;
  letter-spacing: .01em;
}
.spark-demo-nudge-meta b {
  color: #55565a;
  font-weight: 650;
  letter-spacing: .06em;
}
.spark-demo-nudge-meta time {
  font-weight: 450;
  white-space: nowrap;
}
.spark-demo-nudge-copy strong {
  color: #161617;
  font-size: 10.8px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.spark-demo-nudge-copy small {
  display: -webkit-box;
  margin-top: 2px;
  color: #3a3a3c;
  font-size: 8px;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.spark-demo-device-intro .spark-demo-video {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0;
  transform: scale(.96);
  transform-origin: 50% 8%;
  transition:
    opacity .34s ease 1.02s,
    transform 1.35s cubic-bezier(.16, 1, .3, 1);
}
.site-demo-intro.is-nudge-visible .spark-demo-device-intro {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(var(--intro-nudge-scale, 2.1));
}
.site-demo-intro.is-phone-revealed .spark-demo-device-intro {
  --intro-transform-duration: 1.45s;
  transform: translate3d(0, 0, 0) scale(1);
}
html.intro-scroll-enabled .site-demo-intro {
  pointer-events: none;
  touch-action: auto;
}
.site-demo-intro.is-phone-revealed .spark-demo-shell {
  opacity: 1;
}
.site-demo-intro.is-phone-revealed .spark-demo-screen::before { opacity: 1; }
.site-demo-intro.is-phone-revealed .spark-demo-screen { overflow: hidden; }
.site-demo-intro.is-phone-revealed .spark-demo-panel {
  clip-path: inset(0 round 35px);
}
.site-demo-intro.is-phone-revealed .spark-demo-video {
  opacity: 1;
  transform: scale(1);
}
.site-demo-intro.is-phone-revealed .spark-demo-nudge {
  opacity: 0;
  transform: scale(.96);
}
.site-demo-intro.is-releasing .spark-demo-device-intro {
  opacity: 0;
  transition: opacity .78s ease;
}
.site-demo-intro-skip {
  position: fixed;
  z-index: 4;
  right: 22px;
  bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 42, 84, .52);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 750;
  opacity: 0;
  transition: opacity .3s ease;
}
.site-demo-intro.is-nudge-visible .site-demo-intro-skip { opacity: .82; }
html.intro-scroll-enabled .site-demo-intro-skip,
.site-demo-intro.is-releasing .site-demo-intro-skip { opacity: 0; pointer-events: none; }
.site-demo-intro-skip:hover { opacity: 1; }

html.intro-running:not(.intro-revealing) .site-nav,
html.intro-running:not(.intro-revealing) .hero-copy {
  opacity: 0;
}
html.intro-running:not(.intro-revealing) .hero-demo-showcase { opacity: 0; }
.intro-pending .site-nav,
.intro-pending .hero-copy { opacity: 0; }
.intro-pending .hero-demo-showcase { opacity: 0; }
.site-nav,
.hero-copy,
.hero-demo-showcase {
  transition: opacity .56s ease;
}

@media (max-width: 1080px) {
  .hero-demo-showcase { min-height: 620px; }
  .hero-demo-showcase .spark-demo-device { width: min(28vw, 276px); }
}
@media (max-width: 900px) {
  .hero-demo-showcase { min-height: 620px; justify-items: center; }
  .hero-demo-showcase .spark-demo-device { width: min(48vw, 270px); }
}
@media (max-width: 700px) {
  .hero-demo-showcase { min-height: 550px; justify-items: center; }
  .hero-demo-showcase .spark-demo-device { width: min(62vw, 238px); }
  .hero-demo-showcase figcaption { font-size: .66rem; }
  .site-demo-intro-skip { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-demo-intro { display: none !important; }
  .hero-demo-showcase .spark-demo-device { transform: none !important; }
  .hero-demo-showcase figcaption span { box-shadow: none; }
}

/* Centered hero composition: SPARK styling in the same top-copy / bottom-phone
   structure as the motion reference. */
.hero {
  display: block;
  min-height: 0;
  padding: clamp(42px, 6vw, 78px) 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(28px, 4vw, 42px);
}
.hero-copy {
  width: min(100%, 1160px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}
.hero-copy .eyebrow { justify-content: center; }
.hero-acronym-terms { justify-content: center; }
.hero h1 {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
}
.hero h1 .hero-tagline {
  white-space: nowrap;
  font-size: clamp(1.22rem, 6.15vw, 4.15rem);
  line-height: 1.05;
}
.hero-lede {
  max-width: 760px;
  margin-inline: auto;
}
.hero-actions { justify-content: center; }
.hero-meta {
  max-width: 760px;
  margin-inline: auto;
}
.hero-demo-showcase {
  width: 100%;
  min-height: 620px;
  align-content: start;
  justify-items: center;
}
.hero-demo-showcase .spark-demo-device { width: clamp(270px, 21vw, 305px); }
.hero-demo-footer {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 760px);
  justify-items: center;
  gap: 18px;
  margin-top: clamp(92px, 8vw, 120px);
  text-align: center;
}
.hero-demo-footer .hero-meta {
  width: 100%;
  margin: 0;
  padding-top: 18px;
}

@media (max-width: 900px) {
  .hero { padding-top: 38px; }
  .hero-grid { gap: 34px; }
  .hero-copy { width: min(100%, 880px); }
  .hero h1 { font-size: clamp(2.7rem, 7vw, 4rem); }
  .hero-demo-showcase { min-height: 590px; }
  .hero-demo-showcase .spark-demo-device { width: min(48vw, 270px); }
}

@media (max-width: 700px) {
  .hero { padding-top: 30px; }
  .hero-grid { gap: 30px; }
  .hero-copy,
  .hero-copy .eyebrow { text-align: center; }
  .hero-copy .eyebrow,
  .hero-acronym-terms,
  .hero-actions { justify-content: center; }
  .hero h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.35rem, 11.4vw, 3rem);
  }
  .hero-lede,
  .hero-meta { margin-inline: auto; }
  .hero-demo-showcase { min-height: 520px; }
  .hero-demo-showcase .spark-demo-device { width: min(62vw, 238px); }
  .hero-demo-footer { margin-top: 72px; }
  .hero-demo-footer .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

/* Scroll-led How It Works stories. The media stays pinned while scroll position
   controls the current beat, video frame, and supporting copy. */
.scroll-story-section {
  position: relative;
  height: var(--scroll-story-height, 500svh);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.journey-scroll-story { height: var(--scroll-story-height, 400svh); }
.learner-scroll-story { height: var(--scroll-story-height, 300svh); }
.instructor-scroll-story { height: var(--scroll-story-height, 400svh); }
.scroll-story-anchor {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  scroll-margin-top: 0;
}
.scroll-story-sticky {
  position: sticky;
  z-index: 1;
  top: var(--scroll-story-nav, 76px);
  display: grid;
  height: var(--scroll-story-viewport, calc(100svh - 76px));
  grid-template-columns: minmax(290px, .82fr) minmax(390px, 1.18fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 86px);
  padding-block: clamp(20px, 3svh, 34px);
}
.scroll-story-copy-stack {
  position: relative;
  min-width: 0;
  min-height: 0;
}
.scroll-story-copy {
  position: absolute;
  inset: 0;
  display: flex;
  max-width: 510px;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0);
  will-change: opacity, transform;
}
.scroll-story-copy.is-active { opacity: 1; pointer-events: auto; transform: none; }
.scroll-story-copy h2 {
  margin: 14px 0 15px;
  font-size: clamp(2.35rem, 4.25vw, 3.65rem);
}
.scroll-story-copy h3 {
  margin: 13px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.scroll-story-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}
.learner-scroll-story .scroll-story-copy p + p { margin-top: 12px; }
.scroll-story-number {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.scroll-story-media-column,
.scroll-story-media {
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.scroll-story-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.scroll-story-phone {
  position: relative;
  width: min(39svh, 330px, 100%);
  aspect-ratio: 9 / 16;
  flex: none;
  margin: 0 0 24px;
  padding: 8px;
  border-radius: 40px;
  background: #0d1520;
  contain: layout paint;
  overflow: hidden;
}
.scroll-story-video {
  position: absolute;
  z-index: 1;
  inset: 8px;
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 32px;
  background: #0d1520;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
}
.scroll-story-video.is-active { opacity: 1; }
.scroll-story-progress {
  position: absolute;
  z-index: 8;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}
.scroll-story-progress span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #d8e2ee;
  transition: background-color .18s ease;
}
.scroll-story-progress span.is-complete { background: var(--blue-mid); }
.scroll-story-progress span.is-active { background: var(--orange); }
.scroll-story-hint {
  position: absolute;
  z-index: 8;
  bottom: 0;
  left: 50%;
  margin: 0;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .035em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.scroll-journey-section {
  padding-bottom: 0;
  overflow: visible;
}
.scroll-journey-section .section-head { margin-bottom: 12px; }
.journey-scroll-story { border-top: 1px solid var(--line); }
.journey-scroll-sticky {
  grid-template-columns: minmax(270px, .64fr) minmax(500px, 1.36fr);
  gap: clamp(34px, 4vw, 64px);
}
.journey-scroll-media { padding-bottom: 55px; }
.scroll-story-panel {
  position: absolute;
  z-index: 1;
  inset: clamp(18px, 3svh, 34px) 0 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
}
.scroll-story-panel.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.journey-scroll-media .platform-frame {
  width: min(100%, 900px);
  margin: 0;
  overflow: hidden;
}
.journey-scroll-media .platform-frame img {
  width: 100%;
  max-width: 100%;
}
.journey-scroll-media .journey-episodes-pair {
  width: min(94%, 650px);
  margin: 0;
}
.learner-scroll-phone {
  width: auto;
  height: min(68svh, 560px);
  flex: none;
}
.learner-scroll-phone img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .scroll-story-sticky,
  .journey-scroll-sticky {
    top: var(--scroll-story-nav, 70px);
    height: var(--scroll-story-viewport, calc(100svh - 70px));
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, .38fr) minmax(0, .62fr);
    gap: 0;
    padding-block: 12px 14px;
  }
  .scroll-story-copy { max-width: 620px; justify-content: center; }
  .scroll-story-copy h2,
  .scroll-story-copy h3 {
    margin: 7px 0 8px;
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  }
  .scroll-story-copy p {
    max-width: 620px;
    font-size: clamp(.79rem, 2.5vw, .92rem);
    line-height: 1.46;
  }
  .scroll-story-copy .eyebrow { font-size: .61rem; }
  .scroll-story-number { font-size: .65rem; }
  .scroll-story-phone {
    width: min(26svh, 210px, 58vw);
    margin-bottom: 22px;
    padding: 6px;
    border-radius: 31px;
  }
  .scroll-story-video {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 25px;
  }
  .scroll-story-progress { bottom: 22px; }
  .scroll-story-progress span { width: 20px; }
  .scroll-story-hint { font-size: .62rem; }
  .journey-scroll-media { padding-bottom: 44px; }
  .scroll-story-panel { inset: 4px 0 58px; }
  .journey-scroll-media .platform-frame {
    width: min(100%, 620px);
    padding: 24px 8px 8px;
    border-radius: 18px;
  }
  .journey-scroll-media .platform-frame img { border-radius: 11px; }
  .journey-scroll-media .journey-episodes-pair { width: min(100%, 520px); }
  .learner-scroll-phone { width: auto; height: min(43svh, 390px); }
}

@media (max-width: 440px) {
  .scroll-story-sticky,
  .journey-scroll-sticky { grid-template-rows: minmax(0, .4fr) minmax(0, .6fr); }
  .scroll-story-copy h2,
  .scroll-story-copy h3 { font-size: clamp(1.58rem, 7.2vw, 2rem); }
  .scroll-story-copy p { font-size: .78rem; }
  .scroll-story-phone { width: min(25svh, 188px, 56vw); }
  .journey-scroll-media .journey-episodes-pair { gap: 7px; }
  .journey-scroll-media .journey-units-frame { width: min(38vw, 150px); }
  .journey-scroll-media .journey-video-frame { width: min(39vw, 154px); }
}

@media (max-width: 440px) and (max-height: 620px) {
  .scroll-story-sticky,
  .journey-scroll-sticky { grid-template-rows: minmax(0, .43fr) minmax(0, .57fr); }
  .scroll-story-copy h2,
  .scroll-story-copy h3 { font-size: clamp(1.38rem, 6.6vw, 1.72rem); }
  .scroll-story-copy p { font-size: .72rem; line-height: 1.38; }
  .scroll-story-phone { width: min(23svh, 164px, 52vw); }
  .learner-scroll-phone { width: auto; height: min(35svh, 220px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story-copy,
  .scroll-story-video,
  .scroll-story-panel { will-change: auto; }
}

/* Legible normal-flow fallback for reduced motion and for browsers where
   JavaScript is unavailable. */
html:not(.motion-ready) .scroll-story-section,
.scroll-story-section.is-static-scroll-story {
  height: auto;
  min-height: 0;
}
html:not(.motion-ready) .scroll-story-sticky,
.is-static-scroll-story .scroll-story-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  padding-block: clamp(64px, 8vw, 100px);
}
html:not(.motion-ready) .scroll-story-copy-stack,
.is-static-scroll-story .scroll-story-copy-stack {
  display: grid;
  align-content: center;
  gap: 34px;
}
html:not(.motion-ready) .scroll-story-copy,
.is-static-scroll-story .scroll-story-copy {
  position: relative;
  inset: auto;
  opacity: 1 !important;
  pointer-events: auto;
  transform: none !important;
}
html:not(.motion-ready) .scroll-story-copy + .scroll-story-copy,
.is-static-scroll-story .scroll-story-copy + .scroll-story-copy {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
html:not(.motion-ready) .scroll-story-video:not(:first-child),
.is-static-scroll-story .scroll-story-video:not(:first-child),
html:not(.motion-ready) .scroll-story-panel:not(:first-child),
.is-static-scroll-story .scroll-story-panel:not(:first-child),
html:not(.motion-ready) .scroll-story-progress,
.is-static-scroll-story .scroll-story-progress,
html:not(.motion-ready) .scroll-story-hint,
.is-static-scroll-story .scroll-story-hint { display: none; }
html:not(.motion-ready) .journey-scroll-media,
.is-static-scroll-story .journey-scroll-media { height: min(70svh, 620px); padding-bottom: 0; }
html:not(.motion-ready) .scroll-story-panel:first-child,
.is-static-scroll-story .scroll-story-panel:first-child { inset: 0; }

@media (max-width: 900px) {
  html:not(.motion-ready) .scroll-story-sticky,
  .is-static-scroll-story .scroll-story-sticky {
    display: grid;
    grid-template-rows: auto minmax(360px, 58svh);
    gap: 34px;
  }
  html:not(.motion-ready) .scroll-story-phone,
  .is-static-scroll-story .scroll-story-phone { width: min(25svh, 190px, 54vw); }
  html:not(.motion-ready) .journey-scroll-media,
  .is-static-scroll-story .journey-scroll-media { height: min(58svh, 520px); }
}

/* Panel stories retain every screenshot when motion is reduced or JavaScript
   is unavailable. Copy and media share rows on wide screens and interleave on
   small screens, so each static visual stays with the text it illustrates. */
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) .scroll-story-sticky,
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story .scroll-story-sticky {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  grid-template-rows: none;
  grid-auto-rows: auto;
  align-items: center;
  column-gap: clamp(38px, 5vw, 72px);
  row-gap: clamp(54px, 7vw, 88px);
}
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is(.scroll-story-copy-stack, .scroll-story-media-column, .scroll-story-media),
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is(.scroll-story-copy-stack, .scroll-story-media-column, .scroll-story-media) {
  display: contents;
}
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) .scroll-story-copy,
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story .scroll-story-copy {
  grid-column: 1;
  align-self: center;
}
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) .scroll-story-panel,
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story .scroll-story-panel {
  position: relative;
  inset: auto;
  display: flex !important;
  min-height: min(68svh, 620px);
  grid-column: 2;
  padding-block: 18px;
  opacity: 1 !important;
  pointer-events: auto;
  transform: none !important;
}
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is([data-scroll-copy="0"], [data-scroll-panel="0"]),
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is([data-scroll-copy="0"], [data-scroll-panel="0"]) { grid-row: 1; }
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is([data-scroll-copy="1"], [data-scroll-panel="1"]),
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is([data-scroll-copy="1"], [data-scroll-panel="1"]) { grid-row: 2; }
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is([data-scroll-copy="2"], [data-scroll-panel="2"]),
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is([data-scroll-copy="2"], [data-scroll-panel="2"]) { grid-row: 3; }
html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is([data-scroll-copy="3"], [data-scroll-panel="3"]),
:is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is([data-scroll-copy="3"], [data-scroll-panel="3"]) { grid-row: 4; }

@media (max-width: 900px) {
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) .scroll-story-sticky,
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story .scroll-story-sticky {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-rows: auto;
    row-gap: 24px;
  }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) :is(.scroll-story-copy, .scroll-story-panel),
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story :is(.scroll-story-copy, .scroll-story-panel) {
    grid-column: 1;
  }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) .scroll-story-panel,
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story .scroll-story-panel {
    min-height: 0;
    padding: 8px 0 42px;
  }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-copy="0"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-copy="0"] { grid-row: 1; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-panel="0"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-panel="0"] { grid-row: 2; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-copy="1"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-copy="1"] { grid-row: 3; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-panel="1"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-panel="1"] { grid-row: 4; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-copy="2"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-copy="2"] { grid-row: 5; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-panel="2"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-panel="2"] { grid-row: 6; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-copy="3"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-copy="3"] { grid-row: 7; }
  html:not(.motion-ready) :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story) [data-scroll-panel="3"],
  :is(.journey-scroll-story, .learner-scroll-story, .instructor-scroll-story).is-static-scroll-story [data-scroll-panel="3"] { grid-row: 8; }
}
