:root {
  --mm-blue: #3b67b1;
  --mm-blue-deep: #284d8e;
  --mm-navy: #0f0d1d;
  --mission-blue-deep: #284d8e;
  --mission-blue-bright: #3b67b1;
  --mission-blue-light: #dbe8fa;
  --mission-blue-accent: #a9c8f3;
  --page-background: #f5f7fb;
  --paper: #ffffff;
  --ink: #0f0d1d;
  --muted: #726f84;
  --line: #e2e6ee;
  --blue-line: rgba(255, 255, 255, .2);
  --serif: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1390px, calc(100% - 72px));
  --shadow: 0 28px 70px rgba(15, 13, 29, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
main, section, .hero-copy, .product-window, .gathering-content, .capability-grid > *, .faq-shell > * { min-width: 0; }
.page-shell { width: var(--page); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -60px; padding: 12px 18px; color: white; background: var(--mission-blue-deep); border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header { position: relative; z-index: 50; color: white; background: linear-gradient(112deg, var(--mm-blue-deep), var(--mm-blue)); border-bottom: 1px solid rgba(255,255,255,.16); }
.nav-shell { width: min(1500px, 100%); min-height: 124px; margin: 0 auto; display: grid; grid-template-columns: 245px 1fr; align-items: stretch; }
.mm-brand { display: grid; place-items: center; padding: 18px 34px; border-right: 1px solid var(--blue-line); }
.mm-brand img { width: 152px; height: auto; filter: brightness(0) invert(1); }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(24px, 3.1vw, 58px); padding: 0 58px; }
.primary-nav a { position: relative; padding: 51px 0 45px; color: white; font-size: 14px; font-weight: 600; letter-spacing: .075em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.primary-nav .nav-stacked { display: inline-flex; min-width: 66px; flex-direction: column; align-items: center; justify-content: center; line-height: 1.18; text-align: center; white-space: normal; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 37px; height: 3px; background: white; transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav a.active::after { right: calc(100% - 18px); }
.menu-toggle { display: none; }

.hero { position: relative; overflow: hidden; min-height: 780px; color: white; background: linear-gradient(140deg, #0f0d1d 0%, #284d8e 58%, #3b67b1 100%); }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 88% 55%, rgba(255,255,255,.14), transparent 27%), radial-gradient(circle at 8% 15%, rgba(169,200,243,.18), transparent 18%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); grid-template-areas: "copy artwork" "mockup mockup"; gap: 58px 48px; align-items: center; padding-block: 68px 78px; }
.hero-copy { position: relative; z-index: 2; grid-area: copy; max-width: 650px; }
.product-signature { display: inline-flex; align-items: center; gap: 14px; color: white; font-size: 25px; font-weight: 650; text-decoration: none; }
.product-app-icon { position: relative; width: 68px; height: 68px; overflow: hidden; flex: 0 0 auto; border: 2px solid rgba(255,255,255,.68); border-radius: 50%; box-shadow: 0 12px 26px rgba(15,13,29,.2); }
.product-app-icon img { position: absolute; width: 518px; max-width: none; height: 253px; left: -70px; top: -92px; object-fit: cover; }
.mini-mark { display: inline-grid; place-items: center; color: var(--mm-blue); background: #edf3fc; font-family: var(--serif); font-weight: 700; }
.mini-mark { width: 28px; height: 28px; border-radius: 8px 8px 8px 3px; font-size: 16px; }
.hero h1, .section-heading h2, .gathering-content h2, .faq-intro h2, .closing h2 { font-family: var(--serif); font-weight: 700; letter-spacing: -.035em; }
.hero h1 { max-width: 650px; margin: 44px 0 24px; font-size: clamp(58px, 4.5vw, 72px); line-height: 1.03; }
.hero h1 em, .section-heading em { color: #dbe8fa; font-style: normal; }
.hero-copy > p { max-width: 670px; margin: 0; color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.button { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 28px; border: 1px solid transparent; border-radius: 10px; font-size: 15px; font-weight: 650; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--mm-blue-deep); background: white; box-shadow: 0 16px 30px rgba(15,13,29,.18); }
.button-primary:hover, .button-primary:focus-visible { background: #edf3fc; box-shadow: 0 20px 34px rgba(15,13,29,.24); }
.button-outline { color: white; border-color: rgba(255,255,255,.72); background: transparent; }
.button-outline:hover, .button-outline:focus-visible { background: rgba(255,255,255,.08); }
.proof-line { display: flex; flex-wrap: wrap; gap: 18px 30px; margin: 35px 0 0; padding: 0; color: rgba(255,255,255,.76); list-style: none; font-size: 12px; }
.proof-line li { display: flex; align-items: center; gap: 11px; }
.proof-line li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; font-size: 12px; }

.mission-live-artwork { position: absolute; z-index: 0; top: 60px; right: clamp(-154px, -7vw, -72px); grid-area: artwork; width: min(980px, 62vw); overflow: visible; margin: 0; background: transparent; pointer-events: none; }
.mission-live-artwork img { width: 100%; height: auto; opacity: .98; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%); mask-composite: intersect; }
.language-examples { position: absolute; inset: 0; z-index: 1; }
.language-example { position: absolute; display: inline-flex; align-items: center; padding: 0; color: rgba(235, 243, 255, .9); background: transparent; border: 0; font-family: var(--sans); font-size: clamp(10px, .82vw, 13px); font-weight: 600; letter-spacing: .055em; line-height: 1; text-shadow: 0 0 10px rgba(138, 184, 255, .72), 0 2px 8px rgba(3, 12, 36, .9); white-space: nowrap; }
.language-example::before, .language-example::after { content: ""; width: 22px; height: 1px; margin-inline: 8px; background: linear-gradient(90deg, transparent, rgba(210, 230, 255, .64)); opacity: .75; }
.language-example::after { background: linear-gradient(90deg, rgba(210, 230, 255, .64), transparent); }
.language-example-en { top: 12%; left: 54%; transform: rotate(-4deg); }
.language-example-es { top: 30%; right: 7%; transform: rotate(-5deg); }
.language-example-ur { top: 34%; left: 39%; transform: rotate(-2deg); font-family: "Geeza Pro", "Noto Naskh Arabic", serif; font-size: clamp(13px, 1vw, 16px); font-weight: 500; letter-spacing: 0; }
.language-example-hi { top: 51%; left: 34%; transform: rotate(1deg); color: rgba(225, 237, 255, .78); font-family: "Kohinoor Devanagari", "Noto Sans Devanagari", var(--sans); font-size: clamp(12px, .94vw, 15px); font-weight: 500; letter-spacing: .015em; }
.language-example-tr { top: 49%; right: 9%; transform: rotate(-1deg); }
.language-example-ar { right: 11%; bottom: 24%; transform: rotate(3deg); font-family: "Geeza Pro", "Noto Naskh Arabic", serif; font-size: clamp(14px, 1.05vw, 17px); font-weight: 500; letter-spacing: 0; }
.language-example-fr { left: 52%; bottom: 8%; transform: rotate(4deg); }
.language-example-zh { left: 38%; bottom: 30%; transform: rotate(4deg); font-size: clamp(13px, 1vw, 16px); letter-spacing: .08em; }

.product-window { grid-area: mockup; position: relative; z-index: 2; width: min(100%, 980px); justify-self: center; overflow: hidden; padding: 18px; color: var(--ink); background: rgba(255,254,251,.98); border: 1px solid rgba(255,255,255,.5); border-radius: 26px; box-shadow: var(--shadow); }
.window-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 4px 5px 18px; }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 50%; background: #e67362; }
.window-dots span:nth-child(2) { background: #eabf52; }
.window-dots span:nth-child(3) { background: #4cbf78; }
.window-title { display: flex; align-items: center; gap: 9px; font-size: 12px; white-space: nowrap; }
.live-state { justify-self: end; display: flex; align-items: center; gap: 7px; color: #694235; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.live-state i { width: 7px; height: 7px; border-radius: 50%; background: #dc745d; box-shadow: 0 0 0 5px #fae1d9; }
.language-route { display: grid; grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr); align-items: center; gap: 9px; margin-bottom: 11px; padding: 12px; background: #edf3fc; border-radius: 15px; }
.language-route > div { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; background: white; border: 1px solid #e1e3dd; border-radius: 11px; }
.language-route small { color: #78847f; font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.language-route strong { font-size: 13px; }
.language-route > span { color: var(--mission-blue-bright); text-align: center; font-size: 22px; }
.caption-feed { overflow: hidden; border: 1px solid #dbe3ef; border-radius: 17px; background: white; }
.caption-feed-heading { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 17px; color: #65738a; border-bottom: 1px solid #edf1f7; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.caption-feed-heading span { display: inline-flex; align-items: center; gap: 8px; color: var(--mm-blue); }
.caption-feed-heading i { width: 7px; height: 7px; border-radius: 50%; background: var(--mission-blue-bright); box-shadow: 0 0 0 4px rgba(59,103,177,.12); }
.caption-stream-copy { padding: 14px 17px 12px; }
.caption-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #71807a; font-size: 8px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.caption-meta i { width: 17px; height: 17px; display: inline-grid; place-items: center; color: white; background: var(--mm-blue); border-radius: 50%; font-style: normal; }
.caption-source { margin: 0 0 8px; color: #4f5e58; font-size: 11px; line-height: 1.55; }
.caption-output { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.5; }
.verified-inline-preview { margin: 0 12px 12px; padding: 12px 13px; border-top: 1px solid #dbe3ef; border-radius: 0 0 11px 11px; background: linear-gradient(145deg, rgba(237,243,252,.74), rgba(255,255,255,.96)); }
.verified-inline-preview > span { display: inline-flex; align-items: center; gap: 7px; color: var(--mm-blue); font-size: 8px; font-weight: 700; letter-spacing: .035em; }
.verified-inline-preview > span i { width: 17px; height: 17px; display: inline-grid; place-items: center; color: white; background: var(--mm-blue); border-radius: 50%; font-style: normal; }
.quran-arabic { margin: 10px 0 7px; font-size: 25px; line-height: 1.7; }
.verified-inline-preview small { display: block; margin-top: 7px; color: #6d7b75; font-size: 8px; }
.listener-controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 11px; }
.listener-controls span { display: flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 12px; color: #52627d; background: #edf3fc; border-radius: 11px; font-size: 10px; }
.listener-controls b { width: 23px; height: 23px; display: inline-grid; place-items: center; color: var(--mission-blue-deep); background: white; border: 1px solid #d5d9d2; border-radius: 7px; font-size: 8px; }
.listener-controls strong { margin-left: auto; color: var(--mission-blue-bright); }

.workflow { color: white; background: linear-gradient(115deg, var(--mm-blue-deep), var(--mm-blue)); padding: 106px 0 112px; }
.section-heading { max-width: 940px; }
.section-heading h2 { margin: 0; font-size: clamp(54px, 5.3vw, 82px); line-height: 1.08; }
.section-heading p { max-width: 780px; margin: 23px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-heading-light p { color: rgba(255,255,255,.74); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 62px; margin: 72px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 20px; }
.steps li:not(:last-child)::after { content: "→"; position: absolute; right: -44px; top: 10px; color: var(--mission-blue-light); font-size: 32px; }
.steps li > span { width: 52px; height: 52px; display: grid; place-items: center; color: var(--mm-blue-deep); background: white; border-radius: 50%; font-family: var(--serif); font-size: 23px; }
.steps h3 { margin: 4px 0 12px; color: white; font-size: 18px; }
.steps p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.7; }

.gatherings { display: grid; grid-template-columns: minmax(0, .82fr) minmax(640px, 1.18fr); min-height: 570px; background: var(--paper); }
.gathering-photo { min-height: 100%; overflow: hidden; }
.gathering-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 43% center; }
.gathering-content { display: grid; align-content: center; gap: 42px; padding: 74px clamp(48px, 6vw, 110px); }
.section-label { margin: 0 0 16px; color: var(--mm-blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gathering-content h2 { margin: 0; font-size: clamp(46px, 4vw, 68px); line-height: 1.05; }
.gathering-content > div > p:last-child { max-width: 650px; color: var(--muted); line-height: 1.7; }
.use-case-list { display: grid; grid-template-columns: repeat(5, minmax(90px, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.use-case-list li { min-height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; padding: 16px 12px; text-align: center; border-right: 1px solid var(--line); }
.use-case-list li:last-child { border-right: 0; }
.use-case-list span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--mm-blue); background: #edf3fc; border-radius: 50%; font-family: var(--serif); font-size: 21px; }
.use-case-list strong { font-size: 12px; line-height: 1.35; }

.capabilities { padding: 112px 0 100px; background: var(--page-background); }
.capability-shell > .section-heading em { color: var(--mm-blue); }
.capability-grid { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(360px, .68fr); gap: clamp(46px, 6vw, 92px); align-items: center; margin-top: 64px; }
.unified-feed { overflow: hidden; background: white; border: 1px solid #dfe5ef; border-radius: 18px; box-shadow: 0 24px 60px rgba(15,13,29,.09); }
.feed-toolbar { min-height: 60px; display: flex; align-items: center; gap: 30px; padding: 13px 20px; color: white; background: var(--mission-blue-deep); font-size: 11px; }
.feed-toolbar span:first-child { margin-right: auto; font-weight: 650; }
.feed-toolbar i { margin: 0 8px; color: var(--mission-blue-light); font-style: normal; }
.feed-toolbar b { margin-right: 5px; color: var(--mission-blue-light); }
.continuous-transcript { padding: 7px 20px 15px; }
.feed-line { display: grid; grid-template-columns: 70px minmax(0,1fr) minmax(0,1fr); gap: 17px; align-items: start; padding: 12px 0; border-bottom: 1px solid #e8edf5; }
.feed-line:last-child { border-bottom: 0; }
.feed-line time { padding-top: 2px; color: #8792a4; font-size: 8px; letter-spacing: .04em; }
.feed-line p { margin: 0; font-size: 12px; line-height: 1.6; }
.feed-line p[dir="rtl"] { font-size: 15px; }
.verified-passage-inline { grid-template-rows: auto auto; }
.verified-passage-inline p { font-family: var(--serif); font-size: 14px; }
.verified-passage-inline p[dir="rtl"] { font-family: serif; font-size: 18px; }
.verified-passage-inline small { grid-column: 2 / -1; display:flex; align-items:center; gap:6px; color: var(--mm-blue); font-size: 8px; font-weight:650; }
.verified-passage-inline small i { width:15px; height:15px; display:inline-grid; place-items:center; color:white; background:var(--mm-blue); border-radius:50%; font-style:normal; }
.feature-list { display: grid; gap: 26px; }
.feature-list article { display: grid; grid-template-columns: 66px 1fr; gap: 20px; align-items: start; }
.feature-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--mm-blue); background: #edf3fc; border-radius: 50%; font-family: var(--serif); font-size: 19px; }
.feature-list h3 { margin: 3px 0 7px; font-size: 17px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.trust-band { display: flex; align-items: center; gap: 20px; margin: 58px 0 0; padding: 24px 28px; color: white; background: var(--mm-blue); border-radius: 10px; font-size: 16px; line-height: 1.6; }
.trust-band span { width: 44px; height: 44px; display: grid; flex: 0 0 auto; place-items: center; color: var(--mm-blue); background: white; border-radius: 50%; font-weight: 700; }

.plans { padding: 0 0 108px; background: white; }
.blue-rule { height: 36px; background: linear-gradient(105deg, var(--mm-blue-deep), var(--mm-blue)); }
.plans .section-heading { padding-top: 82px; }
.centered { max-width: 1040px; margin-inline: auto; text-align: center; }
.centered h2 { font-size: clamp(46px, 4.7vw, 72px); }
.centered p { margin-inline: auto; }
.plan-rail { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 58px; border: 1px solid #d7e0ee; border-radius: 14px; }
.plan-rail article { min-height: 245px; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 20px; text-align: center; border-right: 1px solid #d7e0ee; }
.plan-rail article:last-child { border-right: 0; }
.plan-rail article > span { width: 58px; height: 58px; display: grid; place-items: center; color: var(--mm-blue); background: #edf3fc; border-radius: 50%; font-family: var(--serif); font-size: 24px; }
.plan-rail h3 { margin: 5px 0 0; color: var(--mm-blue); font-size: 16px; }
.plan-rail p { margin: 0; color: #384e70; font-size: 12px; line-height: 1.6; }
.plan-action { display: grid; justify-items: center; gap: 14px; margin-top: 28px; }
.button-blue { color: white; background: var(--mm-blue); box-shadow: 0 14px 28px rgba(47,97,176,.18); }
.button-blue:hover, .button-blue:focus-visible { background: var(--mm-blue-deep); }
.plan-action p { margin: 0; color: #65738a; font-size: 11px; text-align: center; }

.faq { padding: 100px 0 110px; background: #f7f9fc; }
.faq-shell { display: grid; grid-template-columns: minmax(300px, .68fr) minmax(560px, 1.32fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.faq-intro h2 { margin: 0; font-size: clamp(48px, 4.4vw, 68px); line-height: 1.06; }
.faq-intro > p:last-child { color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 1px solid #d6dee9; }
.faq-list details { border-bottom: 1px solid #d6dee9; }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; font-size: 15px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--mm-blue); font-size: 27px; font-weight: 400; transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -4px 52px 26px 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.closing { overflow: hidden; padding: 94px 0 0; color: white; background: linear-gradient(115deg, var(--mm-blue-deep), var(--mm-blue)); text-align: center; }
.closing-content { display: grid; justify-items: center; }
.closing h2 { margin: 0; font-size: clamp(58px, 6vw, 92px); line-height: 1; }
.closing p { max-width: 800px; margin: 28px auto 0; color: rgba(255,255,255,.77); font-size: 17px; line-height: 1.65; }
.closing-actions { justify-content: center; }
.waveform { height: 128px; display: flex; align-items: center; justify-content: center; gap: clamp(5px, .8vw, 14px); margin-top: 42px; }
.waveform i { width: 2px; height: 9px; background: var(--mission-blue-accent); opacity: .65; }
.waveform i:nth-child(3n) { height: 32px; }
.waveform i:nth-child(4n) { height: 54px; }
.waveform i:nth-child(7n) { height: 78px; }

.site-footer { color: white; background: linear-gradient(108deg, var(--mm-blue-deep), var(--mm-blue)); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.4fr) repeat(4, 1fr); gap: 48px; padding: 72px 0 54px; }
.footer-brand img { width: 178px; height: auto; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.75; }
.footer-grid h2 { margin: 7px 0 22px; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.76); font-size: 11px; text-decoration: none; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 26px; color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; }
.footer-bottom a { color: inherit; }

@media (max-width: 1180px) {
  :root { --page: min(100% - 44px, 1080px); }
  .nav-shell { grid-template-columns: 190px 1fr; }
  .primary-nav { gap: 22px; padding: 0 28px; }
  .primary-nav a { font-size: 11px; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 48px 30px; }
  .hero h1 { font-size: 58px; }
  .mission-live-artwork { right: -110px; width: min(790px, 66vw); }
  .gatherings { grid-template-columns: .7fr 1.3fr; }
  .gathering-content { padding-inline: 46px; }
  .use-case-list { grid-template-columns: repeat(3, 1fr); }
  .use-case-list li:nth-child(3) { border-right: 0; }
  .use-case-list li:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --page: min(100% - 36px, 760px); }
  .site-header { position: sticky; top: 0; }
  .nav-shell { min-height: 82px; grid-template-columns: 176px auto; align-items: center; justify-content: space-between; }
  .mm-brand { min-height: 82px; padding: 12px 24px; }
  .mm-brand img { width: 127px; }
  .menu-toggle { width: 48px; height: 48px; display: grid; align-content: center; gap: 5px; margin-right: 17px; padding: 10px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.36); border-radius: 9px; }
  .menu-toggle i { width: 100%; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; left: 0; right: 0; top: 82px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 10px 18px 20px; background: var(--mm-blue-deep); border-top: 1px solid rgba(255,255,255,.14); box-shadow: 0 22px 40px rgba(11,31,62,.25); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 12px; font-size: 12px; }
  .primary-nav a::after { display: none; }
  .primary-nav a.active { background: rgba(255,255,255,.09); border-radius: 7px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "artwork" "mockup"; padding-block: 70px; }
  .hero-copy { max-width: 720px; }
  .mission-live-artwork { position: relative; top: auto; right: auto; width: min(108%, 760px); justify-self: center; margin-inline: -4%; }
  .language-example { font-size: 9px; }
  .language-example::before, .language-example::after { width: 15px; margin-inline: 5px; }
  .language-example-ar, .language-example-zh { font-size: 12px; }
  .product-window { max-width: 690px; margin-inline: auto; }
  .workflow { padding-block: 82px; }
  .steps { grid-template-columns: 1fr; gap: 34px; margin-top: 50px; }
  .steps li:not(:last-child)::after { display: none; }
  .gatherings { grid-template-columns: 1fr; }
  .gathering-photo { min-height: 450px; }
  .gathering-content { padding: 70px max(24px, calc((100vw - 760px) / 2)); }
  .capability-grid { grid-template-columns: 1fr; }
  .plan-rail { grid-template-columns: repeat(2, 1fr); }
  .plan-rail article { border-bottom: 1px solid #d7e0ee; }
  .plan-rail article:nth-child(2n) { border-right: 0; }
  .plan-rail article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .faq-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 30px); }
  .nav-shell { grid-template-columns: 150px auto; }
  .mm-brand { padding-inline: 18px; }
  .hero-grid { padding-block: 54px 60px; }
  .product-signature { font-size: 21px; }
  .product-app-icon { width: 58px; height: 58px; }
  .product-app-icon img { width: 442px; height: 217px; left: -60px; top: -82px; }
  .language-example { font-size: 8px; text-shadow: 0 0 8px rgba(138, 184, 255, .74), 0 2px 7px rgba(3, 12, 36, .9); }
  .language-example::before, .language-example::after { width: 6px; margin-inline: 2px; }
  .language-example-en { top: 8%; left: 48%; }
  .language-example-es { top: 25%; right: 1%; }
  .language-example-ur { top: 31%; left: 20%; font-size: 10px; }
  .language-example-hi { top: 48%; left: 16%; font-size: 9px; }
  .language-example-tr { top: 48%; right: 2%; }
  .language-example-ar { right: 5%; bottom: 18%; font-size: 11px; }
  .language-example-fr { left: 47%; bottom: 4%; }
  .language-example-zh { left: 20%; bottom: 25%; font-size: 10px; }
  .hero h1 { margin-top: 36px; font-size: clamp(44px, 12.5vw, 52px); overflow-wrap: normal; }
  .hero h1 em { display: block; }
  .hero-copy > p { font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .proof-line { display: grid; gap: 11px; }
  .product-window { width: 100%; padding: 11px; border-radius: 18px; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-dots { display: none; }
  .window-title { justify-self: start; }
  .live-state { grid-column: 2; }
  .language-route { grid-template-columns: 1fr 24px 1fr; padding: 8px; }
  .language-route > div { padding: 9px; }
  .caption-output { font-size: 16px; }
  .quran-arabic { font-size: 21px; }
  .workflow { padding-block: 70px; }
  .section-heading h2 { font-size: 46px; }
  .section-heading p { font-size: 14px; }
  .gathering-photo { min-height: 340px; }
  .gathering-content { padding: 58px 20px; }
  .gathering-content h2 { font-size: 47px; }
  .use-case-list { grid-template-columns: 1fr 1fr; }
  .use-case-list li:nth-child(odd) { border-right: 1px solid var(--line); }
  .use-case-list li:nth-child(even) { border-right: 0; }
  .use-case-list li:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .use-case-list li:last-child { grid-column: 1 / -1; }
  .capabilities { padding-block: 72px; }
  .capability-grid { margin-top: 42px; }
  .feed-toolbar { flex-wrap: wrap; gap: 8px 18px; }
  .feed-toolbar span:first-child { width: 100%; }
  .continuous-transcript { padding: 5px 15px 12px; }
  .feed-line { grid-template-columns: 1fr; gap: 6px; padding: 13px 0; }
  .feed-line time { padding-top: 0; }
  .verified-passage-inline small { grid-column: 1; }
  .trust-band { align-items: flex-start; padding: 20px; font-size: 13px; }
  .blue-rule { height: 24px; }
  .plans .section-heading { padding-top: 62px; }
  .centered h2 { font-size: 43px; }
  .plan-rail { grid-template-columns: 1fr; }
  .plan-rail article { min-height: auto; border-right: 0; border-bottom: 1px solid #d7e0ee; }
  .plan-rail article:last-child { grid-column: auto; }
  .faq { padding-block: 72px; }
  .faq-intro h2 { font-size: 46px; }
  .faq-list summary { min-height: 68px; font-size: 13px; }
  .closing { padding-top: 72px; }
  .closing h2 { font-size: 52px; }
  .closing p { font-size: 14px; }
  .waveform { height: 95px; gap: 7px; }
  .waveform i:nth-child(n+22) { display: none; }
  .footer-grid { grid-template-columns: 1fr; padding-block: 54px 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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