:root {
  --bg: #070914;
  --bg-soft: #0b0e1c;
  --panel: rgba(255,255,255,.055);
  --panel-strong: #111426;
  --line: rgba(255,255,255,.12);
  --text: #f7f7fb;
  --muted: #a8acc1;
  --purple: #8a5cff;
  --purple-bright: #a985ff;
  --blue: #5ce1ff;
  --pink: #ec5bff;
  --max: 1240px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(87,42,170,.17), transparent 28%),
    radial-gradient(circle at 8% 35%, rgba(31,107,171,.11), transparent 25%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { color: inherit; }

.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 99; background: white; color: black; padding: .8rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(calc(100% - 32px), var(--max));
  height: 72px;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px 0 20px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: .25s ease;
}
.site-header.scrolled { background: rgba(7,9,20,.78); border-color: var(--line); backdrop-filter: blur(18px); box-shadow: 0 14px 60px rgba(0,0,0,.3); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .14em; }
.brand-mark { width: 27px; aspect-ratio: 1; border: 2px solid var(--purple-bright); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 22px rgba(138,92,255,.45); }
.brand-mark span { width: 9px; aspect-ratio: 1; border-radius: 50%; background: white; box-shadow: 0 0 12px var(--blue); }
.desktop-nav { display: flex; gap: 24px; color: var(--muted); font-size: .92rem; }
.desktop-nav a:hover { color: white; }
.site-header > .button { justify-self: end; }

.button { border: 1px solid var(--line); border-radius: 999px; min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-solid { border-color: transparent; background: linear-gradient(135deg, #985dff, #5a61ff 55%, #16bbdf); box-shadow: 0 12px 35px rgba(89,77,255,.25); }
.button-solid:hover { box-shadow: 0 16px 45px rgba(89,77,255,.42); }
.button-ghost { background: rgba(255,255,255,.035); }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }
.button-wide { width: 100%; }

.hero { min-height: 100vh; width: min(calc(100% - 40px), 1400px); margin: 0 auto; padding: 126px max(24px, 4vw) 60px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.05fr); align-items: center; gap: clamp(35px, 6vw, 90px); position: relative; }
.hero-copy { position: relative; z-index: 3; max-width: 640px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--purple-bright); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(4.5rem, 9.8vw, 9rem); line-height: .86; letter-spacing: -.065em; }
.hero-lede { max-width: 610px; margin: 30px 0 0; color: #c7c9d8; font-size: clamp(1.05rem, 1.65vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.purchase-line { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; color: var(--muted); font-size: .84rem; }
.purchase-line .price { color: white; font-weight: 700; font-size: 1rem; }
.purchase-divider { width: 3px; height: 3px; background: #5c6075; border-radius: 50%; }
.hero-product { position: relative; min-height: 720px; display: grid; place-items: center; padding: 24px; }
.hero-product img { width: min(100%, 640px); max-width: 100%; height: auto; max-height: min(76vh, 820px); object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 40px 80px rgba(0,0,0,.55)); }
.orbit { position: absolute; border: 1px solid rgba(138,92,255,.24); border-radius: 50%; }
.orbit-one { width: 82%; aspect-ratio: 1; transform: rotate(17deg); }
.orbit-two { width: 62%; aspect-ratio: 1; border-color: rgba(92,225,255,.17); transform: rotate(-24deg); }
.floating-label { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 10px 14px; color: #d9dbea; background: rgba(10,13,27,.72); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 999px; font-size: .77rem; box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.floating-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.label-one { top: 25%; left: 0; }
.label-two { right: 0; bottom: 28%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .32; }
.hero-glow-one { width: 420px; height: 420px; right: 5%; top: 25%; background: #5837ff; }
.hero-glow-two { width: 250px; height: 250px; right: 35%; bottom: 15%; background: #00b7d8; opacity: .18; }

.section-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.statement { padding: 150px 0; text-align: center; max-width: 980px; }
.statement h2, .section-heading h2, .details h2, .buy-section h2 { margin: 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(2.5rem, 5.3vw, 5.25rem); line-height: 1.02; letter-spacing: -.045em; }
.statement > p:last-child { max-width: 720px; margin: 28px auto 0; color: var(--muted); font-size: 1.1rem; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; max-width: 620px; }

.experience { padding: 70px 0 120px; }
.experience-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: auto auto; gap: 18px; }
.feature-panel { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); min-height: 370px; }
.feature-panel-large { grid-row: span 2; min-height: 780px; }
.feature-panel img { width: 100%; height: 100%; object-fit: cover; }
.feature-panel-large img { object-position: center top; }
.feature-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,7,15,.88)); pointer-events: none; }
.feature-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; display: flex; gap: 20px; align-items: flex-start; }
.feature-overlay.compact { left: 22px; bottom: 22px; }
.feature-number { color: var(--purple-bright); font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: .78rem; letter-spacing: .1em; }
.feature-overlay h3, .feature-copy-card h3 { margin: 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.55rem; line-height: 1.15; }
.feature-overlay p, .feature-copy-card p { margin: 8px 0 0; color: #bdc0cf; }
.feature-copy-card { height: 100%; min-height: 370px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 75% 25%, rgba(138,92,255,.22), transparent 35%), linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); }
.signal-icon { width: 130px; height: 130px; margin: 15px auto; position: relative; display: grid; place-items: center; }
.signal-icon::before { content: ""; width: 28px; height: 28px; background: white; border-radius: 50%; box-shadow: 0 0 22px var(--purple-bright); position: absolute; z-index: 2; }
.signal-icon i { position: absolute; border: 1px solid rgba(169,133,255,.45); border-radius: 50%; animation: pulse-ring 3.5s infinite ease-out; }
.signal-icon i:nth-child(1) { width: 54px; height: 54px; }
.signal-icon i:nth-child(2) { width: 90px; height: 90px; animation-delay: .35s; }
.signal-icon i:nth-child(3) { width: 126px; height: 126px; animation-delay: .7s; }
@keyframes pulse-ring { 0%,100% { opacity: .35; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.04); } }

.details { padding: 120px 0; display: grid; grid-template-columns: 1fr .82fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.details-copy > p:not(.section-kicker) { color: var(--muted); font-size: 1.08rem; max-width: 650px; }
.detail-points { margin-top: 36px; display: grid; gap: 18px; }
.detail-points div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.detail-points strong { font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; }
.detail-points span { color: var(--muted); }
.prototype-card { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); transform: rotate(2deg); }
.prototype-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.prototype-card figcaption { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--line); background: rgba(5,7,15,.76); backdrop-filter: blur(10px); border-radius: 999px; font-size: .82rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #56f39d; box-shadow: 0 0 12px #56f39d; }


/* BadgeForge desktop and mobile roadmap */
.software { padding: 100px 0 125px; }
.software-heading { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: clamp(30px, 6vw, 90px); margin-bottom: 44px; }
.software-heading h2 { margin: 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(2.7rem, 5.5vw, 5.4rem); line-height: 1.01; letter-spacing: -.05em; }
.software-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.software-showcase { padding: 18px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
.software-window { overflow: hidden; border: 1px solid rgba(92,225,255,.16); border-radius: 20px; background: #050810; }
.software-window img { width: 100%; height: auto; display: block; }
.software-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 16px; }
.software-capabilities > div { min-height: 158px; display: flex; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(6,9,19,.72); }
.software-capabilities span { color: #58f2a6; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.software-capabilities strong { margin-top: auto; font-size: 1.03rem; }
.software-capabilities small { margin-top: 7px; color: var(--muted); line-height: 1.45; }
.app-roadmap { margin-top: 22px; display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 14px; }
.roadmap-intro, .roadmap-card { min-height: 290px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.012)); }
.roadmap-intro { padding: 30px; background: radial-gradient(circle at 85% 18%, rgba(84,242,166,.14), transparent 34%), linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.012)); }
.roadmap-intro h3, .roadmap-card h3 { margin: 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; }
.roadmap-intro h3 { font-size: clamp(2rem, 3.3vw, 3.5rem); letter-spacing: -.04em; }
.roadmap-intro p:not(.section-kicker) { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.roadmap-intro small { color: #777d94; line-height: 1.5; }
.roadmap-card { padding: 26px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 75% 25%, rgba(138,92,255,.18), transparent 40%), linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.012)); }
.roadmap-card h3 { margin-top: 7px; font-size: 1.8rem; }
.roadmap-card p { color: var(--muted); line-height: 1.55; }
.roadmap-status { display: inline-flex; width: max-content; padding: 7px 10px; border: 1px solid rgba(92,225,255,.25); border-radius: 999px; color: var(--blue); background: rgba(92,225,255,.07); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.platform-icon { width: 76px; height: 76px; position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(6,9,19,.7); box-shadow: inset 0 0 28px rgba(138,92,255,.12); }
.phone-icon::before { content: ""; position: absolute; inset: 15px 22px; border: 3px solid #f7f7fb; border-radius: 10px; }
.phone-icon::after { content: ""; position: absolute; left: 50%; bottom: 19px; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: var(--blue); }
.android-icon::before { content: ""; position: absolute; width: 38px; height: 30px; left: 18px; top: 25px; border-radius: 14px 14px 9px 9px; background: #58f2a6; }
.android-icon::after { content: ""; position: absolute; width: 30px; height: 14px; left: 22px; top: 17px; border: 3px solid #58f2a6; border-bottom: 0; border-radius: 18px 18px 0 0; }
.android-icon span::before, .android-icon span::after { content: ""; position: absolute; top: 14px; width: 3px; height: 13px; border-radius: 3px; background: #58f2a6; }
.android-icon span::before { left: 24px; transform: rotate(-30deg); }
.android-icon span::after { right: 24px; transform: rotate(30deg); }


.gallery { padding: 80px 0 120px; }
.gallery-layout { display: grid; grid-template-columns: 1fr 150px; gap: 18px; }
.gallery-stage { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #0d1020; min-height: 680px; display: grid; place-items: center; padding: 24px; }
.gallery-stage img { width: 100%; height: auto; max-height: 850px; object-fit: contain; transition: opacity .2s ease, transform .2s ease; }
.gallery-stage img.changing { opacity: .25; transform: scale(.985); }
.gallery-thumbs { display: grid; grid-template-rows: repeat(5, 1fr); gap: 12px; }
.thumb { padding: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #0e1120; cursor: pointer; opacity: .6; transition: .2s ease; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--purple-bright); box-shadow: 0 0 0 2px rgba(138,92,255,.12); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.specs { padding: 110px 0; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 14px; align-items: stretch; }
.spec-card { min-height: 180px; padding: 24px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); display: flex; flex-direction: column; justify-content: space-between; }
.spec-card span { color: var(--purple-bright); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.spec-card strong { font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.45rem; }
.spec-card small { color: var(--muted); }
.spec-note { color: #7f849b; font-size: .83rem; margin-top: 18px; }

.buy-section { margin-top: 80px; margin-bottom: 130px; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--line); border-radius: 36px; background:
  radial-gradient(circle at 78% 22%, rgba(95,63,255,.28), transparent 30%),
  radial-gradient(circle at 15% 90%, rgba(0,195,225,.14), transparent 24%),
  linear-gradient(135deg, #111427, #090b16);
  overflow: hidden;
}
.buy-copy { max-width: 900px; margin-bottom: 36px; }
.buy-copy p:last-child { color: var(--muted); max-width: 820px; font-size: 1.05rem; }
.buy-copy strong { color: white; }
.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.offer-card { position: relative; display: grid; grid-template-columns: minmax(180px, .8fr) 1fr; min-height: 390px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: rgba(5,7,16,.72); backdrop-filter: blur(14px); }
.offer-card-featured { border-color: rgba(138,92,255,.65); box-shadow: 0 24px 70px rgba(76,48,199,.24); }
.offer-image { min-height: 100%; background: #f4f2f1; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-content { display: flex; flex-direction: column; padding: 28px; }
.offer-label { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offer-content h3 { margin: 8px 0 10px; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.05; }
.offer-content p { margin: 0; color: var(--muted); line-height: 1.55; }
.offer-price { margin: auto 0 22px; padding-top: 22px; display: flex; align-items: end; gap: 10px; }
.offer-price strong { font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(2.6rem, 4vw, 4rem); line-height: .95; }
.offer-price small { padding-bottom: 6px; color: var(--muted); }
.best-value { position: absolute; z-index: 4; top: 16px; right: 16px; padding: 8px 12px; border-radius: 999px; background: linear-gradient(135deg, #985dff, #16bbdf); color: white; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(89,77,255,.3); }
.checkout-note { margin: 20px 0 0; text-align: center; color: var(--muted); font-size: .82rem; }

.faq { padding: 40px 0 130px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0 4px; }
summary { list-style: none; cursor: pointer; padding: 25px 0; font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.15rem; position: relative; padding-right: 42px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; font-size: 1.5rem; color: var(--purple-bright); transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); max-width: 780px; margin: -5px 0 26px; }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 35px 0 45px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--muted); font-size: .88rem; }
.site-footer p { margin: 0; }
.footer-brand { color: white; }
.site-footer > div { justify-self: end; display: flex; gap: 22px; }
.site-footer a:hover { color: white; }
.footer-order { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.footer-order:hover { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 155px; }
  .hero-copy { max-width: 760px; }
  .hero-product { min-height: 620px; margin-top: -20px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .feature-panel-large { grid-column: 1 / -1; grid-row: auto; min-height: 650px; }
  .details { grid-template-columns: 1fr; }
  .prototype-card { max-width: 650px; margin: 0 auto; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-image { min-height: 290px; }
}

@media (max-width: 720px) {
  .site-header { top: 8px; width: calc(100% - 16px); height: 62px; border-radius: 18px; background: rgba(7,9,20,.78); border-color: var(--line); backdrop-filter: blur(18px); }
  .site-header > .button { display: none; }
  .hero { width: 100%; padding: 115px 20px 40px; min-height: auto; }
  .hero h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-product { min-height: 440px; margin-top: 0; padding: 10px; }
  .hero-product img { max-height: 460px; width: min(100%, 440px); }
  .floating-label { display: none; }
  .statement { padding: 100px 0; }
  .experience-grid { grid-template-columns: 1fr; }
  .feature-panel-large { grid-column: auto; min-height: 540px; }
  .feature-panel { min-height: 410px; }
  .detail-points div { grid-template-columns: 1fr; gap: 5px; }
  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-stage { min-height: 480px; }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); grid-template-rows: 82px; }
  .spec-grid { grid-template-columns: 1fr; }
  .buy-section { padding: 32px 22px; border-radius: 26px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; min-height: auto; }
  .offer-image { min-height: 280px; max-height: 360px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
  .site-footer > div { justify-self: center; }
}


@media (max-width: 1060px) {
  .software-heading { grid-template-columns: 1fr; align-items: start; }
  .software-heading > p { max-width: 760px; }
  .software-capabilities { grid-template-columns: repeat(2, 1fr); }
  .app-roadmap { grid-template-columns: 1fr 1fr; }
  .roadmap-intro { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .software { padding: 80px 0 100px; }
  .software-showcase { padding: 8px; border-radius: 22px; }
  .software-window { border-radius: 15px; overflow-x: auto; }
  .software-window img { width: 940px; max-width: none; }
  .software-capabilities { grid-template-columns: 1fr; }
  .software-capabilities > div { min-height: 135px; }
  .app-roadmap { grid-template-columns: 1fr; }
  .roadmap-intro { grid-column: auto; }
  .roadmap-intro, .roadmap-card { min-height: auto; }
  .roadmap-card { gap: 28px; }
}

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

.platform-logo-wrap { width: 100%; min-height: 110px; display: flex; align-items: center; justify-content: center; padding: 6px 0 2px; }
.platform-logo { width: min(100%, 180px); max-height: 98px; object-fit: contain; display: block; filter: drop-shadow(0 12px 22px rgba(0,0,0,.35)); }
.apple-logo { max-height: 110px; }
.software-window img { width: 100%; height: auto; display: block; }
