:root {
  color-scheme: light;
  --ink: #173449;
  --navy: #123d49;
  --teal: #0d6873;
  --teal-dark: #084f59;
  --aqua: #31ae9b;
  --mint: #e0f4ed;
  --yellow: #f4bf36;
  --yellow-soft: #fff4c7;
  --coral: #eb735f;
  --coral-soft: #fff0ed;
  --sky: #e8f5f9;
  --paper: #f7fbfc;
  --white: #ffffff;
  --line: #d5e4e9;
  --muted: #5f7889;
  --success: #1f8064;
  --danger: #a83d35;
  --shadow: 0 18px 50px rgba(23, 52, 73, .15);
  --soft-shadow: 0 8px 26px rgba(23, 52, 73, .09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open { overflow: hidden; }

button,
input,
select,
textarea { font: inherit; letter-spacing: 0; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

img { display: block; max-width: 100%; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(13, 104, 115, .3);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 76px;
  padding: 8px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(213, 228, 233, .92);
  box-shadow: 0 5px 18px rgba(23, 52, 73, .06);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 26px;
  font-weight: 920;
  line-height: 1;
}

.wordmark img {
  width: 54px;
  height: 58px;
  object-fit: contain;
  object-position: center bottom;
}

.wordmark > span { position: relative; padding-bottom: 6px; color: #d99c00; }
.wordmark strong { color: var(--teal); }

.wordmark > span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 2px;
  width: 7px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  box-shadow: 11px 0 var(--aqua), 22px 0 var(--coral);
  transition: transform .2s ease;
}

.wordmark img { transition: transform .2s ease; }
.wordmark:hover img { transform: translateY(-2px) rotate(-2deg); }
.wordmark:hover > span::after { transform: translateX(5px); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 12px;
  color: var(--muted);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.site-nav a:hover { color: var(--ink); background: var(--sky); }

.site-nav .nav-signin {
  margin-left: 4px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--teal);
}

.site-nav .nav-signin:hover { color: var(--white); background: var(--teal-dark); }

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  align-content: center;
  gap: 5px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--navy);
}

.hero {
  min-height: min(720px, calc(100svh - 150px));
  padding: clamp(70px, 10vh, 112px) clamp(20px, 7vw, 104px);
  display: flex;
  align-items: center;
  background-color: #f7e9d4;
  background-image: url("/assets/narha-screen-hero-611.jpg");
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid #e9d8bf;
}

.hero-inner {
  width: min(520px, 33vw);
  padding: 6px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(58px, 6.2vw, 90px);
  line-height: .94;
  text-shadow: 0 2px 18px rgba(255, 250, 240, .62);
}

.hero-lead {
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 820;
  line-height: 1.14;
}

.hero-body {
  max-width: 100%;
  margin: 20px 0 0;
  color: #385467;
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 820;
}

.button.primary { color: var(--white); background: var(--teal); box-shadow: var(--soft-shadow); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { color: var(--navy); background: rgba(255, 255, 255, .84); border: 1px solid rgba(18, 61, 73, .2); }
.button.secondary:hover { background: var(--white); }
.button.dark { color: var(--white); background: var(--navy); }
.button.dark:hover { background: #0b303a; }
.button:disabled { cursor: wait; opacity: .62; }

.hero-proof {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 830;
}

.hero-proof span::before { content: ""; width: 8px; height: 8px; margin-right: 8px; display: inline-block; background: var(--yellow); border-radius: 50%; }
.hero-proof span:nth-child(2)::before { background: var(--aqua); }
.hero-proof span:nth-child(3)::before { background: var(--coral); }

.section {
  padding: clamp(76px, 9vw, 126px) clamp(20px, 7vw, 104px);
}

.section-heading { max-width: 740px; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.section-heading h2,
.family-copy h2,
.professional-inner h2,
.screen-band-copy h2,
.contact-intro h2,
.pqr-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
}

.section-heading > p:last-child,
.family-copy > p,
.professional-inner .section-heading > p:last-child,
.screen-band-copy > p,
.contact-intro > p,
.pqr-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.purpose-section { background: var(--white); }

.role-grid {
  max-width: 1220px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-item {
  min-width: 0;
  padding: 34px clamp(22px, 3vw, 42px) 38px;
  border-right: 1px solid var(--line);
}

.role-item:last-child { border-right: 0; }

.role-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow-soft);
  border-radius: 50%;
  font-weight: 900;
}

.family-role .role-number { background: var(--mint); }
.professional-role .role-number { background: var(--coral-soft); }

.role-item h3 { margin: 26px 0 12px; color: var(--navy); font-size: 24px; }
.role-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.support-search-section {
  padding: clamp(76px, 9vw, 118px) clamp(20px, 7vw, 104px);
  color: var(--ink);
  background: #f1f8f6;
  border-top: 1px solid #d6e8e3;
  border-bottom: 1px solid #d6e8e3;
}

.support-search-intro { max-width: 980px; }
.support-search-intro h2 { max-width: 920px; margin: 0; color: var(--navy); font-size: clamp(34px, 4.4vw, 60px); line-height: 1.08; }
.support-search-intro > p:last-child { max-width: 900px; margin: 24px 0 0; color: #4e6878; font-size: 19px; line-height: 1.68; }

.support-scenarios {
  max-width: 1240px;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bcd8d1;
  border-bottom: 1px solid #bcd8d1;
}

.support-scenarios article { min-width: 0; padding: 30px clamp(20px, 3vw, 38px) 34px; border-right: 1px solid #bcd8d1; }
.support-scenarios article:first-child { padding-left: 0; }
.support-scenarios article:last-child { padding-right: 0; border-right: 0; }
.support-scenarios article > span { color: var(--coral); font-size: 13px; font-weight: 900; }
.support-scenarios h3 { margin: 18px 0 10px; color: var(--navy); font-size: 23px; }
.support-scenarios p { margin: 0; color: var(--muted); line-height: 1.62; }

.neuro-note { max-width: 920px; margin: 42px 0 0; padding: 22px 0 0 28px; border-left: 4px solid var(--yellow); }
.neuro-note strong { color: var(--navy); font-size: 18px; }
.neuro-note p { margin: 8px 0 0; color: var(--muted); line-height: 1.62; }

.screen-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: stretch;
  background: #e8f4f1;
}

.screen-band-media { min-height: 640px; padding: clamp(26px, 4vw, 62px); display: grid; place-items: center; overflow: hidden; background: #0a3039; }

.narha-device {
  width: min(100%, 920px);
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: clamp(14px, 2vw, 24px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.5vw, 18px);
  color: var(--white);
  background: #0d6873;
  border: clamp(7px, 1vw, 12px) solid #172a35;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(1, 22, 29, .34);
}

.device-topbar { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; }
.device-topbar > img { width: clamp(42px, 5vw, 66px); height: clamp(48px, 6vw, 76px); object-fit: contain; object-position: center bottom; }
.device-speech { position: relative; min-width: 0; padding: 10px 14px; display: grid; gap: 2px; color: var(--navy); background: #fff4bf; border-radius: 7px; }
.device-speech::before { content: ""; position: absolute; left: -8px; top: 20px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-right: 9px solid #fff4bf; }
.device-speech strong { font-size: clamp(11px, 1.25vw, 17px); }
.device-speech span { color: #46636f; font-size: clamp(9px, 1vw, 13px); }
.device-avatar { width: clamp(36px, 4.5vw, 54px); aspect-ratio: 1; display: grid; place-items: center; color: var(--navy); background: var(--yellow); border: 2px solid rgba(255, 255, 255, .72); border-radius: 50%; font-size: clamp(11px, 1.2vw, 16px); font-weight: 900; }

.device-main { min-height: 0; display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.48fr); gap: clamp(12px, 2vw, 26px); }
.device-photo { position: relative; min-height: 0; overflow: hidden; background: #154f58; border: 2px solid rgba(255, 255, 255, .35); border-radius: 7px; }
.device-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: 91% center; }
.device-photo-dots { position: absolute; bottom: 10px; left: 50%; display: flex; gap: 5px; transform: translateX(-50%); }
.device-photo-dots i { width: 6px; height: 6px; background: rgba(255, 255, 255, .6); border-radius: 50%; }
.device-photo-dots i:first-child { width: 8px; height: 8px; background: var(--white); }

.device-clock { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.device-clock time { color: var(--white); font-size: clamp(58px, 9vw, 136px); font-weight: 850; line-height: .9; }
.device-clock > span { margin-top: 12px; color: var(--white); font-size: clamp(12px, 1.5vw, 22px); font-weight: 760; }
.device-clock > strong { max-width: 580px; margin-top: clamp(10px, 1.5vw, 20px); color: #ffeb3b; font-size: clamp(14px, 2vw, 29px); line-height: 1.18; }

.device-widgets { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(7px, 1.4vw, 16px); }
.device-widgets > div { min-width: 0; min-height: clamp(58px, 8vw, 94px); padding: clamp(8px, 1.2vw, 15px); display: flex; align-items: center; gap: clamp(7px, 1vw, 12px); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .27); border-radius: 7px; }
.widget-symbol { flex: 0 0 auto; width: clamp(28px, 3.5vw, 44px); aspect-ratio: 1; display: grid; place-items: center; color: #073b30; background: #63d8a1; border-radius: 50%; font-weight: 950; }
.chat-symbol { color: #123d49; background: #64d8ff; }
.challenge-symbol { color: #6c3a26; background: #ffa98f; }
.device-widgets p { min-width: 0; margin: 0; display: grid; gap: 4px; }
.device-widgets strong { overflow: hidden; font-size: clamp(10px, 1.15vw, 16px); text-overflow: ellipsis; white-space: nowrap; }
.device-widgets p span { overflow: hidden; color: #d8e6e9; font-size: clamp(8px, .95vw, 13px); text-overflow: ellipsis; white-space: nowrap; }

.screen-band-copy {
  padding: clamp(62px, 7vw, 104px) clamp(28px, 5vw, 76px);
  align-self: center;
}

.feature-list { margin: 36px 0 0; }
.feature-list div { padding: 18px 0; display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 20px; border-top: 1px solid #bedbd4; }
.feature-list div:last-child { border-bottom: 1px solid #bedbd4; }
.feature-list dt { color: var(--navy); font-weight: 860; }
.feature-list dd { margin: 0; color: var(--muted); line-height: 1.55; }

.family-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(50px, 8vw, 124px);
  align-items: center;
  background: var(--white);
}

.family-copy { max-width: 690px; }

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

.check-list li { position: relative; padding-left: 34px; color: #405d6e; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; display: grid; place-items: center; color: var(--white); background: var(--aqua); border-radius: 50%; font-size: 14px; font-weight: 900; }

.family-visual,
.professional-visual { margin: 0; }
.family-visual img,
.professional-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 8px; }
.family-visual figcaption,
.professional-visual figcaption { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.family-visual figcaption strong { color: var(--navy); }

.story-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; color: var(--muted); }
.story-header strong { color: var(--navy); font-size: 24px; }

.week-row { margin-top: 26px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.week-row span { aspect-ratio: 1; display: grid; place-items: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 7px; font-weight: 850; }
.week-row .done { color: var(--white); background: var(--teal); border-color: var(--teal); }

.progress-story blockquote { margin: 34px 0 0; color: var(--navy); font-size: 22px; font-weight: 760; line-height: 1.42; }
.story-note { margin-top: 28px; padding-top: 20px; display: flex; align-items: center; gap: 14px; color: var(--muted); border-top: 1px solid #c8e3ea; font-size: 14px; line-height: 1.45; }
.story-note img { width: 50px; height: 54px; object-fit: contain; object-position: center bottom; }

.professional-section {
  padding: clamp(76px, 9vw, 126px) clamp(20px, 7vw, 104px);
  color: var(--white);
  background: var(--navy);
}

.professional-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); gap: clamp(50px, 7vw, 104px); align-items: center; }
.professional-inner h2 { color: var(--white); }
.professional-inner .eyebrow { color: #82ddcf; }
.professional-inner .section-heading > p:last-child { color: #c5d9df; }

.professional-capabilities { margin-top: 38px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .2); }
.professional-capabilities article { min-height: 154px; padding: 24px 20px 24px 0; border-right: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.professional-capabilities article:nth-child(even) { padding-left: 28px; border-right: 0; }
.professional-capabilities strong { display: block; color: var(--yellow); font-size: 23px; }
.professional-capabilities span { margin-top: 12px; display: block; color: #c5d9df; line-height: 1.58; }
.professional-visual img { border: 1px solid rgba(255, 255, 255, .18); }
.professional-visual figcaption { color: #b7cdd4; }

.communication-section { padding: clamp(76px, 9vw, 126px) clamp(20px, 7vw, 104px); background: #fffaf0; }

.message-flow {
  max-width: 1240px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
}

.flow-step { min-width: 0; }
.flow-label { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.flow-step p { margin: 16px 0 0; color: var(--muted); line-height: 1.5; }

.kid-message,
.adult-message,
.signal-summary { min-height: 108px; margin-top: 12px; padding: 23px; display: flex; align-items: center; border-radius: 8px; box-shadow: var(--soft-shadow); }
.kid-message { color: #5f4a00; background: var(--yellow-soft); border: 1px solid #efd67c; font-size: 20px; font-weight: 820; }
.adult-message { color: var(--white); background: var(--teal); border: 1px solid var(--teal-dark); font-size: 20px; font-weight: 820; }
.signal-summary { gap: 16px; color: var(--navy); background: var(--white); border: 1px solid var(--line); }
.signal-summary strong { color: var(--coral); font-size: 44px; }
.signal-summary span { line-height: 1.35; }
.flow-line { height: 2px; margin: 0 14px; background: #c9d9dc; }

.faq-section {
  padding: clamp(76px, 9vw, 118px) clamp(20px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(270px, .58fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  background: var(--white);
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 48px 22px 0; color: var(--navy); cursor: pointer; list-style: none; font-size: 19px; font-weight: 820; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 18px; right: 4px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--teal); background: var(--sky); border-radius: 50%; font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; color: var(--white); background: var(--teal); }
.faq-list details p { max-width: 780px; margin: -4px 48px 24px 0; color: var(--muted); line-height: 1.65; }

.contact-section {
  padding: clamp(76px, 9vw, 126px) clamp(20px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 112px);
  background: var(--mint);
  overflow: hidden;
}

.contact-intro { position: relative; max-width: 560px; padding-bottom: 210px; }
.contact-direct { margin-top: 30px; display: grid; gap: 4px; }
.contact-direct span { color: var(--muted); font-size: 13px; font-weight: 760; }
.contact-direct a { color: var(--teal-dark); font-size: clamp(18px, 2vw, 24px); font-weight: 850; overflow-wrap: anywhere; }
.contact-intro img { position: absolute; bottom: -132px; left: 0; width: min(370px, 80%); max-height: 390px; object-fit: contain; object-position: left bottom; }

.public-form {
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-heading span { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 0; color: var(--navy); font-size: clamp(26px, 3vw, 38px); }

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

.public-form label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 760; }
.public-form label > span { color: var(--muted); font-size: 12px; font-weight: 500; }
.public-form input,
.public-form select,
.public-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #aec4cd;
  border-radius: 6px;
}

.public-form textarea { min-height: 132px; resize: vertical; line-height: 1.5; }
.public-form input:hover,
.public-form select:hover,
.public-form textarea:hover { border-color: var(--teal); }
.public-form .invalid { border-color: var(--danger); background: #fff8f7; }

.consent-field { grid-template-columns: 22px minmax(0, 1fr); align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.45; }
.consent-field input { width: 20px; height: 20px; min-height: 0; margin: 1px 0 0; accent-color: var(--teal); }
.consent-field span { color: var(--muted) !important; font-size: 13px !important; }
.consent-field a { color: var(--teal-dark); font-weight: 760; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.submit-button { justify-self: start; }
.form-status { min-height: 22px; margin: 0; color: var(--muted); font-size: 14px; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }

.pqr-section {
  padding: clamp(76px, 9vw, 116px) clamp(20px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 112px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.pqr-copy { max-width: 570px; }
.privacy-warning { padding: 18px; color: #65463e !important; background: var(--coral-soft); border-left: 4px solid var(--coral); border-radius: 0 6px 6px 0; font-size: 14px !important; }
.text-link { margin-top: 24px; display: inline-block; color: var(--teal-dark); font-weight: 800; }
.pqr-form { box-shadow: var(--soft-shadow); }
.lookup-form { margin-top: 28px; padding: 20px; display: grid; gap: 13px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.lookup-form strong { color: var(--navy); }
.lookup-form label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 740; }
.lookup-form input { width: 100%; min-height: 44px; padding: 10px 12px; color: var(--ink); background: #fbfdfe; border: 1px solid #aec4cd; border-radius: 6px; }
.lookup-form .button { justify-self: start; }
.lookup-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.lookup-status.error { color: var(--danger); }
.lookup-status.success { color: var(--success); }

.site-footer {
  padding: 54px clamp(20px, 7vw, 104px) 28px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(170px, .5fr) minmax(240px, .8fr);
  gap: 38px 70px;
  color: #c6d9df;
  background: #0a3039;
}

.footer-wordmark { color: var(--white); }
.footer-brand p { max-width: 340px; margin: 14px 0 0; line-height: 1.55; }
.footer-links,
.footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-links strong,
.footer-contact strong { margin-bottom: 6px; color: var(--white); }
.footer-links a,
.footer-contact a { color: #c6d9df; text-decoration: none; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-contact span { font-size: 13px; line-height: 1.45; }
.footer-note { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 24px; color: #93afb8; border-top: 1px solid rgba(255, 255, 255, .16); font-size: 12px; line-height: 1.55; }

.submission-dialog {
  width: min(520px, calc(100vw - 28px));
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.submission-dialog::backdrop { background: rgba(10, 48, 57, .66); backdrop-filter: blur(4px); }
.dialog-mascot { height: 110px; margin-top: -18px; overflow: hidden; }
.dialog-mascot img { width: 130px; margin: 0 auto; }
.submission-dialog h2 { margin: 0; color: var(--navy); font-size: 30px; }
.submission-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.case-number-wrap { margin: 22px 0; padding: 16px; display: grid; gap: 6px; background: var(--yellow-soft); border: 1px solid #ecd677; border-radius: 7px; }
.case-number-wrap span { color: #6b5719; font-size: 12px; }
.case-number-wrap strong { color: var(--navy); font-size: 22px; overflow-wrap: anywhere; }

.legal-nav { display: flex; align-items: center; gap: 10px; }
.legal-nav a { padding: 11px 14px; color: var(--muted); border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 760; }
.legal-nav a:hover { color: var(--ink); background: var(--sky); }
.legal-nav .nav-signin { color: var(--white); background: var(--teal); }
.legal-nav .nav-signin:hover { color: var(--white); background: var(--teal-dark); }

.legal-main { background: var(--white); }
.legal-hero { padding: clamp(70px, 9vw, 118px) clamp(20px, 10vw, 150px) clamp(58px, 7vw, 90px); color: var(--white); background: var(--navy); }
.legal-hero .eyebrow { color: #84ddcf; }
.legal-hero h1 { max-width: 930px; margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: 1.02; }
.legal-hero > p:not(.eyebrow) { max-width: 760px; margin: 22px 0 0; color: #c6d9df; font-size: 19px; line-height: 1.6; }
.legal-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: #9fbac2; font-size: 13px; font-weight: 740; }

.legal-layout { max-width: 1320px; margin: 0 auto; padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 80px); display: grid; grid-template-columns: 230px minmax(0, 800px); gap: clamp(46px, 8vw, 112px); justify-content: center; align-items: start; }
.legal-index { position: sticky; top: 104px; padding: 20px 0; display: grid; gap: 4px; border-top: 3px solid var(--yellow); border-bottom: 1px solid var(--line); }
.legal-index strong { margin-bottom: 8px; color: var(--navy); }
.legal-index a { padding: 7px 0; color: var(--muted); text-decoration: none; font-size: 13px; }
.legal-index a:hover { color: var(--teal); text-decoration: underline; }

.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--line); scroll-margin-top: 104px; }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin: 0 0 18px; color: var(--navy); font-size: clamp(25px, 3vw, 34px); line-height: 1.2; }
.legal-content p,
.legal-content li { color: #4e6878; line-height: 1.72; }
.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 12px 0 18px; padding-left: 22px; }
.legal-content li { margin-bottom: 9px; padding-left: 4px; }
.legal-content a { color: var(--teal-dark); font-weight: 760; }
.legal-callout { margin: 28px 0 8px; padding: 22px; background: var(--yellow-soft); border-left: 4px solid var(--yellow); border-radius: 0 7px 7px 0; }
.legal-callout strong { color: var(--navy); }
.legal-callout p { margin: 8px 0 0; color: #665829; font-size: 14px; }
.legal-footer { grid-template-columns: 1fr .7fr; }

@media (max-width: 1120px) {
  .hero { background-position: center center; }
  .hero-inner { width: min(390px, 34vw); }
  .message-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .flow-line { display: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: grid; }
  .site-nav {
    position: fixed;
    z-index: 29;
    top: 76px;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 76px);
    width: min(360px, 88vw);
    padding: 22px;
    display: none;
    align-content: start;
    gap: 6px;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: none;
  }
  .site-nav.open {
    display: grid;
  }
  .site-nav a { min-height: 48px; display: flex; align-items: center; }
  .site-nav .nav-signin { margin: 8px 0 0; justify-content: center; }

  .hero { min-height: 720px; background-position: 63% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: rgba(255, 247, 234, .82); }
  .hero { position: relative; }
  .hero-inner { position: relative; width: min(580px, 72vw); }

  .screen-band,
  .family-section,
  .professional-inner,
  .faq-section,
  .contact-section,
  .pqr-section { grid-template-columns: 1fr; }

  .screen-band-media { min-height: 520px; }
  .screen-band-copy { max-width: 780px; }
  .family-visual,
  .professional-visual { max-width: 760px; }
  .professional-capabilities { max-width: 760px; }
  .contact-intro { max-width: 720px; padding-bottom: 0; }
  .contact-intro img { position: static; width: 190px; height: 190px; margin: 28px 0 -77px auto; object-position: center bottom; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-index strong { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { min-height: 70px; padding-inline: 14px; }
  .wordmark { font-size: 22px; }
  .wordmark img { width: 46px; height: 50px; }
  .site-nav {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .hero {
    min-height: calc(100svh - 105px);
    padding: 64px 18px 52px;
    align-items: flex-end;
    background-position: 63% center;
  }
  .hero::before { background: rgba(255, 247, 234, .88); }
  .hero-inner { width: 100%; }
  .hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-lead { font-size: clamp(23px, 7vw, 31px); }
  .hero-body { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .role-grid { grid-template-columns: 1fr; }
  .role-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .role-item:last-child { border-bottom: 0; }
  .screen-band-media { min-height: 400px; }
  .narha-device { padding: 10px; gap: 8px; border-width: 7px; }
  .device-topbar { gap: 7px; }
  .device-speech { padding: 7px 9px; }
  .device-speech::before { left: -6px; top: 14px; border-top-width: 5px; border-bottom-width: 5px; border-right-width: 7px; }
  .device-main { gap: 9px; }
  .device-clock > span { margin-top: 7px; }
  .device-widgets > div { padding: 7px; gap: 5px; }
  .feature-list div { grid-template-columns: 1fr; gap: 6px; }
  .support-scenarios { grid-template-columns: 1fr; }
  .support-scenarios article,
  .support-scenarios article:first-child,
  .support-scenarios article:last-child { padding: 26px 0; border-right: 0; border-bottom: 1px solid #bcd8d1; }
  .support-scenarios article:last-child { border-bottom: 0; }
  .family-section { gap: 48px; }
  .professional-capabilities { grid-template-columns: 1fr; }
  .professional-capabilities article,
  .professional-capabilities article:nth-child(even) { min-height: 0; padding: 24px 0; border-right: 0; }
  .message-flow { grid-template-columns: 1fr; gap: 38px; }
  .faq-section { gap: 40px; }
  .field-grid { grid-template-columns: 1fr; }
  .public-form { padding: 24px 18px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .legal-nav a:first-child { display: none; }
  .legal-hero { padding-inline: 18px; }
  .legal-layout { padding-inline: 18px; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-index strong { grid-column: auto; }
}

@media (max-width: 430px) {
  .section,
  .support-search-section,
  .professional-section,
  .communication-section,
  .faq-section,
  .contact-section,
  .pqr-section { padding-inline: 16px; }
  .section-heading h2,
  .family-copy h2,
  .professional-inner h2,
  .screen-band-copy h2,
  .contact-intro h2,
  .pqr-copy h2 { font-size: 34px; }
  .story-header { align-items: flex-start; flex-direction: column; }
  .screen-band-media { min-height: 330px; }
  .screen-band-copy { padding-inline: 18px; }
  .device-speech span { display: none; }
  .device-widgets p span { display: none; }
  .device-widgets > div { justify-content: center; }
  .device-widgets p { flex: 1; }
  .submission-dialog { padding: 28px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
