:root {
  color-scheme: dark;
  --ink: #080713;
  --ink-soft: #121022;
  --surface: #171329;
  --paper: #f8f7ff;
  --paper-soft: #eceaf6;
  --text: #f8f7ff;
  --text-dark: #151221;
  --muted: #b8b3ca;
  --muted-dark: #625d71;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(19, 16, 32, .13);
  --pink: #ff2a8b;
  --pink-hot: #ff006f;
  --cyan: #25d9ff;
  --yellow: #ffe14a;
  --violet: #7c3cff;
  --success: #33d69f;
  --danger: #ff5c74;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); color: var(--text-dark); font-size: 16px; line-height: 1.55; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
.media-stage { position: relative; display: block; overflow: hidden; background: #171329; isolation: isolate; }
.media-stage__blur { position: absolute; inset: -10%; z-index: 0; width: 120%; height: 120%; object-fit: cover; filter: blur(28px) saturate(120%); opacity: .38; transform: scale(1.08); }
.media-stage__image { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.media-callouts { position: absolute; inset: 0; z-index: 6; display: block; overflow: hidden; border-radius: inherit; pointer-events: none; }
.media-callout { position: absolute; max-width: min(230px, calc(100% - 28px)); padding: 10px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; display: inline-flex; align-items: center; gap: 7px; background: rgba(10,8,25,.78); color: white; box-shadow: 0 14px 42px rgba(0,0,0,.32); backdrop-filter: blur(14px); font-size: 12px; line-height: 1.2; font-weight: 850; animation: photoNoteFloat 5s ease-in-out infinite; }
.media-callout i { color: var(--yellow); font-style: normal; }
.media-callout--1 { top: 18px; right: 16px; }
.media-callout--2 { left: 16px; bottom: 22px; animation-delay: -1.4s; }
.media-callout--3 { right: 16px; bottom: 72px; animation-delay: -2.8s; }
.media-callouts--compact .media-callout { padding: 7px 9px; border-radius: 11px; font-size: 10px; }
.media-callouts--compact .media-callout--1 { top: auto; right: auto; left: 16px; bottom: 16px; }
.media-callouts--compact .media-callout--2 { right: 16px; left: auto; bottom: 16px; }
[hidden] { display: none !important; }
::selection { background: var(--yellow); color: var(--text-dark); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--text);
  background: rgba(8, 7, 19, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(22px) saturate(145%);
}

.site-header {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; width: max-content; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(255, 255, 255, .18); }
.brand span { display: grid; line-height: 1.08; }
.brand strong { font-weight: 900; letter-spacing: -.025em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav a { padding: 9px 10px; border-radius: 999px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 750; transition: color .25s ease, background .25s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, .09); }
.menu-toggle { display: none; min-width: 54px; min-height: 44px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 3px auto; border-radius: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle b { display: none; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.cart-link { justify-self: end; display: inline-flex; align-items: center; gap: 10px; padding: 8px 9px 8px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 850; transition: transform .25s ease, border-color .25s ease; }
.cart-link:hover { transform: translateY(-2px); border-color: var(--pink); }
.cart-link b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--pink); color: white; }
.cart-link.has-items b { animation: cartPulse 1.8s ease-in-out infinite; }

main { min-height: 70vh; }
.section { position: relative; padding: clamp(76px, 10vw, 132px) 0; }
.section--ink { background: var(--ink); color: var(--text); }
.eyebrow { margin: 0 0 18px; color: var(--pink); text-transform: uppercase; font-size: 12px; line-height: 1.2; font-weight: 900; letter-spacing: .16em; }
.eyebrow span { color: var(--cyan); }
h1, h2, h3 { margin-top: 0; font-family: ui-rounded, "Arial Rounded MT Bold", "Arial Black", Inter, sans-serif; letter-spacing: -.055em; line-height: .95; text-wrap: balance; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 8vw, 104px); font-weight: 950; }
h2 { margin-bottom: 22px; font-size: clamp(42px, 6.2vw, 78px); font-weight: 950; }
h3 { margin-bottom: 12px; font-size: clamp(24px, 2.5vw, 32px); font-weight: 900; }
h1 em, h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .9); }
p { margin-top: 0; }
.hero-lead { max-width: 670px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.button { appearance: none; min-height: 52px; padding: 14px 20px; border: 1px solid transparent; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; color: var(--text); text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button--primary { background: linear-gradient(135deg, var(--pink), var(--violet)); box-shadow: 0 12px 36px rgba(255, 42, 139, .28); }
.button--primary:hover { box-shadow: 0 18px 50px rgba(255, 42, 139, .38); }
.button--glass { border-color: var(--line); background: rgba(255, 255, 255, .06); backdrop-filter: blur(12px); }
.button--light { background: white; color: var(--text-dark); }
.button--dark { border-color: rgba(21,18,33,.2); background: var(--text-dark); color: white; }
.button--small { min-height: 42px; padding: 8px 13px; font-size: 14px; }
.button--wide { width: 100%; }
.text-link { align-self: end; display: inline-flex; gap: 12px; align-items: center; font-weight: 900; text-decoration: none; }
.text-link span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--pink); color: white; transition: transform .3s ease; }
.text-link:hover span { transform: rotate(45deg); }
.page-back-bar { position: relative; z-index: 12; padding: 14px 0; background: var(--ink); color: white; }
.page-back-button { width: max-content; min-height: 44px; padding: 8px 15px 8px 9px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); color: white; text-decoration: none; font-size: 14px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.page-back-button span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--pink); font-size: 18px; line-height: 1; }
.page-back-button b { font-weight: 850; }
.page-back-button:hover { border-color: var(--pink); background: rgba(255,255,255,.1); transform: translateX(-3px); }

.hero-section { position: relative; overflow: hidden; min-height: calc(100vh - 78px); padding: clamp(65px, 8vw, 112px) 0 0; background: radial-gradient(circle at 16% 15%, #221347 0, transparent 32%), var(--ink); color: var(--text); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 82px; }
.hero-copy h1 { max-width: 760px; }
.hero-copy h1 em { display: inline-block; position: relative; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 3%; right: 0; bottom: -10px; height: 9px; border-radius: 99px; background: linear-gradient(90deg, var(--pink), var(--cyan)); transform: rotate(-1deg); animation: underlineIn .9s .6s cubic-bezier(.2,.8,.2,1) both; transform-origin: left; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-phone { width: fit-content; display: grid; gap: 2px; margin-top: 22px; color: var(--text); text-decoration: none; }
.hero-phone span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero-phone strong { font-size: clamp(20px, 2.5vw, 27px); letter-spacing: -.03em; }
.hero-phone:hover strong { color: var(--pink); }
.hero-facts { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hero-facts div { padding-top: 17px; border-top: 1px solid var(--line); }
.hero-facts strong { display: block; color: var(--cyan); font-size: clamp(26px, 3vw, 40px); line-height: 1; letter-spacing: -.04em; }
.hero-facts span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.35; }
.hero-visual { position: relative; min-height: 650px; transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0); transition: transform .18s ease-out; }
.hero-collage { position: absolute; inset: 0; }
.hero-photo-wrap { position: absolute; inset: 5% 5% 22% 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; box-shadow: 0 35px 110px rgba(0, 0, 0, .55); animation: heroFloat 7s ease-in-out infinite; }
.hero-photo-wrap .media-stage { width: 100%; height: 100%; padding: 10px; }
.hero-photo-wrap .media-stage__image { border-radius: 28px; }
.hero-photo-small { position: absolute; z-index: 3; overflow: hidden; border: 8px solid var(--ink); border-radius: 26px; box-shadow: 0 22px 70px rgba(0,0,0,.45); }
.hero-photo-small .media-stage { width: 100%; height: 100%; }
.hero-photo-small--one { right: -1%; bottom: 2%; width: 34%; aspect-ratio: 3 / 4; transform: rotate(4deg); }
.hero-photo-small--two { left: 7%; bottom: 0; width: 39%; aspect-ratio: 4 / 3; transform: rotate(-4deg); }
.hero-orbit { position: absolute; border: 1px solid rgba(37, 217, 255, .42); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { inset: -2% -11% 9% -2%; transform: rotate(16deg); animation: orbitSpin 16s linear infinite; }
.hero-orbit--two { inset: 12% -3% 0 -13%; border-color: rgba(255, 42, 139, .5); transform: rotate(-13deg); animation: orbitSpinReverse 19s linear infinite; }
.aurora { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(95px); opacity: .25; pointer-events: none; animation: auroraDrift 12s ease-in-out infinite alternate; }
.aurora--one { top: 5%; left: -15%; background: var(--violet); }
.aurora--two { right: -12%; bottom: 2%; background: var(--pink); animation-delay: -4s; }
.ticker { position: relative; z-index: 5; width: 100%; overflow: hidden; border-block: 1px solid rgba(255, 255, 255, .15); background: var(--yellow); color: var(--text-dark); }
.ticker__track { display: flex; width: max-content; font-weight: 950; line-height: 1.15; letter-spacing: .08em; white-space: nowrap; will-change: transform; animation: tickerMove 26s linear infinite; }
.ticker__group { flex: 0 0 auto; min-width: 100vw; padding: 17px 0; display: flex; align-items: center; justify-content: space-around; }
.ticker__item { flex: 0 0 auto; padding-inline: clamp(18px, 2vw, 34px); text-transform: uppercase; }
.ticker__item i { font-style: normal; }

.latest-offer-section { overflow: hidden; padding-block: clamp(58px, 7vw, 92px); background: linear-gradient(135deg, #ffe14a 0 38%, #ff6cb1 100%); }
.latest-offer { overflow: hidden; min-height: 520px; border: 3px solid var(--text-dark); border-radius: 42px; display: grid; grid-template-columns: .88fr 1.12fr; background: var(--paper); box-shadow: 20px 20px 0 rgba(21,18,33,.16); }
.latest-offer__media { position: relative; overflow: hidden; }
.latest-offer__media, .latest-offer__media .media-stage { width: 100%; height: 100%; min-height: 520px; }
.latest-offer__copy { padding: clamp(36px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.latest-offer__copy h2 { font-size: clamp(48px, 6vw, 80px); }
.latest-offer__copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted-dark); font-size: 18px; }
.latest-offer__copy > strong { margin: 6px 0 24px; font-size: 21px; }
.latest-offer__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section-heading { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin-bottom: 8px; color: var(--muted-dark); font-size: 18px; }
.section--ink .section-heading > p { color: var(--muted); }
.formats-section { background: var(--paper); }
.format-grid { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.format-card { position: relative; min-width: 0; overflow: hidden; border-radius: var(--radius-lg); display: grid; grid-template-rows: 290px 1fr; background: var(--ink); color: white; text-decoration: none; box-shadow: 0 18px 55px rgba(28, 23, 55, .14); isolation: isolate; }
.format-card__media, .format-card__media .media-stage { display: block; width: 100%; height: 100%; }
.format-card__media { padding: 12px; background: #121022; }
.format-card__media .media-stage { border-radius: 28px; }
.format-card__content { position: relative; padding: 26px 88px 30px 30px; display: grid; align-content: start; gap: 10px; }
.format-card__number { position: absolute; right: 24px; top: 25px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-weight: 900; }
.format-card__eyebrow { color: var(--cyan); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.format-card__content strong { min-width: 0; overflow-wrap: break-word; hyphens: auto; font-family: ui-rounded, "Arial Rounded MT Bold", "Arial Black", sans-serif; font-size: clamp(34px, 3.5vw, 50px); line-height: .98; letter-spacing: -.05em; }
.format-card__content > span:last-child { max-width: 500px; color: rgba(255,255,255,.76); }
.format-card__arrow { position: absolute; right: 28px; bottom: 30px; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--pink); font-size: 24px; transition: transform .35s ease; }
.format-card:hover .format-card__arrow { transform: rotate(45deg) scale(1.06); }
.format-card:hover .media-stage__image { transform: scale(.97); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; perspective: 1200px; }
.service-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { --rotate-x: 0deg; --rotate-y: 0deg; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); color: var(--text); box-shadow: var(--shadow); transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)); transform-style: preserve-3d; transition: transform .22s ease, border-color .3s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(37,217,255,.16), transparent 36%); opacity: 0; transition: opacity .3s ease; }
.service-card:hover { border-color: rgba(37,217,255,.45); }
.service-card:hover::after { opacity: 1; }
.service-card__media { position: relative; display: block; height: 360px; overflow: hidden; padding: 10px; color: inherit; background: #0d0b18; }
.service-card__media .media-stage { width: 100%; height: 100%; border-radius: 20px; }
.service-card__media .media-stage__image { transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-card__media .media-stage__image { transform: scale(.975); }
.media-shine { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.25) 40%, transparent 60%); transform: translateX(-130%); transition: transform .85s ease; }
.service-card:hover .media-shine { transform: translateX(130%); }
.detail-badge { width: max-content; margin-bottom: 14px; padding: 7px 11px; border-radius: 999px; display: inline-flex; background: var(--yellow); color: var(--text-dark); text-transform: uppercase; font-size: 11px; font-weight: 950; letter-spacing: .06em; }
.service-card__body { position: relative; z-index: 2; padding: 23px; }
.micro-label { margin-bottom: 10px; color: var(--cyan); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.service-card h3 a { text-decoration: none; }
.service-card__body > p:not(.micro-label) { min-height: 74px; color: var(--muted); font-size: 15px; }
.service-card__footer { padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.service-card__footer strong { max-width: 180px; font-size: 15px; line-height: 1.3; }
.service-card__actions { display: flex; gap: 8px; }
.round-link, .icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: white; text-decoration: none; cursor: pointer; font-size: 22px; transition: background .25s ease, transform .25s ease; }
.round-link:hover { background: rgba(255,255,255,.09); transform: rotate(45deg); }
.icon-button { border-color: transparent; background: var(--pink); }
.icon-button:hover { transform: rotate(90deg) scale(1.08); }
.add-to-cart.is-added { background: var(--success); color: var(--text-dark); animation: addedPop .5s cubic-bezier(.2,.8,.2,1); }
.party-preview { background: linear-gradient(180deg, var(--paper), #e9e7f5); }
.party-preview .service-card, .catalog-section .service-card { background: #151226; }

.process-section { overflow: hidden; background: var(--yellow); }
.process-section .eyebrow { color: var(--violet); }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step-card { min-height: 260px; padding: 26px; border: 2px solid var(--text-dark); border-radius: 30px; display: grid; grid-template-rows: auto 1fr; gap: 34px; background: rgba(255,255,255,.35); transition: transform .35s ease, background .35s ease; }
.step-card:hover { transform: translateY(-10px) rotate(-1deg); background: white; }
.step-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.step-card__top > span { font-size: 14px; font-weight: 950; }
.step-card__top > i { display: grid; place-items: center; width: 78px; height: 78px; border: 2px solid var(--text-dark); border-radius: 24px; background: var(--text-dark); color: var(--yellow); box-shadow: 8px 8px 0 rgba(255,255,255,.7); font-size: 34px; font-style: normal; animation: stepPulse 4s ease-in-out infinite; }
.step-card__copy { align-self: end; }
.step-card h3 { font-size: 32px; }
.step-card p { margin-bottom: 0; color: #4e493d; }

.reviews-preview { background: #eeecf7; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-grid--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; color: var(--text-dark); font-weight: 900; }
.review-carousel__controls .carousel-arrow { position: static; transform: none; border-color: var(--text-dark); background: white; color: var(--text-dark); }
.review-carousel__controls .carousel-arrow:hover { background: var(--pink); border-color: var(--pink); color: white; }
.review-card { min-height: 330px; padding: 30px; border: 1px solid var(--line-dark); border-radius: 28px; display: flex; flex-direction: column; background: white; box-shadow: 0 18px 55px rgba(30, 24, 50, .08); }
.review-card__stars { color: var(--pink); letter-spacing: .12em; }
.review-card blockquote { margin: 38px 0; font-size: clamp(20px, 2.3vw, 29px); line-height: 1.3; font-weight: 820; letter-spacing: -.025em; }
.review-card > p { margin: auto 0 0; display: grid; gap: 3px; font-size: 14px; }
.review-card > p span { color: var(--muted-dark); }

.final-cta-section { overflow: hidden; background: var(--paper); }
.final-cta { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 88px); border-radius: 42px; background: radial-gradient(circle at 90% 10%, rgba(37,217,255,.26), transparent 32%), linear-gradient(135deg, #1b1035, #080713); color: white; box-shadow: var(--shadow); isolation: isolate; }
.final-cta__orb { position: absolute; right: -80px; bottom: -120px; z-index: -1; width: 390px; height: 390px; border: 52px solid var(--pink); border-radius: 50%; filter: drop-shadow(0 0 35px rgba(255,42,139,.45)); animation: breathe 5s ease-in-out infinite; }
.final-cta h2 { max-width: 850px; }
.final-cta > p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 18px; }
.final-cta .button { margin-top: 18px; }

.catalog-hero, .detail-hero, .reviews-hero, .cart-page, .thanks-page { position: relative; overflow: hidden; background: var(--ink); color: var(--text); }
.catalog-hero { padding: clamp(70px, 9vw, 120px) 0; }
.catalog-hero::before, .reviews-hero::before { content: ""; position: absolute; width: 560px; height: 560px; top: -280px; right: -140px; border-radius: 50%; background: var(--violet); filter: blur(120px); opacity: .32; }
.catalog-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; gap: 68px; align-items: center; }
.catalog-hero__grid > * { min-width: 0; }
.catalog-hero h1 { overflow-wrap: normal; hyphens: none; font-size: clamp(58px, 8vw, 108px); }
.catalog-hero h1.catalog-hero__title--long { font-size: clamp(48px, 6vw, 82px); }
.catalog-hero__art { position: relative; }
.catalog-hero__media { width: 100%; aspect-ratio: 4 / 3; padding: 10px; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.catalog-hero__media .media-stage__image { border-radius: 25px; }
.catalog-hero__orbit { position: absolute; inset: -22px; border: 1px solid rgba(37,217,255,.45); border-radius: 42% 52% 38% 48%; animation: orbitSpin 14s linear infinite; pointer-events: none; }
.catalog-section { background: var(--paper); }
.catalog-switch { width: max-content; max-width: 100%; margin: 0 auto 48px; padding: 6px; border: 1px solid var(--line-dark); border-radius: 999px; display: flex; background: white; }
.catalog-switch a { padding: 12px 19px; border-radius: 999px; text-decoration: none; font-weight: 850; }
.catalog-switch a[aria-current="page"] { background: var(--text-dark); color: white; }
.catalog-groups { margin-bottom: 88px; }
.catalog-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.catalog-group-card { overflow: hidden; border: 1px solid var(--line-dark); border-radius: 30px; display: grid; grid-template-columns: 210px 1fr; background: white; color: var(--text-dark); text-decoration: none; box-shadow: 0 18px 55px rgba(30,24,50,.08); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.catalog-group-card:hover { transform: translateY(-7px); border-color: var(--pink); box-shadow: 0 26px 65px rgba(30,24,50,.14); }
.catalog-group-card.is-active { border: 3px solid var(--pink); }
.catalog-group-card__visual { position: relative; min-width: 0; }
.catalog-group-card__media { width: 100%; height: 100%; min-height: 280px; }
.catalog-group-card__body { padding: 26px; }
.catalog-group-card h3 { color: var(--text-dark); }
.catalog-group-card__body p { color: var(--muted-dark); }
.catalog-group-card__body .text-link { color: var(--pink); }
.catalog-services-heading { margin-top: 30px; }

.detail-hero { padding: clamp(60px, 8vw, 110px) 0; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: clamp(44px, 7vw, 90px); align-items: center; }
.detail-grid > * { min-width: 0; }
.detail-gallery__main { position: relative; overflow: hidden; border-radius: 42px; }
.detail-carousel { touch-action: pan-y; }
.detail-carousel__slide { overflow: hidden; border-radius: 42px; animation: carouselIn .42s cubic-bezier(.2,.8,.2,1) both; }
.detail-gallery__media { width: 100%; aspect-ratio: 4 / 5; padding: 10px; border-radius: 42px; }
.detail-gallery__media .media-stage__image { border-radius: 32px; }
.detail-carousel__slide video { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: contain; border: 10px solid #171329; border-radius: 42px; background: #07060e; }
.detail-gallery__thumbs { margin-top: 12px; padding-bottom: 5px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: thin; }
.detail-gallery__thumb { position: relative; flex: 0 0 96px; width: 96px; aspect-ratio: 4 / 3; overflow: hidden; padding: 3px; border: 2px solid transparent; border-radius: 16px; background: #171329; cursor: pointer; }
.detail-gallery__thumb[aria-current="true"] { border-color: var(--cyan); transform: translateY(-2px); }
.detail-gallery__thumb-media { width: 100%; height: 100%; border-radius: 11px; }
.thumb-play { position: absolute; inset: 0; display: grid; place-items: center; color: white; text-shadow: 0 2px 10px black; font-size: 22px; }
.carousel-arrow { position: absolute; z-index: 5; top: 50%; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-items: center; background: rgba(8,7,19,.78); color: white; cursor: pointer; backdrop-filter: blur(10px); transform: translateY(-50%); transition: transform .25s ease, background .25s ease; }
.carousel-arrow:hover { background: var(--pink); transform: translateY(-50%) scale(1.08); }
.carousel-arrow--prev { left: 18px; }
.carousel-arrow--next { right: 18px; }
.carousel-counter { position: absolute; z-index: 5; right: 18px; bottom: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(8,7,19,.78); color: white; font-size: 12px; font-weight: 900; backdrop-filter: blur(10px); }
.visualization-note { position: absolute; z-index: 5; left: 18px; bottom: 18px; padding: 7px 11px; border-radius: 999px; background: rgba(8,7,19,.78); color: white; font-size: 11px; font-weight: 850; }
.detail-copy h1 { overflow-wrap: break-word; hyphens: auto; font-size: clamp(58px, 7.2vw, 94px); }
.detail-price { color: var(--yellow); font-size: 24px; font-weight: 950; }
.include-list { margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.include-list span { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; }
.include-list i { display: grid; place-items: center; flex: 0 0 25px; width: 25px; height: 25px; border-radius: 50%; background: rgba(51,214,159,.13); color: var(--success); font-style: normal; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-note { margin: 18px 0 0; color: #817b93; font-size: 13px; }
.video-section { background: #eceaf6; }
.video-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.video-grid > div:first-child p:last-child { color: var(--muted-dark); }
.video-shell { padding: 10px; border-radius: 32px; background: linear-gradient(135deg, var(--pink), var(--cyan)); box-shadow: 0 25px 75px rgba(34, 22, 69, .22); }
.video-shell video { width: 100%; max-height: 690px; border-radius: 24px; background: black; }

.reviews-hero { padding: clamp(80px, 11vw, 150px) 0; }
.reviews-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; gap: 60px; align-items: center; }
.reviews-hero__visual { position: relative; min-width: 0; }
.reviews-hero__media { width: 100%; aspect-ratio: 4 / 3; padding: 10px; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.reviews-hero__media .media-stage__image { border-radius: 25px; }
.reviews-hero__visual .media-callout--3 { top: 18px; right: auto; bottom: auto; left: 16px; }
.reviews-score { position: absolute; z-index: 5; right: -14px; bottom: -28px; width: min(250px, 58%); padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(10,8,25,.88); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.reviews-score strong { display: block; font-size: 78px; line-height: 1; letter-spacing: -.06em; }
.reviews-score span { color: var(--yellow); letter-spacing: .12em; }
.reviews-score p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.reviews-page { background: var(--paper-soft); }
.proof-section { background: var(--yellow); }
.proof-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.proof-visual { position: relative; }
.proof-media { width: 100%; aspect-ratio: 4 / 3; padding: 9px; border: 3px solid var(--text-dark); border-radius: 30px; background: white; box-shadow: 18px 18px 0 var(--pink); }
.proof-media .media-stage__image { border-radius: 20px; }
.proof-section .eyebrow { color: var(--violet); }
.proof-list { margin: 30px 0 0; padding: 0; list-style: none; }
.proof-list li { position: relative; padding: 16px 0 16px 36px; border-top: 1px solid rgba(21,18,33,.25); font-size: 18px; font-weight: 750; }
.proof-list li::before { content: "✦"; position: absolute; left: 0; color: var(--pink); }

.cart-page { min-height: calc(100vh - 78px); padding: clamp(72px, 9vw, 120px) 0; }
.cart-page::before { content: ""; position: absolute; left: -140px; top: 15%; width: 420px; height: 420px; border-radius: 50%; background: var(--pink); filter: blur(130px); opacity: .22; }
.cart-heading { position: relative; z-index: 2; margin-bottom: 55px; display: grid; grid-template-columns: 1fr .7fr; gap: 50px; align-items: end; }
.cart-heading p:last-child { color: var(--muted); font-size: 18px; }
.cart-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 30px; align-items: start; }
.cart-items, .request-form { border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.055); backdrop-filter: blur(14px); }
.cart-items { padding: 12px; }
.cart-item { position: relative; padding: 12px 52px 12px 12px; display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); }
.cart-item:last-of-type { border-bottom: 0; }
.cart-item img { width: 92px; height: 92px; object-fit: contain; border-radius: 18px; background: #0d0b18; }
.cart-item p { margin: 0 0 3px; color: var(--cyan); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.cart-item h3 { margin: 0 0 7px; font-size: 22px; }
.cart-item span { color: var(--muted); font-size: 13px; }
.remove-cart-item { position: absolute; right: 13px; top: 50%; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: white; cursor: pointer; transform: translateY(-50%); font-size: 22px; }
.cart-summary { padding: 20px 12px 12px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 16px; }
.cart-summary div { display: grid; gap: 4px; }
.cart-summary span { color: var(--muted); font-size: 12px; }
.cart-summary strong { font-size: 18px; }
.request-form { padding: clamp(24px, 4vw, 42px); }
.request-form h2 { font-size: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid__wide { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--text); font-size: 13px; font-weight: 850; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; background: rgba(255,255,255,.075); color: var(--text); }
input:invalid:not(:placeholder-shown) { border-color: var(--pink); }
input::placeholder, textarea::placeholder { color: #817b93; }
textarea { min-height: 118px; resize: vertical; }
select option { color: var(--text-dark); }
.consent { margin: 18px 0; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-weight: 500; }
.consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--pink); }
.field-error { margin: 0 0 16px; color: var(--danger); font-size: 14px; }
.form-note { margin: 12px 0 0; color: #817b93; text-align: center; font-size: 12px; }
.empty-cart { min-height: 520px; padding: 60px 20px; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-cart > span { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--yellow); color: var(--text-dark); font-size: 34px; animation: orbitSpin 8s linear infinite; }
.empty-cart h2 { margin-top: 24px; font-size: clamp(42px, 6vw, 72px); }
.empty-cart p { max-width: 580px; color: var(--muted); }
.empty-cart > div { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.thanks-page { min-height: calc(100vh - 78px); display: grid; place-items: center; padding: 80px 0; }
.thanks-orbit { position: absolute; width: 620px; height: 620px; border: 1px solid rgba(37,217,255,.35); border-radius: 48% 52% 45% 55%; animation: orbitSpin 16s linear infinite; }
.thanks-card { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; padding: clamp(40px, 7vw, 80px); border: 1px solid var(--line); border-radius: 40px; background: rgba(255,255,255,.06); text-align: center; backdrop-filter: blur(20px); }
.thanks-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 28px; border-radius: 50%; background: var(--success); color: var(--text-dark); font-size: 34px; }
.thanks-card p:not(.eyebrow) { max-width: 580px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.thanks-card > div { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.workspace-page { min-height: 75vh; background: var(--ink); color: white; }
.record-list { display: grid; gap: 14px; }
.record { padding: 22px; border: 1px solid var(--line); border-radius: 22px; display: flex; justify-content: space-between; gap: 24px; background: rgba(255,255,255,.05); }
.record > div:last-child { min-width: 190px; display: grid; gap: 10px; }
.record h3 { margin-top: 14px; }
.record-meta { color: var(--muted); font-size: 13px; }
.status-pill { padding: 5px 9px; border-radius: 99px; background: rgba(37,217,255,.13); color: var(--cyan); font-size: 12px; font-weight: 900; }
.panel.narrow { width: min(560px, calc(100% - 40px)); margin: 70px auto; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.stack { display: grid; gap: 16px; }
.notice { position: fixed; right: 20px; bottom: 20px; z-index: 100; max-width: min(420px, calc(100% - 40px)); padding: 14px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: #171329; color: white; box-shadow: var(--shadow); animation: noticeIn .35s ease both; }
.notice--error { background: #4e1422; }
.partner-modal { width: min(520px, calc(100% - 32px)); padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: transparent; color: var(--text); box-shadow: 0 24px 90px rgba(0,0,0,.5); }
.partner-modal::backdrop { background: rgba(8,7,19,.7); backdrop-filter: blur(7px); }
.partner-modal__card { position: relative; padding: clamp(28px, 6vw, 46px); border-radius: inherit; background: linear-gradient(145deg, #211b42, #11101f); }
.partner-modal__card h2 { margin: 10px 0 12px; font-size: clamp(30px, 6vw, 48px); line-height: .98; }
.partner-modal__card p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.partner-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.partner-modal__close { position: absolute; top: 13px; right: 15px; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--text); font-size: 25px; cursor: pointer; }
.consent a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-page { min-height: 72vh; padding: clamp(72px, 10vw, 130px) 0; background: var(--paper-soft); color: var(--text-dark); }
.legal-page__content { max-width: 850px; }
.legal-page h1 { margin: 10px 0 20px; }
.legal-page__content > section { padding: 28px 0; border-top: 1px solid rgba(21,18,33,.18); }
.legal-page__content h2 { margin: 0 0 12px; font-size: clamp(27px, 4vw, 42px); }
.legal-page__content p:not(.eyebrow) { max-width: 760px; color: #504b63; font-size: 17px; line-height: 1.6; }

.site-footer-wrap { padding: 55px 0 24px; background: var(--ink); color: var(--text); border-top: 1px solid var(--line); }
.site-footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.brand--footer img { width: 62px; height: 62px; }
.footer-links { display: grid; gap: 7px; }
.footer-links a, .footer-contact a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact { justify-self: end; display: grid; gap: 8px; text-align: right; }
.footer-contact a:first-child { color: white; font-size: 20px; font-weight: 900; }
.footer-bottom { width: min(1180px, calc(100% - 40px)); margin: 42px auto 0; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #777188; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(35px) scale(.985); transition: opacity .75s ease var(--delay, 0ms), transform .75s cubic-bezier(.2,.8,.2,1) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
::view-transition-old(root) { animation: pageOut .22s ease both; }
::view-transition-new(root) { animation: pageIn .42s cubic-bezier(.2,.8,.2,1) both; }

@keyframes underlineIn { from { transform: scaleX(0) rotate(-1deg); } to { transform: scaleX(1) rotate(-1deg); } }
@keyframes heroFloat { 0%, 100% { transform: rotate(2.5deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-13px); } }
@keyframes orbitSpin { to { transform: rotate(376deg); } }
@keyframes orbitSpinReverse { to { transform: rotate(-373deg); } }
@keyframes auroraDrift { to { transform: translate(90px, 45px) scale(1.15); } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@keyframes stepPulse { 50% { transform: translateY(-5px) rotate(4deg); box-shadow: 12px 12px 0 rgba(255,255,255,.82); } }
@keyframes breathe { 50% { transform: scale(1.08); filter: drop-shadow(0 0 60px rgba(255,42,139,.65)); } }
@keyframes cartPulse { 50% { box-shadow: 0 0 0 8px rgba(255,42,139,0); } 0%, 100% { box-shadow: 0 0 0 0 rgba(255,42,139,.35); } }
@keyframes noticeIn { from { opacity: 0; transform: translateY(20px); } }
@keyframes pageOut { to { opacity: 0; transform: scale(.985); } }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } }
@keyframes carouselIn { from { opacity: 0; transform: translateX(18px) scale(.99); } }
@keyframes addedPop { 50% { transform: scale(1.16) rotate(8deg); } }
@keyframes photoNoteFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; display: none; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 14px max(16px, calc((100vw - 1240px) / 2)); border-bottom: 1px solid var(--line); background: rgba(8,7,19,.97); box-shadow: 0 20px 55px rgba(0,0,0,.35); }
  .nav.is-open { display: grid; animation: pageIn .28s ease both; }
  .nav a { text-align: center; }
}

@media (max-width: 980px) {
  .hero-layout, .catalog-hero__grid, .detail-grid, .video-grid, .proof-grid, .cart-layout { grid-template-columns: 1fr; }
  .latest-offer { grid-template-columns: 1fr; }
  .latest-offer__media, .latest-offer__media .media-stage { min-height: 430px; }
  .hero-visual { min-height: 700px; }
  .hero-photo-small--one { right: 0; transform: none; }
  .hero-photo-small--two { left: 2%; transform: none; }
  .service-grid, .service-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card--featured { grid-column: span 2; }
  .service-card--featured .service-card__media { height: 420px; }
  .catalog-hero__art { max-width: 720px; }
  .detail-gallery { max-width: 720px; }
  .video-grid { gap: 35px; }
  .proof-visual { max-width: 720px; }
  .catalog-group-card { grid-template-columns: 180px 1fr; }
  .catalog-switch { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-radius: 26px; }
  .catalog-switch a { display: grid; place-items: center; text-align: center; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { display: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { width: min(100% - 22px, 1240px); min-height: 66px; gap: 10px; }
  .page-back-bar { padding: 10px 0; }
  .page-back-button { min-height: 42px; padding: 7px 13px 7px 7px; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .cart-link { padding: 7px; }
  .cart-link > span { display: none; }
  .nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 12px; }
  .nav a { padding: 10px 8px; white-space: normal; font-size: 12px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  h2 { font-size: clamp(39px, 12vw, 58px); }
  .hero-section { min-height: auto; padding-top: 54px; }
  .hero-layout { gap: 0; }
  .hero-copy { padding-bottom: 30px; }
  .hero-facts { margin-top: 38px; gap: 9px; }
  .hero-facts strong { font-size: 26px; }
  .hero-facts span { font-size: 11px; }
  .hero-visual { min-height: 620px; }
  .hero-photo-wrap { inset: 4% 0 31%; }
  .hero-photo-small--one { right: 0; bottom: 3%; width: 39%; }
  .hero-photo-small--two { left: 1%; bottom: 4%; width: 48%; }
  .ticker__track { font-size: 13px; }
  .ticker__group { padding-block: 15px; }
  .latest-offer { min-height: 0; border-radius: 28px; box-shadow: 9px 9px 0 rgba(21,18,33,.16); }
  .latest-offer__media, .latest-offer__media .media-stage { min-height: 300px; }
  .latest-offer__copy { padding: 30px 22px 34px; }
  .latest-offer__copy > p:not(.eyebrow) { font-size: 16px; }
  .latest-offer__actions .button { width: 100%; }
  .section-heading { display: grid; gap: 24px; margin-bottom: 34px; }
  .section-heading > p { font-size: 16px; }
  .text-link { justify-self: start; }
  .format-grid, .service-grid, .service-grid--catalog, .steps-grid, .review-grid, .review-grid--page, .reviews-hero__grid, .cart-heading { grid-template-columns: 1fr; }
  .format-card { min-height: 0; grid-template-rows: 260px auto; }
  .format-card__content { padding: 24px 76px 28px 23px; }
  .format-card__content strong { font-size: 36px; }
  .format-card__content > span:last-child { font-size: 14px; }
  .format-card__arrow { right: 20px; bottom: 22px; width: 46px; height: 46px; }
  .service-card--featured { grid-column: auto; }
  .service-card--featured .service-card__media, .service-card__media { height: 350px; }
  .step-card { min-height: 245px; }
  .final-cta { padding: 43px 24px 48px; border-radius: 30px; }
  .final-cta__orb { right: -180px; }
  .catalog-hero { padding-top: 55px; }
  .catalog-hero h1 { font-size: 48px; }
  .catalog-hero__grid { gap: 40px; }
  .catalog-switch { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-switch a { white-space: normal; font-size: 13px; }
  .catalog-group-grid { grid-template-columns: 1fr; }
  .catalog-group-card { grid-template-columns: 1fr; }
  .catalog-group-card__media { min-height: 240px; }
  .detail-hero { padding-top: 38px; }
  .detail-grid { gap: 38px; }
  .detail-gallery__main, .detail-gallery__media { border-radius: 30px; }
  .detail-carousel__slide, .detail-carousel__slide video { border-radius: 30px; }
  .carousel-arrow { width: 42px; height: 42px; }
  .carousel-arrow--prev { left: 10px; }
  .carousel-arrow--next { right: 10px; }
  .detail-copy h1 { font-size: 46px; }
  .include-list { grid-template-columns: 1fr; }
  .detail-actions .button { width: 100%; }
  .reviews-hero__visual { margin-bottom: 24px; }
  .reviews-score { right: 0; bottom: -24px; width: min(205px, 58%); padding: 18px; }
  .reviews-score strong { font-size: 58px; }
  .proof-media { box-shadow: 9px 9px 0 var(--pink); }
  .media-callout { max-width: calc(100% - 22px); padding: 8px 10px; font-size: 10px; }
  .media-callout--1 { top: 12px; right: 10px; }
  .media-callout--2 { left: 10px; bottom: 14px; }
  .media-callout--3 { right: 10px; bottom: 54px; }
  .reviews-hero__visual .media-callout--3 { top: 12px; right: auto; bottom: auto; left: 10px; }
  .proof-list li { font-size: 16px; }
  .cart-page { padding-top: 55px; }
  .cart-heading { gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .cart-summary { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item img { width: 72px; height: 72px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { justify-self: start; text-align: left; }
  .footer-bottom { display: grid; }
  .record { display: grid; }
  .record > div:last-child { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; transform: none; }
  .ticker__group:nth-child(2) { display: none; }
}
