@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-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:hover, .button:hover { border-color: rgba(211,190,255,.7); background: rgba(155,109,255,.23); transform: translateY(-2px); }

/* The app catalogue stays readable without motion or an interaction. */
.apps-section { max-width: 1040px; padding-top: 76px; padding-bottom: 24px; }
.apps-title { margin: 0 0 36px; color: var(--muted); font-size: 18px; font-weight: 500; letter-spacing: 0; }
.app-collection { border-top: 1px solid var(--line); }
.app-entry { display: grid; grid-template-columns: 160px minmax(0, 1fr) auto; grid-template-areas: "icon identity action" "icon description action"; column-gap: 44px; row-gap: 16px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line); }
.app-icon { grid-area: icon; display: block; width: 160px; height: 160px; object-fit: contain; }
.app-entry--padr .app-icon, .app-entry--peekin-cam .app-icon, .app-entry--peekin-lens .app-icon { border-radius: 22%; }
body[data-page="home"] #products .app-icon { border-radius: 0; }
body[data-page="home"] #products .app-entry--playr .app-icon { mix-blend-mode: lighten; }
.app-identity { grid-area: identity; align-self: end; min-width: 0; }
.app-category { margin: 0 0 7px; color: var(--muted); font-size: 13px; letter-spacing: 0; line-height: 1.4; }
.app-identity h3 { margin: 0; color: var(--ink); font-size: 34px; font-weight: 650; letter-spacing: -.035em; line-height: 1.1; }
.app-description { grid-area: description; align-self: start; max-width: 480px; }
.app-headline { margin: 0 0 8px; color: var(--ink); font-size: 19px; font-weight: 500; letter-spacing: -.015em; line-height: 1.4; }
.app-copy { margin: 0; color: #bbb5c8; font-size: 17px; font-weight: 400; letter-spacing: 0; line-height: 1.55; }
.app-link { grid-area: action; display: inline-flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 48px; padding: 12px 0 12px 16px; color: #d7c5ff; font-size: 14px; font-weight: 600; line-height: 1.4; white-space: nowrap; }
.app-link span { font-size: 21px; font-weight: 400; }
.app-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.app-link:focus-visible { outline: 2px solid #d7c5ff; outline-offset: 5px; border-radius: 4px; }
@media (max-width: 900px) {
  .app-entry { grid-template-columns: 128px minmax(0, 1fr); grid-template-areas: "icon identity" "icon description" ". action"; column-gap: 32px; row-gap: 14px; padding: 36px 0; }
  .app-icon { width: 128px; height: 128px; }
  .app-link { justify-self: start; padding-left: 0; }
}
@media (max-width: 600px) {
  .section.apps-section { width: calc(100% - 44px); padding-top: 44px; }
  .apps-title { margin-bottom: 20px; font-size: 16px; }
  .app-entry { grid-template-columns: 80px minmax(0, 1fr); grid-template-areas: "icon identity" "description description" "action action"; column-gap: 20px; row-gap: 20px; padding: 30px 0; }
  .app-icon { width: 80px; height: 80px; }
  .app-identity { align-self: center; }
  .app-identity h3 { font-size: 29px; }
  .app-category { font-size: 12px; }
  .app-headline { font-size: 18px; }
  .app-copy { font-size: 16px; line-height: 1.6; }
  .app-link { padding: 8px 0; font-size: 14px; gap: 20px; }
}

.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 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); }
  .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; }
}
