:root {
  --bg: #0b0b0e;
  --bg-deep: #08080b;
  --surface: #17171b;
  --surface-2: #202025;
  --surface-3: #28282d;
  --ink: #f7f5f8;
  --muted: #a3a0a9;
  --dim: #6b6872;
  --plum: #5b2c83;
  --purple: #8b4cf6;
  --purple-bright: #a972ff;
  --purple-soft: #d8c1ff;
  --green: #79d66f;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --shell: min(100% - 72px, 1320px);
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); }
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 12%, rgba(91, 44, 131, .14), transparent 32%), linear-gradient(rgba(255,255,255,.017) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.017) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
em { color: var(--purple-bright); font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 144px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; left: 18px; top: -60px; padding: 11px 15px; border-radius: 8px; background: var(--purple); color: #fff; transition: top .2s; }
.skip-link:focus { top: 18px; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(255,255,255,.065); background: rgba(11,11,14,.82); backdrop-filter: blur(20px); }
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand-link { display: block; width: 180px; flex: 0 0 auto; }
.brand-link img, .footer-logo { display: block; width: 100%; height: auto; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 28px; color: #bab7c0; font-size: 13px; }
.site-nav a { position: relative; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--purple-bright); transition: right .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.language-toggle { min-width: 42px; min-height: 34px; padding: 0 10px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.035); color: var(--purple-soft); font-weight: 700; font-size: 11px; }
.language-toggle:hover { background: rgba(139,76,246,.16); border-color: rgba(169,114,255,.5); }
.menu-toggle { display: none; }

.hero { padding-top: 28px; }
.hero-panel { position: relative; min-height: 770px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; overflow: hidden; padding: 78px clamp(42px, 5.7vw, 86px) 105px; border: 1px solid var(--line); border-radius: 48px; background: linear-gradient(135deg, #222226 0%, #19191d 64%, #20192a 100%); }
.hero-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, #000, transparent 80%); }
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-kicker { margin: 0 0 24px; color: var(--purple-soft); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow > span:first-child { width: 28px; height: 1px; background: var(--purple-bright); }
.hero h1 { margin: 0 0 30px; font-size: clamp(62px, 7vw, 108px); font-weight: 750; line-height: .92; letter-spacing: -.075em; }
.hero h1 span { display: block; }
.hero h1 span:first-child { font-size: .58em; margin-bottom: 15px; font-weight: 650; letter-spacing: -.045em; text-transform: uppercase; }
.hero-lede { max-width: 610px; margin-bottom: 34px; color: #c5c2c9; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.hero-actions, .closing-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-size: 13px; font-weight: 700; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple); color: #fff; box-shadow: 0 18px 42px rgba(91,44,131,.24); }
.button-primary:hover { background: #985bff; }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: #dedbe2; }
.button-ghost:hover { border-color: rgba(169,114,255,.55); background: rgba(139,76,246,.08); }
.button-light { background: #fff; color: #17121d; }
.hero-visual { position: relative; z-index: 2; min-height: 600px; }
.visual-frame { position: absolute; inset: 5% 0 2% 12%; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: #1d1724; transform: rotate(2.5deg); box-shadow: 0 45px 100px rgba(0,0,0,.4); }
.hero-model { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 53%; filter: saturate(.9) contrast(1.04); }
.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,14,.68)); pointer-events: none; }
.visual-scan { position: absolute; z-index: 2; left: 8%; right: 8%; top: 18%; height: 1px; background: var(--purple-bright); box-shadow: 0 0 18px var(--purple-bright); animation: scan 5s ease-in-out infinite alternate; }
.visual-tag { position: absolute; z-index: 3; left: 22px; bottom: 20px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(11,11,14,.68); backdrop-filter: blur(12px); font-size: 10px; letter-spacing: .08em; }
.visual-tag > span:first-child { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.floating-phone { position: absolute; z-index: 4; width: 42%; right: -2%; bottom: -3%; margin: 0; transform: rotate(-5deg); filter: drop-shadow(0 28px 28px rgba(0,0,0,.45)); }
.floating-phone img { display: block; width: 100%; }
.hero-index { position: absolute; left: 30px; bottom: 30px; color: #6c6871; font-family: monospace; font-size: 10px; letter-spacing: .16em; writing-mode: vertical-lr; }
.hero-meta { position: absolute; z-index: 3; left: clamp(42px,5.7vw,86px); right: clamp(42px,5.7vw,86px); bottom: 27px; display: flex; gap: 8px; }
.hero-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #87838e; font-family: monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
@keyframes scan { from { top: 18%; } to { top: 77%; } }

.manifesto-section { min-height: 720px; display: grid; grid-template-columns: .35fr 1.8fr .75fr; gap: 42px; align-items: center; padding-top: 120px; padding-bottom: 120px; }
.manifesto-mark { align-self: start; margin-top: 154px; color: #4c4951; font-family: monospace; font-size: 12px; }
.manifesto-section h2 { max-width: 910px; margin: 0; font-size: clamp(52px, 6.6vw, 96px); line-height: .99; letter-spacing: -.065em; }
.manifesto-copy { align-self: end; max-width: 310px; margin-bottom: 132px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; margin-bottom: 72px; }
.section-heading h2, .technology-copy h2, .progress-copy h2, .faq-wrap h2 { margin: 0; font-size: clamp(48px, 5.5vw, 78px); line-height: .98; letter-spacing: -.065em; }
.section-heading > p, .technology-copy > p:last-child, .progress-copy > p, .faq-list p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.workflow-section { border-top: 1px solid var(--line); background: #101014; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.workflow-card { min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: 25px; background: var(--surface); }
.workflow-card.is-accent { background: linear-gradient(150deg, #6c309f, #482164); border-color: rgba(210,174,255,.26); }
.workflow-number { color: #807c87; font-family: monospace; font-size: 11px; }
.is-accent .workflow-number { color: #d5bbed; }
.workflow-icon { position: relative; width: 150px; height: 150px; display: grid; place-items: center; align-self: center; }
.icon-frame { position: absolute; inset: 12px; border: 1px solid rgba(169,114,255,.35); border-radius: 50%; box-shadow: 0 0 0 16px rgba(139,76,246,.05), 0 0 0 34px rgba(139,76,246,.025); }
.icon-person { position: relative; width: 38px; height: 67px; border: 1px solid var(--purple-bright); border-radius: 22px 22px 12px 12px; }
.icon-person::before { content: ""; position: absolute; width: 26px; height: 26px; left: 5px; top: -30px; border: 1px solid var(--purple-bright); border-radius: 50%; background: var(--surface); }
.garment-icon span { position: relative; width: 86px; height: 102px; display: block; border: 1px solid rgba(255,255,255,.55); border-radius: 10px 10px 24px 24px; clip-path: polygon(24% 0, 40% 10%, 60% 10%, 76% 0, 100% 26%, 83% 39%, 78% 100%, 22% 100%, 17% 39%, 0 26%); background: rgba(255,255,255,.07); box-shadow: inset 0 0 34px rgba(255,255,255,.08); }
.sparkle-icon span { position: absolute; color: var(--purple-bright); font-size: 72px; filter: drop-shadow(0 0 16px rgba(169,114,255,.5)); }
.sparkle-icon span:last-child { right: 13px; bottom: 18px; color: #fff; font-size: 27px; }
.workflow-card h3 { margin: 0 0 11px; font-size: 24px; letter-spacing: -.035em; }
.workflow-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.workflow-card.is-accent p { color: #decfe8; }

.experience-section { background: var(--bg); }
.experience-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: auto auto; gap: 14px; }
.experience-card { position: relative; overflow: hidden; min-height: 580px; padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.card-label { position: relative; z-index: 3; display: flex; justify-content: space-between; color: #8e8995; font-family: monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.experience-card h3 { position: relative; z-index: 3; max-width: 590px; margin: 55px 0 0; font-size: clamp(37px, 4vw, 60px); line-height: 1; letter-spacing: -.06em; }
.experience-primary { grid-row: span 2; min-height: 930px; background: linear-gradient(155deg, #1a171e, #26202d 68%, #321d45); }
.device-stage { position: absolute; left: 12%; right: 12%; bottom: -13%; margin: 0; text-align: center; }
.device-stage::before { content: ""; position: absolute; z-index: -1; width: 400px; height: 400px; left: 50%; top: 42%; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(139,76,246,.18); filter: blur(36px); }
.device-stage img { width: min(88%, 510px); filter: drop-shadow(0 35px 25px rgba(0,0,0,.42)); }
.experience-result { background: #ece9e5; color: #151319; }
.experience-result .card-label { color: #706b73; }
.result-status { display: flex; align-items: center; gap: 8px; margin: 46px 0 18px; color: #5f5965; font-family: monospace; font-size: 10px; text-transform: uppercase; }
.result-status > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: #4aa94f; }
.result-visual { height: 320px; margin: 0; overflow: hidden; border-radius: 18px; background: #ded6e5; }
.result-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.result-meta { display: flex; justify-content: space-between; align-items: end; margin-top: 20px; }
.result-meta div { display: grid; gap: 5px; }
.result-meta span { color: #77717b; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.result-meta strong { font-size: 16px; }
.result-meta > b { font-size: 32px; color: var(--plum); letter-spacing: -.05em; }
.experience-intelligence { min-height: 336px; background: #17171b; }
.experience-intelligence h3 { max-width: 500px; margin-top: 32px; font-size: 30px; }
.signal-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.signal-list span { padding: 8px 12px; border: 1px solid rgba(169,114,255,.28); border-radius: 99px; color: var(--purple-soft); font-size: 11px; }
.signal-graphic { position: absolute; right: 25px; bottom: 23px; width: 155px; height: 96px; display: flex; align-items: end; gap: 7px; opacity: .7; }
.signal-graphic span { width: 8px; height: 38%; border-radius: 8px; background: var(--purple); }
.signal-graphic span:nth-child(2) { height: 72%; }
.signal-graphic span:nth-child(3) { height: 52%; }
.signal-graphic span:nth-child(4) { height: 88%; }
.signal-graphic i { position: absolute; width: 70px; height: 70px; right: 0; top: 0; border: 1px solid rgba(169,114,255,.35); border-radius: 50%; }

.technology-section { background: #eeeae6; color: #151419; }
.technology-section .section-kicker { color: var(--plum); }
.technology-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; align-items: start; }
.technology-copy { position: sticky; top: 130px; }
.technology-copy > p:last-child { max-width: 480px; margin-top: 28px; color: #5d5860; }
.technology-stack { display: grid; gap: 12px; }
.technology-stack article { min-height: 245px; display: grid; grid-template-columns: 55px 1fr auto; gap: 24px; align-items: end; padding: 27px; border: 1px solid rgba(21,20,25,.13); border-radius: 23px; background: rgba(255,255,255,.38); }
.technology-stack article:nth-child(2) { background: var(--plum); color: #fff; }
.technology-stack article > span { align-self: start; color: #766f7a; font-family: monospace; font-size: 11px; }
.technology-stack article:nth-child(2) > span { color: #d8bee9; }
.technology-stack h3 { margin: 0 0 9px; font-size: 30px; letter-spacing: -.045em; }
.technology-stack p { max-width: 480px; margin: 0; color: #656067; font-size: 14px; line-height: 1.65; }
.technology-stack article:nth-child(2) p { color: #e3d6ea; }
.technology-stack article > b { color: rgba(21,20,25,.25); font-family: monospace; font-size: 10px; letter-spacing: .14em; writing-mode: vertical-rl; }
.technology-stack article:nth-child(2) > b { color: rgba(255,255,255,.35); }

.progress-teaser { background: #0d0d11; }
.progress-panel { min-height: 640px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; padding: clamp(42px,6vw,86px); border: 1px solid rgba(169,114,255,.19); border-radius: 34px; background: radial-gradient(circle at 80% 40%, rgba(91,44,131,.23), transparent 40%), linear-gradient(145deg,#15131a,#0f0f13); }
.progress-copy > p { max-width: 480px; margin-top: 26px; }
.progress-copy .button { margin-top: 28px; }
.progress-preview { padding: 26px; border: 1px solid rgba(169,114,255,.18); border-radius: 20px; background: rgba(8,8,12,.72); box-shadow: 0 30px 70px rgba(0,0,0,.28); font-family: monospace; }
.preview-head { display: flex; justify-content: space-between; color: #888491; font-size: 10px; letter-spacing: .08em; }
.preview-head strong { color: var(--purple-bright); font-size: 21px; }
.preview-bar { height: 2px; margin: 18px 0 30px; background: #29262e; }
.preview-bar span { display: block; width: 40%; height: 100%; background: linear-gradient(90deg,var(--green),var(--purple-bright)); box-shadow: 0 0 12px rgba(169,114,255,.55); }
.preview-stage { min-height: 70px; display: grid; grid-template-columns: 20px 1fr auto; gap: 10px; align-items: center; padding: 0 14px; border-top: 1px solid var(--line); color: #5f5c65; font-size: 11px; }
.preview-stage i { width: 7px; height: 7px; border: 1px solid #514d59; border-radius: 50%; }
.preview-stage.is-done { color: #8ca889; }
.preview-stage.is-done i { border: 0; background: var(--green); }
.preview-stage.is-active { color: var(--purple-soft); background: rgba(139,76,246,.055); }
.preview-stage.is-active i { border-color: var(--purple-bright); box-shadow: 0 0 0 5px rgba(139,76,246,.12), 0 0 12px var(--purple); }

.faq-section { background: #18181c; }
.faq-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 3px; right: 3px; top: 11px; height: 1px; background: var(--purple-soft); transition: transform .2s; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 680px; padding: 0 40px 28px 0; }
.faq-list p a { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 4px; }

.closing-section { position: relative; min-height: 640px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; margin-top: 28px; margin-bottom: 28px; padding: 76px clamp(42px,6vw,88px); border-radius: 42px; background: linear-gradient(135deg,#7033a5,#4c1f70 64%,#321548); }
.closing-section > *:not(.closing-orb) { position: relative; z-index: 2; }
.closing-section > p { margin-bottom: 26px; color: #e8d8f4; font-family: monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.closing-section h2 { max-width: 960px; margin: 0 0 44px; font-size: clamp(62px, 7.6vw, 112px); line-height: .91; letter-spacing: -.075em; }
.closing-section h2 em { color: #fff; }
.closing-actions > a { margin-left: 12px; border-bottom: 1px solid rgba(255,255,255,.65); padding: 8px 0; font-size: 13px; }
.closing-orb { position: absolute; width: 560px; height: 560px; right: -110px; top: -160px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }

.site-footer { padding: 64px 0; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 70px; align-items: end; }
.footer-logo { width: 178px; }
.site-footer p { margin: 13px 0 0; color: #77737d; font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 23px; color: #aaa6af; font-size: 12px; }
.footer-links a:hover { color: var(--purple-soft); }
.copyright { text-align: right; line-height: 1.65; }
.notice { position: fixed; z-index: 90; right: 24px; bottom: 24px; max-width: 340px; padding: 16px 18px; border: 1px solid rgba(169,114,255,.27); border-radius: 13px; background: rgba(26,21,32,.94); color: #fff; font-size: 13px; line-height: 1.55; box-shadow: 0 20px 45px rgba(0,0,0,.42); backdrop-filter: blur(12px); }

/* Development tracker */
.progress-page { background: #09080d; }
.progress-page::before { background: radial-gradient(circle at 50% 10%, rgba(91,44,131,.16), transparent 30%), linear-gradient(rgba(169,114,255,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(169,114,255,.045) 1px,transparent 1px); background-size: auto, 50px 50px, 50px 50px; }
.progress-page .site-header { background: rgba(9,8,13,.84); }
.progress-nav-status { margin-left: auto; display: flex; align-items: center; gap: 8px; color: #777181; font-family: monospace; font-size: 10px; letter-spacing: .08em; }
.progress-nav-status span:first-child { width: 5px; height: 5px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 10px var(--purple); }
.progress-page .site-nav { margin-left: 20px; }
.tracker-main { max-width: 980px; padding-top: 120px; padding-bottom: 100px; }
.tracker-hero { padding-bottom: 64px; }
.tracker-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 23px; color: #88d980; font-family: monospace; font-size: 10px; letter-spacing: .25em; }
.tracker-eyebrow span:first-child { width: 24px; height: 1px; background: #68b761; }
.tracker-hero h1 { max-width: 940px; margin: 0; font-size: clamp(52px,6.2vw,82px); line-height: .96; letter-spacing: -.07em; }
.tracker-meta { display: flex; flex-wrap: wrap; gap: 0; margin-top: 28px; color: #65616b; font-family: monospace; font-size: 10px; }
.tracker-meta span { display: flex; align-items: center; }
.tracker-meta span:not(:last-child)::after { content: "—"; margin: 0 14px; color: #37343c; }
.tracker-overview { padding: 25px; border: 1px solid rgba(169,114,255,.15); border-radius: 15px; background: rgba(20,17,25,.82); box-shadow: 0 24px 70px rgba(0,0,0,.18); font-family: monospace; }
.tracker-overview-head { display: flex; align-items: center; justify-content: space-between; color: #77717f; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.tracker-overview-head strong { color: var(--purple-bright); font-size: 20px; }
.tracker-progress-bar { height: 2px; margin: 17px 0 14px; background: #2c2832; }
.tracker-progress-bar span { display: block; width: 40%; height: 100%; background: linear-gradient(90deg,#76cf6e,var(--purple-bright)); box-shadow: 0 0 11px rgba(169,114,255,.7); }
.tracker-stage-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tracker-stage-pills span { padding: 5px 8px; border: 1px solid #2a2730; border-radius: 4px; color: #504b57; font-size: 9px; }
.tracker-stage-pills .is-done { border-color: rgba(121,214,111,.18); background: rgba(121,214,111,.055); color: #80b87b; }
.tracker-stage-pills .is-active { border-color: rgba(169,114,255,.25); background: rgba(139,76,246,.09); color: var(--purple-soft); }
.tracker-timeline { position: relative; display: grid; gap: 16px; margin-top: 55px; }
.tracker-timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 30px; width: 1px; background: linear-gradient(to bottom,rgba(121,214,111,.3),rgba(169,114,255,.24) 48%,rgba(169,114,255,.06)); }
.tracker-item { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 18px; }
.tracker-node { position: relative; display: grid; place-items: start center; padding-top: 19px; }
.tracker-node span { position: relative; z-index: 2; width: 9px; height: 9px; border: 1px solid rgba(169,114,255,.35); border-radius: 50%; background: #09080d; }
.tracker-item.is-done .tracker-node span { border: 0; background: var(--green); box-shadow: 0 0 10px rgba(121,214,111,.25); }
.tracker-item.is-active .tracker-node span { border: 2px solid var(--purple-bright); box-shadow: 0 0 0 6px rgba(139,76,246,.12),0 0 15px var(--purple); }
.tracker-item.is-active .tracker-node i { position: absolute; top: 8px; width: 31px; height: 31px; border: 1px solid rgba(139,76,246,.13); border-radius: 50%; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { from { transform: scale(.7); opacity: 1; } to { transform: scale(1.35); opacity: 0; } }
.tracker-card { min-height: 138px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(17,15,21,.86); }
.tracker-item.is-done .tracker-card { border-left-color: rgba(121,214,111,.75); }
.tracker-item.is-active .tracker-card { border-color: rgba(169,114,255,.28); border-left-color: var(--purple-bright); background: linear-gradient(90deg,rgba(139,76,246,.07),rgba(17,15,21,.86)); }
.tracker-card-head { display: flex; justify-content: space-between; gap: 28px; }
.tracker-card-head > div { display: flex; align-items: baseline; gap: 17px; }
.tracker-card-head span { color: #6b6570; font-family: monospace; font-size: 9px; }
.tracker-card-head h2 { margin: 0; font-size: 16px; letter-spacing: -.02em; }
.tracker-card-head > b { align-self: start; padding: 4px 7px; border: 1px solid #28252c; border-radius: 3px; color: #5f5a64; font-family: monospace; font-size: 8px; font-weight: 400; }
.tracker-item.is-done .tracker-card-head > b { border-color: rgba(121,214,111,.14); color: #76a971; }
.tracker-item.is-active .tracker-card-head > b { border-color: rgba(169,114,255,.22); color: var(--purple-soft); }
.tracker-card > p { max-width: 720px; margin: 13px 0 8px 39px; color: #77727d; font-family: monospace; font-size: 11px; line-height: 1.65; }
.tracker-card time { margin-left: 39px; color: #44414a; font-family: monospace; font-size: 9px; }
.tracker-item.is-active .tracker-card time { color: #6d5f82; }
.tracker-subprogress { display: flex; align-items: center; gap: 10px; margin: 17px 0 0 39px; }
.tracker-subprogress > span { width: min(330px,78%); height: 2px; background: #29252e; }
.tracker-subprogress i { display: block; height: 100%; background: var(--purple-bright); }
.tracker-subprogress b { color: var(--purple-soft); font-family: monospace; font-size: 9px; }
.tracker-target { min-height: 240px; display: grid; grid-template-columns: .65fr 1fr auto; gap: 45px; align-items: center; margin-top: 74px; padding: 32px; border: 1px solid rgba(169,114,255,.16); border-radius: 16px; background: rgba(20,16,25,.8); }
.tracker-target > div p { margin-bottom: 7px; color: #706a77; font-family: monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.tracker-target > div strong { color: var(--purple-bright); font-size: 32px; }
.tracker-target > p { margin: 0; color: #77717e; font-size: 13px; line-height: 1.65; }
.tracker-footer { display: flex; justify-content: space-between; align-items: center; padding: 35px 0 55px; border-top: 1px solid var(--line); color: #5a555f; font-family: monospace; font-size: 9px; }
.tracker-footer img { display: block; width: 125px; filter: brightness(0) invert(1); opacity: .8; }

/* Privacy */
.legal-page { background: #0d0d10; }
.legal-main { width: min(100% - 72px, 880px); margin: 0 auto; padding: 112px 0 130px; }
.legal-main h1 { margin: 20px 0 34px; font-size: clamp(60px,8vw,102px); line-height: .9; letter-spacing: -.075em; }
.legal-intro { max-width: 770px; margin-bottom: 64px; color: #aaa6ae; font-size: 17px; line-height: 1.75; }
.legal-main section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-main h2 { margin: 0 0 14px; font-size: 25px; letter-spacing: -.035em; }
.legal-main section p { margin: 0; color: #918d96; font-size: 14px; line-height: 1.8; }
.legal-main section a { color: var(--purple-soft); text-decoration: underline; text-underline-offset: 4px; }

.reveal-pending { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 48px, 1320px); }
  .site-nav { gap: 18px; }
  .hero-panel { grid-template-columns: 1fr .9fr; padding-inline: 48px; }
  .hero h1 { font-size: clamp(56px,7.8vw,84px); }
  .manifesto-section { grid-template-columns: 40px 1fr; }
  .manifesto-copy { grid-column: 2; max-width: 520px; margin: -70px 0 60px; }
  .experience-primary { min-height: 840px; }
  .technology-wrap { gap: 65px; }
  .faq-wrap { gap: 55px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 105px 0; }
  .nav-shell { height: 72px; }
  .brand-link { width: 156px; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.025); }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: #fff; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav:not(.site-nav-legal) { display: none; position: absolute; top: 71px; left: 0; right: 0; align-items: stretch; gap: 0; padding: 15px 24px 24px; border-bottom: 1px solid var(--line); background: rgba(11,11,14,.98); box-shadow: 0 18px 35px rgba(0,0,0,.3); }
  .site-nav:not(.site-nav-legal).is-open { display: grid; }
  .site-nav:not(.site-nav-legal) a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav:not(.site-nav-legal) a::after { display: none; }
  .site-nav:not(.site-nav-legal) .language-toggle { margin-top: 16px; justify-self: start; }
  .hero { width: 100%; padding-top: 0; }
  .hero-panel { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding: 70px 36px 100px; border-radius: 0 0 34px 34px; border-left: 0; border-right: 0; }
  .hero-visual { min-height: 610px; }
  .visual-frame { inset: 0 5% 4% 5%; }
  .floating-phone { width: 34%; right: 0; }
  .hero-meta { left: 36px; right: 36px; }
  .hero-index { display: none; }
  .manifesto-section { min-height: 650px; padding-top: 100px; grid-template-columns: 1fr; align-content: center; }
  .manifesto-mark { display: none; }
  .manifesto-copy { grid-column: 1; margin: 0; }
  .section-heading, .technology-wrap, .progress-panel, .faq-wrap { grid-template-columns: 1fr; gap: 42px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 350px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: 1fr auto; gap: 20px; }
  .workflow-icon { width: 120px; height: 120px; justify-self: center; }
  .workflow-card > div:last-child { grid-column: 1 / -1; }
  .experience-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .experience-primary { grid-row: auto; min-height: 800px; }
  .experience-result { min-height: 590px; }
  .technology-copy { position: static; }
  .progress-panel { min-height: auto; }
  .tracker-target { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr auto; gap: 38px; }
  .footer-links { grid-row: 2; }
  .copyright { grid-column: 2; grid-row: 1; }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 32px, 1320px); }
  .section-pad { padding: 82px 0; }
  .site-header .shell { width: min(100% - 32px,1320px); }
  .hero-panel { padding: 60px 20px 112px; }
  .hero h1 { font-size: clamp(48px,14vw,60px); }
  .hero h1 span:first-child { font-size: .48em; margin-bottom: 12px; }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 470px; }
  .visual-frame { inset: 0 0 2%; border-radius: 24px; }
  .floating-phone { width: 43%; right: -4%; bottom: -5%; }
  .hero-meta { left: 20px; right: 20px; bottom: 28px; overflow: auto; }
  .hero-meta span { white-space: nowrap; }
  .manifesto-section { min-height: 580px; padding-top: 80px; padding-bottom: 80px; }
  .manifesto-section h2 { font-size: clamp(42px,12vw,58px); }
  .section-heading { margin-bottom: 46px; }
  .section-heading h2, .technology-copy h2, .progress-copy h2, .faq-wrap h2 { font-size: clamp(42px,12vw,58px); }
  .workflow-card { min-height: 340px; padding: 23px; }
  .experience-card { padding: 22px; border-radius: 21px; }
  .experience-card h3 { margin-top: 40px; font-size: 37px; }
  .experience-primary { min-height: 650px; }
  .device-stage { left: 4%; right: 4%; bottom: -14%; }
  .experience-result { min-height: 520px; }
  .result-visual { height: 280px; }
  .experience-intelligence { min-height: 380px; }
  .experience-intelligence h3 { font-size: 29px; }
  .technology-stack article { min-height: 230px; grid-template-columns: 35px 1fr; }
  .technology-stack article > b { display: none; }
  .technology-stack h3 { font-size: 26px; }
  .progress-panel { width: 100%; padding: 55px 20px; border-radius: 0; border-left: 0; border-right: 0; }
  .progress-preview { padding: 20px 15px; }
  .faq-list summary { min-height: 82px; font-size: 16px; }
  .closing-section { width: 100%; min-height: 570px; margin: 16px 0; padding: 62px 20px; border-radius: 0; }
  .closing-section h2 { font-size: clamp(54px,15vw,72px); }
  .closing-actions { align-items: flex-start; flex-direction: column; }
  .closing-actions > a { margin: 12px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-row: auto; flex-direction: column; gap: 14px; }
  .copyright { grid-column: 1; grid-row: auto; text-align: left; }
  .notice { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .progress-nav-status { display: none; }
  .progress-page .site-nav { margin-left: auto; }
  .site-nav-legal a { display: none; }
  .tracker-main { width: min(100% - 32px,980px); padding-top: 78px; }
  .tracker-hero h1 { font-size: clamp(47px,13vw,63px); }
  .tracker-meta { display: grid; gap: 7px; }
  .tracker-meta span:not(:last-child)::after { display: none; }
  .tracker-overview { padding: 20px 15px; }
  .tracker-stage-pills { gap: 5px; }
  .tracker-item { grid-template-columns: 30px 1fr; gap: 10px; }
  .tracker-timeline::before { left: 14px; }
  .tracker-node { padding-top: 21px; }
  .tracker-card { padding: 18px 15px; }
  .tracker-card-head > div { gap: 9px; }
  .tracker-card-head h2 { font-size: 15px; }
  .tracker-card-head > b { white-space: nowrap; }
  .tracker-card > p, .tracker-card time, .tracker-subprogress { margin-left: 0; }
  .tracker-card > p { font-size: 10px; }
  .tracker-target { padding: 25px 20px; }
  .tracker-footer { width: min(100% - 32px,980px); gap: 20px; align-items: flex-end; }
  .tracker-footer span { max-width: 160px; text-align: right; line-height: 1.5; }
  .legal-main { width: min(100% - 32px,880px); padding: 80px 0 95px; }
  .legal-main h1 { font-size: 61px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal-pending { opacity: 1; transform: none; }
}

/* App Store marketing surface — aligned to the current MatterFit iOS Figma UI. */
.app-store-home {
  --launch-ink: #12131c;
  --launch-muted: #596078;
  --launch-purple: #5b2c83;
  --launch-purple-soft: #f0e7f8;
  --launch-canvas: #f7f6fb;
  --launch-line: #dfe0ea;
  color: var(--launch-ink);
  background: #fff;
}
.app-store-home::before { display: none; }
.launch-header { border-color: rgba(18,19,28,.08); background: rgba(255,255,255,.9); }
.launch-header .brand-link img, .launch-footer .footer-logo { filter: none; }
.launch-header .site-nav { color: #45495a; }
.launch-header .site-nav a:hover, .launch-header .site-nav a:focus-visible { color: var(--launch-purple); }
.launch-header .language-toggle { border-color: var(--launch-line); background: #fff; color: var(--launch-purple); }
.launch-header .menu-toggle { border-color: var(--launch-line); background: #fff; }
.launch-header .menu-toggle span:not(.sr-only) { background: var(--launch-ink); }

.launch-hero { min-height: 860px; display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(30px,5vw,84px); align-items: center; padding-top: 72px; padding-bottom: 84px; }
.launch-copy { position: relative; z-index: 4; }
.launch-status, .launch-kicker { margin: 0 0 24px; color: var(--launch-purple); font: 700 11px/1.4 "SFMono-Regular", Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; }
.launch-status { display: flex; align-items: center; gap: 11px; }
.launch-status > span:first-child { width: 8px; height: 8px; border-radius: 999px; background: var(--launch-purple); box-shadow: 0 0 0 6px var(--launch-purple-soft); }
.launch-copy h1 { max-width: 720px; margin: 0 0 30px; color: var(--launch-ink); font-size: clamp(64px,6.3vw,104px); font-weight: 720; line-height: .94; letter-spacing: -.07em; }
.launch-copy h1 em, .product-strip h2 em, .story-heading h2 em, .trust-section h2 em, .store-section h2 em { color: var(--launch-purple); }
.launch-copy > p:not(.launch-status):not(.launch-footnote) { max-width: 590px; margin: 0 0 34px; color: var(--launch-muted); font-size: clamp(16px,1.4vw,19px); line-height: 1.7; }
.app-store-home .button-primary { background: var(--launch-purple); box-shadow: 0 16px 34px rgba(91,44,131,.18); }
.app-store-home .button-primary:hover { background: #6c3598; }
.app-store-home .button-ghost { border-color: var(--launch-line); background: #fff; color: var(--launch-ink); }
.launch-footnote { max-width: 520px; margin: 24px 0 0; color: #676d82; font-size: 12.5px; line-height: 1.6; }

.phone-orbit { position: relative; min-height: 720px; }
.phone-orbit::before { content: ""; position: absolute; inset: 8% 3% 5%; border-radius: 50%; background: radial-gradient(circle, rgba(91,44,131,.18), rgba(240,231,248,.32) 45%, transparent 72%); filter: blur(8px); }
.phone-card { position: absolute; width: clamp(220px,17vw,286px); margin: 0; overflow: hidden; border: 1px solid #d9dae4; border-radius: 39px; background: #fff; box-shadow: 0 30px 70px rgba(31,20,44,.18); }
.phone-card::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 7px solid #171821; border-radius: inherit; pointer-events: none; }
.phone-card img { display: block; width: 100%; height: auto; }
.phone-card figcaption { position: absolute; z-index: 3; left: 50%; bottom: 11px; transform: translateX(-50%); padding: 7px 12px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(18,19,28,.72); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(12px); }
.phone-left { z-index: 1; left: 0; top: 96px; transform: rotate(-7deg); }
.phone-center { z-index: 3; left: 50%; top: 4px; transform: translateX(-50%); }
.phone-right { z-index: 2; right: 0; top: 112px; transform: rotate(7deg); }

.product-strip { padding: 132px 0 138px; background: var(--launch-canvas); }
.product-strip h2, .story-heading h2, .trust-section h2, .store-section h2 { margin: 0; color: var(--launch-ink); font-size: clamp(48px,5vw,76px); font-weight: 680; line-height: 1.02; letter-spacing: -.055em; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 76px; overflow: hidden; border: 1px solid var(--launch-line); border-radius: 28px; background: var(--launch-line); }
.product-grid article { min-height: 410px; display: flex; flex-direction: column; padding: 32px; background: #fff; }
.product-number { color: #969aab; font: 700 10px/1 "SFMono-Regular", Consolas, monospace; letter-spacing: .12em; }
.product-glyph { width: 66px; height: 66px; display: grid; place-items: center; margin: 64px 0 auto; border: 1px solid var(--launch-line); border-radius: 20px; color: var(--launch-ink); font-size: 31px; }
.product-glyph.is-purple { border-color: var(--launch-purple); background: var(--launch-purple); color: #fff; box-shadow: 0 16px 32px rgba(91,44,131,.2); }
.product-grid h3 { margin: 38px 0 12px; font-size: 25px; letter-spacing: -.035em; }
.product-grid p { margin: 0; color: var(--launch-muted); font-size: 14px; line-height: 1.65; }

.story-section { padding-top: 150px; padding-bottom: 150px; }
.story-heading { max-width: 860px; margin-bottom: 112px; }
.story-row { min-height: 620px; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px,10vw,150px); align-items: center; padding: 78px clamp(32px,5vw,76px); border-top: 1px solid var(--launch-line); }
.story-row:last-child { border-bottom: 1px solid var(--launch-line); }
.story-row.is-reversed .story-device { order: 2; }
.story-device { position: relative; width: min(100%,330px); justify-self: center; overflow: hidden; border: 7px solid #171821; border-radius: 44px; background: #fff; box-shadow: 0 30px 72px rgba(31,20,44,.16); }
.story-device img { display: block; width: 100%; height: auto; }
.story-copy > span { color: var(--launch-purple); font: 700 10px/1 "SFMono-Regular", Consolas, monospace; letter-spacing: .15em; }
.story-copy h3 { margin: 26px 0 18px; font-size: clamp(38px,4vw,60px); line-height: 1.02; letter-spacing: -.055em; }
.story-copy p { max-width: 540px; margin: 0; color: var(--launch-muted); font-size: 16px; line-height: 1.75; }

.trust-section { padding: 142px 0; background: var(--launch-purple); }
.trust-section .launch-kicker, .trust-section h2, .trust-section h2 em { color: #fff; }
.trust-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px,10vw,150px); }
.trust-points { border-top: 1px solid rgba(255,255,255,.3); }
.trust-points article { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.trust-points article > span { color: rgba(255,255,255,.65); font: 700 10px/1.6 "SFMono-Regular", Consolas, monospace; }
.trust-points h3 { margin: 0 0 8px; color: #fff; font-size: 22px; }
.trust-points p { max-width: 560px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; }

.store-section { min-height: 530px; display: grid; grid-template-columns: 140px 1fr auto; gap: clamp(32px,5vw,72px); align-items: center; margin-top: 28px; margin-bottom: 28px; padding: 74px; overflow: hidden; border-radius: 36px; background: #17151d; color: #fff; }
.store-section::before { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; border-radius: 50%; background: rgba(91,44,131,.35); filter: blur(60px); }
.store-section > * { position: relative; z-index: 1; }
.store-mark img { width: 124px; height: 124px; display: block; padding: 24px; border-radius: 29px; background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.32); }
.store-section .launch-kicker { color: #d8c1ff; }
.store-section h2, .store-section h2 em { color: #fff; }
.store-section p:not(.launch-kicker) { max-width: 650px; margin: 25px 0 0; color: #aaa7b0; line-height: 1.7; }
.store-actions { display: flex; flex-direction: column; align-items: stretch; gap: 18px; min-width: 170px; text-align: center; }
.store-actions > a { color: #d8c1ff; font-size: 13px; }
.launch-footer { border-top: 1px solid var(--launch-line); background: #fff; color: var(--launch-ink); }
.launch-footer .footer-links, .launch-footer .copyright, .launch-footer p { color: var(--launch-muted); }

.legal-page { color: #12131c; background: #f7f6fb; }
.legal-page::before { display: none; }
.legal-page .legal-main { color: #12131c; }
.legal-page .legal-main h1, .legal-page .legal-main h2 { color: #12131c; }
.legal-page .legal-main > section { border-color: #dfe0ea; }
.legal-page .legal-main > section p, .legal-page .legal-intro { color: #596078; }
.legal-page .legal-main a { color: #5b2c83; }
.legal-page .section-kicker, .legal-page em { color: #5b2c83; }
.legal-page .legal-main > section p { max-width: 740px; }
.support-contact { padding: 32px !important; border: 1px solid #dfe0ea !important; border-radius: 22px; background: #fff; }
.support-contact .button { color: #fff !important; text-decoration: none; }
.app-store-home .reveal-pending, .legal-page .reveal-pending { opacity: 1; transform: none; transition: none; }

@media (max-width: 1100px) {
  .launch-hero { grid-template-columns: 1fr; padding-top: 96px; }
  .launch-copy { max-width: 780px; }
  .phone-orbit { width: min(100%,780px); min-height: 670px; margin-inline: auto; }
  .phone-card { width: 255px; }
  .store-section { grid-template-columns: 110px 1fr; }
  .store-mark img { width: 100px; height: 100px; }
  .store-actions { grid-column: 2; flex-direction: row; align-items: center; }
}

@media (max-width: 760px) {
  .launch-hero { min-height: auto; padding-top: 46px; padding-bottom: 52px; }
  .launch-copy h1 { margin-bottom: 22px; font-size: clamp(52px,14.4vw,68px); }
  .launch-copy > p:not(.launch-status):not(.launch-footnote) { margin-bottom: 24px; }
  .launch-status { margin-bottom: 18px; }
  .launch-footnote { display: none; }
  .launch-copy .hero-actions { align-items: stretch; }
  .launch-copy .hero-actions .button { width: 100%; }
  .phone-orbit { min-height: 460px; }
  .phone-card { width: 47%; border-radius: 26px; }
  .phone-card::before { border-width: 4px; }
  .phone-center { width: 52%; }
  .phone-left { top: 75px; }
  .phone-right { top: 82px; }
  .product-strip, .story-section, .trust-section { padding-top: 74px; padding-bottom: 84px; }
  .launch-status { font-size: 9.5px; letter-spacing: .08em; }
  .menu-toggle span:not(.sr-only) { width: 21px; height: 2px; }
  .product-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .product-grid article { min-height: 330px; }
  .product-glyph { margin-top: 48px; }
  .story-heading { margin-bottom: 58px; }
  .story-row, .story-row.is-reversed { min-height: auto; grid-template-columns: 1fr; gap: 50px; padding: 58px 0; }
  .story-row.is-reversed .story-device { order: initial; }
  .story-device { width: min(76vw,300px); }
  .trust-grid { grid-template-columns: 1fr; gap: 52px; }
  .store-section { width: 100%; grid-template-columns: 1fr; margin-bottom: 0; padding: 58px 24px; border-radius: 0; }
  .store-section::before { display: none; }
  .store-mark img { width: 92px; height: 92px; }
  .store-actions { grid-column: auto; flex-direction: column; align-items: stretch; }
}
