@font-face {
  font-family: "SlothSystem";
  src: local("SF Pro Display"), local("SF Pro Text"), local("Inter");
}

:root {
  color-scheme: dark;
  --ink: #f7f5ff;
  --muted: #a9a4b7;
  --dim: #6c6579;
  --ground: #0a0514;
  --ground-2: #150824;
  --violet: #9b6dff;
  --violet-bright: #c2a5ff;
  --line: rgba(239, 232, 255, .13);
  --glass: rgba(20, 14, 35, .58);
  --display: "SlothSystem", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ground); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(70% 48% at 50% -12%, rgba(104, 53, 219, .22), transparent 72%),
    radial-gradient(50% 40% at 92% 48%, rgba(46, 18, 98, .16), transparent 74%),
    linear-gradient(125deg, #0a0514, #150824 54%, #0a0514);
}
.ambient::before,
.ambient::after {
  position: absolute;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  content: "";
  filter: blur(80px);
  opacity: .25;
}
.ambient::before { top: -28rem; left: -21rem; background: #5830a6; }
.ambient::after { right: -28rem; bottom: -32rem; background: #31105e; }

.site-nav {
  position: fixed;
  z-index: 40;
  top: 12px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(18, 17, 25, .72);
  box-shadow: 0 12px 34px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.13);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transform: translateX(-50%);
}
.site-nav::after {
  position: absolute;
  right: 17px;
  bottom: -1px;
  left: 17px;
  height: 1px;
  content: "";
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--violet-bright), transparent);
}
.nav-brand { display: inline-flex; align-items: center; gap: 9px; min-width: 170px; font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.nav-logo { width: 29px; height: 29px; object-fit: contain; filter: grayscale(1) saturate(.08) contrast(1.12) brightness(1.32); }
.nav-menu-button { display: grid; width: 38px; height: 38px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: rgba(255,255,255,.055); color: #fff; cursor: pointer; transition: background .24s ease, transform .3s ease, border-color .24s ease; }
.nav-menu-button:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.11); }
.nav-menu-icon { position: relative; display: block; width: 15px; height: 12px; }
.nav-menu-icon::before, .nav-menu-icon::after { position: absolute; left: 0; width: 15px; height: 1.5px; border-radius: 2px; content: ""; background: currentColor; transition: transform .32s cubic-bezier(.2,.8,.2,1), top .32s cubic-bezier(.2,.8,.2,1); }
.nav-menu-icon::before { top: 3px; }
.nav-menu-icon::after { top: 9px; }
.nav-menu-button[aria-expanded="true"] .nav-menu-icon::before { top: 6px; transform: rotate(45deg); }
.nav-menu-button[aria-expanded="true"] .nav-menu-icon::after { top: 6px; transform: rotate(-45deg); }
.nav-menu-button[aria-expanded="true"] { border-color: rgba(202,179,255,.45); background: rgba(142,91,255,.18); transform: rotate(90deg); }
.menu-backdrop { position: fixed; z-index: 30; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; background: rgba(4,4,9,.45); backdrop-filter: blur(17px) saturate(120%); -webkit-backdrop-filter: blur(17px) saturate(120%); transition: opacity .36s ease, visibility 0s linear .36s; }
.menu-panel { position: fixed; z-index: 35; top: 78px; left: 50%; width: min(940px, calc(100% - 34px)); max-height: calc(100svh - 96px); overflow: auto; padding: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 29px; background: rgba(10,10,19,.82); box-shadow: 0 28px 80px rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.12); backdrop-filter: saturate(180%) blur(28px); -webkit-backdrop-filter: saturate(180%) blur(28px); opacity: 0; pointer-events: none; transform: translate(-50%, -17px) scale(.985); transition: opacity .32s ease, transform .42s cubic-bezier(.2,.8,.2,1); }
body.menu-open { overflow: hidden; }
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
body.menu-open .menu-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
.menu-grid { display: grid; grid-template-columns: 1.08fr 1fr 1fr; gap: 38px 58px; }
.menu-label { display: block; margin-bottom: 15px; color: #9892a4; font-size: 12px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; }
.menu-list { display: grid; gap: 13px; }
.menu-list a { color: #e1dde8; font-size: clamp(22px, 2.2vw, 30px); font-weight: 350; letter-spacing: -.035em; transition: color .2s ease, transform .2s ease; }
.menu-list a:hover { color: #fff; transform: translateX(4px); }
.menu-products { grid-column: auto; }
.menu-product-list { display: grid; grid-template-columns: 1fr; gap: 15px; }
.menu-product { display: flex; align-items: center; gap: 12px; color: #e5e1ea; font-size: 22px; font-weight: 370; letter-spacing: -.035em; }
.menu-product img { width: 33px; height: 33px; border: 1px solid rgba(204,172,255,.4); border-radius: 10px; object-fit: cover; background: #140d22; box-shadow: 0 0 16px rgba(136,77,255,.17); }

.hero {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { display: none; }
.hero-inner { display: grid; width: 100%; height: 100%; min-height: 0; place-items: center; padding: 82px 24px 104px; text-align: center; }
.hero-lockup { display: flex; width: min(100%, 760px); flex-direction: column; align-items: center; justify-content: center; }
.craft-label { margin: 0 0 18px; color: #cdc5dc; font-size: clamp(15px, 1.35vw, 21px); font-weight: 650; letter-spacing: clamp(.22em, .42vw, .32em); text-indent: .32em; text-transform: uppercase; animation: reveal .82s cubic-bezier(.2,.7,.2,1) both; }
.mark-stage { position: relative; display: grid; width: clamp(190px, 19vw, 250px); aspect-ratio: 1; place-items: center; }
.hero-mark { position: absolute; z-index: 1; width: 100%; max-width: none; filter: grayscale(1) saturate(.08) contrast(1.12) brightness(1.18); animation: mark-arrive 1.15s cubic-bezier(.16,1,.3,1) .08s both, mark-sheen 10.5s ease-in-out 1.5s infinite; }
.hero-wordmark { position: relative; z-index: 1; display: grid; width: 100%; gap: 0; margin: -4px 0 0; font-size: clamp(72px, 10.6vw, 136px); font-weight: 800; letter-spacing: -.05em; line-height: 1; text-align: center; text-transform: uppercase; animation: reveal .9s cubic-bezier(.2,.7,.2,1) .16s both; }
.hero-wordmark span { display: block; background: linear-gradient(90deg, #8b8992 0%, #d6d4db 22%, #f9f9fb 42%, #a8a6ae 50%, #fdfdfe 58%, #b8b5be 74%, #8f8c96 100%); background-size: 230% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 3px 8px rgba(255,255,255,.04)); animation: wordmark-reflection 10.5s cubic-bezier(.25,.1,.25,1) 1.5s infinite; }
.statement { position: absolute; right: 20px; bottom: clamp(18px, 3svh, 34px); left: 20px; display: flex; align-items: baseline; justify-content: center; gap: clamp(9px, 1.25vw, 16px); margin: 0; font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; line-height: 1.18; letter-spacing: .025em; white-space: nowrap; }
.statement span { display: inline-block; animation: statement-in .74s cubic-bezier(.2,.8,.2,1) both; }
.statement .minimal { color: #b4b0bf; font-weight: 300; animation-delay: .28s; }
.statement .powerful { color: #fff; font-weight: 650; animation-delay: .43s; }
.statement .rich { font-weight: 650; background: linear-gradient(100deg, #8d56f4 0%, #d2baff 27%, #7740df 50%, #b28eff 72%, #8d56f4 100%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: statement-in .62s cubic-bezier(.2,.8,.2,1) .51s both, rich-shimmer 3.2s linear .95s infinite; }

.section { position: relative; width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: clamp(92px, 14vw, 180px) 0; }
.eyebrow { margin: 0 0 18px; color: var(--violet-bright); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.section > .eyebrow, .section-title, .section-intro { text-align: center; }
.section-title { max-width: 13ch; margin: 0 auto; font-size: clamp(42px, 6vw, 82px); font-weight: 570; letter-spacing: -.065em; line-height: .97; }
.section-intro { max-width: 40rem; margin: 28px auto 0; color: var(--muted); font-size: clamp(18px, 2vw, 24px); font-weight: 350; letter-spacing: -.025em; line-height: 1.33; }

.product-rail { position: relative; display: grid; gap: 17px; margin-top: 72px; }
.product-card { position: relative; display: grid; min-height: 380px; grid-template-columns: minmax(210px, .8fr) 1.15fr auto; align-items: center; gap: clamp(24px, 4vw, 55px); overflow: hidden; padding: clamp(25px, 4vw, 54px); border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(118deg, rgba(255,255,255,.09), rgba(255,255,255,.025) 43%, rgba(116,66,229,.1)); box-shadow: inset 0 1px rgba(255,255,255,.12), 0 28px 70px rgba(0,0,0,.14); opacity: .34; text-align: center; transform: translate3d(var(--card-shift, 0), 45px, 0) scale(.975); transition: opacity .72s ease, transform .85s cubic-bezier(.22,1,.36,1), border-color .72s ease, background .72s ease; }
.product-card::before { position: absolute; inset: auto -15% -100% 30%; height: 250px; border-radius: 50%; content: ""; background: var(--product-glow, rgba(137,88,255,.2)); filter: blur(32px); opacity: .68; transition: transform 1.1s ease; }
.product-card.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); border-color: rgba(211,195,255,.32); }
.product-card.is-visible::before { transform: translateY(-40px); }
.product-media { position: relative; z-index: 1; height: min(300px, 25vw); min-height: 230px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: #090713; box-shadow: 0 24px 45px rgba(0,0,0,.27), inset 0 1px rgba(255,255,255,.12); }
.product-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(145deg, rgba(255,255,255,.14), transparent 19%, transparent 70%, rgba(74,36,145,.24)); pointer-events: none; }
.product-view, .product-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-view { opacity: 0; transform: scale(1.07); transition: opacity .85s ease, transform 5.7s ease; }
.product-view.is-active { opacity: 1; transform: scale(1); }
.product-view.is-leaving { opacity: 0; transform: scale(.98); }
.product-view-label { position: absolute; z-index: 2; right: 14px; bottom: 12px; left: 14px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 650; letter-spacing: .18em; text-shadow: 0 1px 4px rgba(0,0,0,.6); text-transform: uppercase; }
.roomradr-view { position: absolute; inset: 0; display: grid; padding: 18px; color: #e9e6f1; background: radial-gradient(circle at 65% 12%, rgba(133,93,255,.35), transparent 35%), linear-gradient(145deg, #171125, #0a0912); }
.roomradr-view img { width: 42px; height: 42px; border-radius: 13px; }
.roomradr-view strong { align-self: end; max-width: 11ch; font-size: clamp(25px, 3vw, 42px); font-weight: 470; letter-spacing: -.058em; line-height: .9; }
.roomradr-view small { align-self: end; color: #bdb3d1; font-size: 12px; letter-spacing: .08em; }
.roomradr-view.is-refreshing strong, .roomradr-view.is-refreshing small { animation: room-copy .58s cubic-bezier(.2,.8,.2,1); }
.product-name { position: relative; margin: 0; font-size: clamp(36px, 5vw, 70px); font-weight: 580; letter-spacing: -.065em; line-height: .9; }
.product-name small { display: block; margin-top: 10px; color: var(--violet-bright); font-size: 13px; font-weight: 650; letter-spacing: .03em; }
.product-copy { position: relative; max-width: 30rem; margin: 15px 0 0; color: #bbb3c6; font-size: 17px; font-weight: 350; line-height: 1.38; }
.product-action, .button { position: relative; display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 10px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px rgba(255,255,255,.13); color: #fff; font-size: 13px; font-weight: 600; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.product-action { justify-self: center; }
.product-action:hover, .button:hover { border-color: rgba(211,190,255,.7); background: rgba(155,109,255,.23); transform: translateY(-2px); }
.product-card.padr { --product-glow: rgba(211,157,96,.30); }
.product-card.peekin { --product-glow: rgba(135,92,255,.31); --card-shift: -5px; }
.product-card.roomradr { --product-glow: rgba(91,187,230,.26); --card-shift: 5px; }
.product-card.playr { --product-glow: rgba(253,112,194,.24); --card-shift: -4px; }

.company-statement { padding-bottom: clamp(104px, 17vw, 220px); text-align: center; }
.closing-mark { display: grid; justify-items: center; gap: 32px; }
.closing-mark p { margin: 0; font-size: clamp(40px, 7.5vw, 104px); font-weight: 500; letter-spacing: -.07em; line-height: .93; }
.closing-mark a { display: grid; justify-items: center; gap: 12px; color: #ded9e6; font-size: 14px; font-weight: 620; letter-spacing: .025em; }
.closing-mark .nav-logo { width: 52px; height: 52px; }
.company-statement .silver { background: linear-gradient(165deg, #fff 5%, #bfbcc7 36%, #f7f5fb 54%, #817b91 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.page-hero { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: clamp(160px, 21vw, 250px) 0 65px; text-align: center; }
.page-kicker { margin: 0 0 18px; color: var(--violet-bright); font-size: 12px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.page-title { max-width: 13ch; margin: 0 auto; font-size: clamp(57px, 9.1vw, 138px); font-weight: 400; letter-spacing: -.052em; line-height: .9; }
.page-lede { max-width: 42rem; margin: 35px auto 0; color: #bdb6ca; font-size: clamp(19px, 2.2vw, 27px); font-weight: 330; letter-spacing: -.026em; line-height: 1.35; }
.page-detail { max-width: 44rem; margin: 19px auto 0; color: #c8c1d4; font-size: clamp(16px, 1.7vw, 21px); font-weight: 350; line-height: 1.5; }
.page-callout { display: inline-block; max-width: 44rem; margin: 28px auto 0; padding: 9px 15px; border: 1px solid rgba(194, 165, 255, .26); border-radius: 999px; background: rgba(124, 58, 237, .11); color: #dfd2ff; font-size: 13px; font-weight: 600; }
.page-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 17px; }
.panel { grid-column: span 6; min-height: 250px; padding: 32px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,.045); box-shadow: inset 0 1px rgba(255,255,255,.09); text-align: center; }
.panel.wide { grid-column: span 12; }
.panel h2, .panel h3 { margin: 0; font-size: clamp(24px, 3vw, 39px); font-weight: 570; letter-spacing: -.052em; line-height: .98; }
.panel p, .panel li { color: #bdb6c8; font-weight: 360; line-height: 1.48; }
.panel p { max-width: 44rem; margin: 19px auto 0; }
.panel ul { display: grid; gap: 8px; margin: 19px auto 0; padding: 0; list-style-position: inside; }
.panel a:not(.button) { color: #d4c4ff; text-decoration: underline; text-decoration-color: rgba(212,196,255,.38); text-underline-offset: 3px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.price-card { display: flex; min-height: 355px; flex-direction: column; justify-content: space-between; padding: 31px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.025) 55%, rgba(124,72,242,.12)); box-shadow: inset 0 1px rgba(255,255,255,.11); text-align: center; }
.price-card h2 { margin: 0; font-size: clamp(30px, 4vw, 51px); font-weight: 590; letter-spacing: -.06em; line-height: .93; }
.price-card p { margin: 18px 0; color: #c0b8cc; font-size: 17px; font-weight: 350; }
.price { margin: 0; font-size: 30px; font-weight: 560; letter-spacing: -.05em; }
.price sub { color: #978fa4; font-size: 13px; font-weight: 520; letter-spacing: 0; }
.price-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 25px; }
.app-store-link { color: #d4c4ff; font-size: 13px; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(212,196,255,.38); text-underline-offset: 4px; }

.contact-address { display: block; margin-top: 22px; color: #fff; font-size: clamp(23px, 3vw, 38px); font-weight: 520; letter-spacing: -.045em; }
.legal-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 42px; }
.legal-nav a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #cdc5d9; font-size: 13px; }
.legal-copy { max-width: 820px; margin-top: 55px; text-align: center; }
.legal-copy section + section { margin-top: 52px; }
.legal-copy h2 { margin: 0 0 14px; font-size: clamp(26px, 3.3vw, 43px); font-weight: 560; letter-spacing: -.058em; }
.legal-copy h3 { margin: 0 0 14px; font-size: clamp(22px, 2.6vw, 31px); font-weight: 560; letter-spacing: -.045em; }
.legal-copy p, .legal-copy li { color: #beb6c9; font-weight: 360; line-height: 1.55; }
.legal-copy ul { display: grid; gap: 9px; padding: 0; list-style-position: inside; }

.site-footer { width: min(1180px, calc(100% - 44px)); margin: 0 auto; padding: 0 0 42px; }
.footer-shell { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 30px; padding-top: 30px; border-top: 1px solid var(--line); text-align: center; }
.footer-title { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-size: 15px; font-weight: 620; }
.footer-legal { display: grid; justify-items: center; }
.footer-privacy-title { margin: 18px 0 0; color: #ded9e6; font-size: 15px; font-weight: 620; }
.footer-note { max-width: 27rem; margin: 8px auto 0; color: var(--dim); font-size: 13px; line-height: 1.4; }
.footer-policy-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 16px; color: #d3ccde; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(100px, 1fr)); gap: 22px; }
.footer-links strong { display: block; margin-bottom: 8px; color: #8f879d; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { display: block; margin-top: 6px; color: #d3ccdE; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-signature { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 46px; color: #aaa3b5; font-size: 12px; letter-spacing: .02em; text-align: center; }
.footer-title .nav-logo { width: 24px; height: 24px; }
.footer-signature .nav-logo { width: 20px; height: 20px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .8s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes mark-arrive { from { opacity: 0; transform: scale(.84) translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes statement-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes rich-shimmer { to { background-position: 250% 50%; } }
@keyframes room-copy { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wordmark-reflection { 0%, 11% { background-position: 128% 50%; } 39%, 48% { background-position: -28% 50%; } 100% { background-position: -28% 50%; } }
@keyframes mark-sheen { 0%, 12%, 100% { filter: grayscale(1) saturate(.08) contrast(1.12) brightness(1.18); } 27% { filter: grayscale(1) saturate(.08) contrast(1.16) brightness(1.34); } 43% { filter: grayscale(1) saturate(.08) contrast(1.13) brightness(1.22); } }
@keyframes breath { 50% { opacity: .72; transform: scale(1.08); } }
@keyframes bloom { 50% { opacity: .76; transform: scale(1.08); } }
@keyframes cue-in { from { opacity: 0; transform: translate(-50%, 9px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes nudge { 50% { transform: translateY(4px) rotate(45deg); } }

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

@media (min-width: 761px) and (max-height: 760px) {
  .hero-inner { padding: 72px 24px 76px; }
  .hero-lockup { transform: translateY(-7px); }
  .craft-label { margin-bottom: 10px; font-size: 13px; }
  .mark-stage { width: clamp(138px, 22vh, 170px); }
  .hero-wordmark { margin-top: -2px; font-size: clamp(70px, 15vh, 104px); }
  .statement { bottom: 19px; font-size: clamp(20px, 2vw, 28px); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-nav { height: 53px; top: 10px; width: calc(100% - 18px); border-radius: 17px; }
  .nav-brand { min-width: auto; font-size: 12px; }
  .menu-panel { top: 72px; width: calc(100% - 18px); max-height: calc(100svh - 84px); padding: 26px 24px; border-radius: 24px; }
  .menu-grid { grid-template-columns: 1fr; gap: 29px; }
  .menu-list { gap: 12px; }
  .menu-list a { font-size: 24px; }
  .menu-product-list { grid-template-columns: 1fr; gap: 14px; }
  .menu-product { font-size: 21px; }
  .hero { height: 100svh; min-height: 100svh; }
  .hero-inner { padding: 78px 18px 94px; }
  .mark-stage { width: min(51vw, 250px); }
  .hero-wordmark { margin: -3px 0 0; font-size: clamp(57px, 16vw, 76px); }
  .statement { bottom: 58px; gap: 7px; font-size: clamp(18px, 5.6vw, 24px); }
  .section, .page-hero, .site-footer { width: min(100% - 30px, 1180px); }
  .product-card { min-height: 0; grid-template-columns: 1fr; gap: 22px; padding: 27px; }
  .product-media { height: min(72vw, 340px); min-height: 0; }
  .product-action { justify-self: start; }
  .page-grid, .pricing-grid { grid-template-columns: 1fr; }
  .panel, .panel.wide { grid-column: 1; min-height: auto; padding: 26px; }
  .price-card { min-height: 310px; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

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