:root {
  --ink: #f2f7f7;
  --muted: #8d9aa6;
  --cyan: #27d5dc;
  --blue: #136e9a;
  --night: #071019;
  --deep: #03070d;
  --gutter: clamp(24px, 9.2vw, 142px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--deep); }
html.is-hero-snapping,html.is-service-snapping { scroll-behavior:auto; }
body { margin: 0; color: var(--ink); background: var(--deep); font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif; overflow-x: hidden; cursor: none; }
body.is-locked { overflow: hidden; }
button, input, textarea { font: inherit; }
html, body, button, a, input, textarea { cursor: none; }
button { color: inherit; }
::selection { color: #00131a; background: var(--cyan); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.loader { position: fixed; inset: 0; z-index: 1000; background: #0b1013; display: grid; place-items: center; overflow: hidden; isolation: isolate; transition: opacity 1.15s cubic-bezier(.65,0,.35,1), visibility 1.15s; }
.loader::before { content: ""; position: absolute; inset: -8%; z-index: 0; background: radial-gradient(circle at 50% 47%,rgba(190,154,109,.1),transparent 25%),linear-gradient(135deg,#10171b 0%,#111311 55%,#090c0e 100%); opacity: 0; transform: scale(1.04); transition: opacity 1.25s,transform 2.6s cubic-bezier(.16,1,.3,1); }
.loader::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px); background-size:12vw 100%; mask-image:linear-gradient(to bottom,transparent,black 34%,black 66%,transparent); opacity:0; transition:opacity 1.6s .15s; }
.loader.is-ready::before { opacity: 1; transform: scale(1); }
.loader.is-ready::after { opacity:.32; }
.loader.is-entered { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__welcome { position: absolute; inset: 0; z-index:2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding:40px 24px; opacity: 0; transform: translateY(24px); pointer-events: none; transition: opacity 1s .2s, transform 1s .2s; }
.loader.is-ready .loader__welcome { opacity: 1; transform: none; pointer-events: auto; }
.loader__lockup { display:grid; grid-template-columns:auto 1px minmax(250px,330px); align-items:center; gap:clamp(25px,2.4vw,40px); }
.loader__lockup h2 { margin:0; color:#f2ede6; font-size:clamp(68px,7.2vw,112px); font-weight:300; line-height:.8; letter-spacing:-.065em; text-shadow:0 18px 50px rgba(0,0,0,.42); }
.loader__divider { width:1px; height:clamp(82px,8vw,118px); background:linear-gradient(transparent,rgba(201,169,126,.55) 18%,rgba(201,169,126,.55) 82%,transparent); }
.loader__lockup p { margin:0; color:#f2ede6; font-size:clamp(30px,3vw,48px); font-weight:600; line-height:1.04; letter-spacing:-.045em; }
.loader .pill { min-width:225px; height:56px; margin-top:clamp(52px,7vh,76px); color:#17120d; border-color:#c9a97e; background:#c9a97e; box-shadow:0 16px 46px rgba(0,0,0,.28),0 0 44px rgba(201,169,126,.08); font-size:13px; font-weight:600; backdrop-filter:blur(12px); }
.loader .pill::after { background:#f2ede6; }

.pill { position: relative; min-width: 250px; height: 46px; border: 1px solid currentColor; border-radius: 99px; background: transparent; text-transform: uppercase; font-size: 12px; letter-spacing: .02em; overflow: hidden; }
.pill span { display: grid; place-items: center; position: absolute; inset: 0; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.pill span:nth-child(2) { transform: translateY(100%); color: #061119; }
.pill::after { content:""; position:absolute; inset:0; background:#f2f7f7; transform:translateY(102%); transition:transform .45s cubic-bezier(.2,.8,.2,1); }
.pill span { z-index: 1; }
.pill:hover::after, .pill:focus-visible::after { transform:none; }
.pill:hover span:first-child, .pill:focus-visible span:first-child { transform:translateY(-100%); }
.pill:hover span:nth-child(2), .pill:focus-visible span:nth-child(2) { transform:none; }

.particles { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; opacity: .52; mix-blend-mode: screen; mask-image:linear-gradient(to bottom,transparent 0%,black 12%,black 88%,transparent 100%); }
.cursor { position: fixed; left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%; background: #f8ffff; box-shadow: 0 0 18px 6px rgba(141,231,241,.62); z-index: 9999; pointer-events: none; transform: translate(-50%,-50%); opacity: 0; transition: opacity .2s, background .25s, box-shadow .25s; will-change: transform; }
.cursor::before { content:""; position:absolute; left:50%; top:50%; width:34px; height:34px; border:1px solid rgba(211,255,255,.68); border-radius:50%; transform:translate(-50%,-50%); box-shadow:0 0 18px rgba(39,213,220,.16); transition:width .25s,height .25s,background .25s,border-color .25s; }
.cursor.is-visible { opacity: 1; }
.cursor.is-hovering { background: #fff; box-shadow:0 0 24px 8px rgba(141,231,241,.45); }
.cursor.is-hovering::before { width:52px; height:52px; border-color:rgba(255,255,255,.85); background:rgba(39,213,220,.12); }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; padding: 38px var(--gutter); color: rgba(235,246,247,.75); mix-blend-mode: difference; transition: opacity .6s, transform .6s; }
body.is-locked .site-header { opacity: 0; transform: translateY(-20px); }
.logo { justify-self: start; display: flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; font-size: 14px; }
.logo strong { font-weight: 600; }
.sound { justify-self: center; display: flex; align-items: center; gap: 14px; color: inherit; border: 0; background: transparent; padding: 2px 10px; font-size: 12px; }
.sound__bars { display: flex; align-items: center; gap: 3px; height: 20px; }
.sound__bars i { width: 1px; height: 6px; background: currentColor; transform-origin: center; }
.sound[aria-pressed="true"] .sound__bars i { animation: bar .75s ease-in-out infinite alternate; }
.sound__bars i:nth-child(2){height:12px;animation-delay:-.2s!important}.sound__bars i:nth-child(3){height:18px;animation-delay:-.45s!important}.sound__bars i:nth-child(4){height:9px;animation-delay:-.15s!important}.sound__bars i:nth-child(5){height:15px;animation-delay:-.6s!important}.sound__bars i:nth-child(6){height:7px;animation-delay:-.35s!important}.sound__bars i:nth-child(7){height:11px;animation-delay:-.1s!important}
.main-nav { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.main-nav button { border: 0; padding: 0; background: transparent; font-size: 12px; color: rgba(235,246,247,.55); transition: color .3s, transform .3s; }
.main-nav button:hover, .main-nav button.is-active { color: white; transform: translateX(-6px); }
.menu-toggle { display: none; }

section { position: relative; }
.hero { height: 100vh; min-height: 640px; overflow: hidden; background: linear-gradient(#063b5b 0%,#2b91a9 58%,#0a4264 58.2%,#041524 100%); z-index: 1; }
.hero::after { content:""; position:absolute; inset:58% 0 0; background: radial-gradient(ellipse at 55% 0, rgba(40,160,186,.65), transparent 45%), linear-gradient(rgba(20,94,127,.15),#04111d); }
.hero__sky { position:absolute; inset:0 0 42%; background: radial-gradient(circle at 80% 60%,rgba(236,255,239,.85),transparent 25%),radial-gradient(circle at 22% 70%,rgba(19,220,196,.3),transparent 32%),linear-gradient(135deg,#052c4b,#1f7d93 55%,#dce8dd); }
.hero__stars { position:absolute; inset:0; opacity:.55; background-image: radial-gradient(circle,#fff 0 1px,transparent 1.5px), radial-gradient(circle,#6be2df 0 1px,transparent 1.5px); background-size: 89px 89px,137px 137px; background-position: 17px 23px,55px 9px; }
.hero h1 { position:absolute; z-index:1; top:9vh; left:50%; transform:translateX(-50%); margin:0; width:min(74vw,1080px); display:flex; justify-content:space-between; color:rgba(54,202,219,.54); mix-blend-mode:screen; font-size:clamp(90px,16vw,250px); font-weight:300; line-height:1; letter-spacing:-.08em; }
.hero h1 span { animation: rise-letter 1.2s cubic-bezier(.2,.8,.2,1) both; }
.hero h1 span:nth-child(2){animation-delay:.08s}.hero h1 span:nth-child(3){animation-delay:.16s}.hero h1 span:nth-child(4){animation-delay:.24s}.hero h1 span:nth-child(5){animation-delay:.32s}.hero h1 span:nth-child(6){animation-delay:.4s}.hero h1 span:nth-child(7){animation-delay:.48s}
.iceberg { position:absolute; z-index:3; width:min(62vw,760px); left:50%; top:42%; transform:translate(-50%,-46%); filter:drop-shadow(0 30px 50px rgba(0,24,40,.5)); animation: iceberg-float 7s ease-in-out infinite; }
.iceberg svg { display:block; width:100%; height:auto; }
.waterline { position:absolute; z-index:4; top:58%; left:-5%; right:-5%; height:62px; filter:blur(.25px); overflow:hidden; }
.waterline::before,.waterline::after { content:""; position:absolute; inset:4px -5%; border-radius:50%; border-top:2px solid rgba(214,255,251,.55); transform:rotate(-.7deg); }
.waterline::after { top:19px; opacity:.35; transform:rotate(.4deg); }
.waterline span { position:absolute; inset:0; background:repeating-radial-gradient(ellipse at center,transparent 0 25px,rgba(206,255,255,.2) 27px 28px,transparent 31px 52px); transform:scaleY(.15); }
.hero__tagline { position:absolute; z-index:5; bottom:12vh; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; color:rgba(235,247,246,.42); font-size:clamp(18px,2vw,29px); line-height:1.1; }
.scroll-cue { position:absolute; z-index:7; bottom:5vh; left:50%; width:34px; height:34px; transform:translateX(-50%); border-radius:50%; border:0; background:rgba(255,255,255,.08); }
.scroll-cue i { position:absolute; top:10px; left:15px; width:4px; height:4px; border-right:1px solid white; border-bottom:1px solid white; transform:rotate(45deg); animation:cue 1.5s infinite; }

/* GitHub Pages-safe spotlight Hero. Relative asset URLs keep working in repository subpaths. */
.hero.hero--spotlight {
  --spotlight-x: 63%;
  --spotlight-y: 48%;
  --spotlight-radius: clamp(110px, 11vw, 175px);
  --hero-scene-scale: 1;
  --hero-scene-shift: 0px;
  --hero-scene-opacity: 1;
  --hero-ui-opacity: 1;
  --hero-ui-shift: 0px;
  --hero-depth-opacity: 0;
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100dvh;
  min-height: 560px;
  isolation: isolate;
  background: #050505;
  touch-action: pan-y;
}
.hero.hero--spotlight::after { display: none; }
.hero.hero--spotlight::before { content:""; position:absolute; inset:0; z-index:4; pointer-events:none; background:linear-gradient(to bottom,rgba(3,9,16,0) 12%,rgba(3,12,22,.12) 48%,rgba(2,11,19,.88) 100%); opacity:var(--hero-depth-opacity); will-change:opacity; }
.hero-spotlight__scene { position:absolute; inset:0; z-index:0; transform-origin:50% 62%; transform:translate3d(0,var(--hero-scene-shift),0) scale(var(--hero-scene-scale)); opacity:var(--hero-scene-opacity); will-change:transform,opacity; }
.hero-spotlight__base,
.hero-spotlight__base-title,
.hero-spotlight__reveal,
.hero-spotlight__vignette { position: absolute; inset: 0; }
.hero-spotlight__base,
.hero-spotlight__reveal { background-position: center; background-size: cover; background-repeat: no-repeat; }
.hero-spotlight__base { z-index: 0; animation: spotlight-zoom 1.8s cubic-bezier(.16,1,.3,1) both; }
.hero-spotlight__base-title { z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.hero-spotlight__reveal {
  z-index: 2;
  -webkit-mask-image: radial-gradient(circle var(--spotlight-radius) at var(--spotlight-x) var(--spotlight-y),#000 0%,#000 48%,rgba(0,0,0,.96) 60%,rgba(0,0,0,.68) 76%,rgba(0,0,0,.22) 91%,transparent 100%);
  mask-image: radial-gradient(circle var(--spotlight-radius) at var(--spotlight-x) var(--spotlight-y),#000 0%,#000 48%,rgba(0,0,0,.96) 60%,rgba(0,0,0,.68) 76%,rgba(0,0,0,.22) 91%,transparent 100%);
  will-change: -webkit-mask-image, mask-image;
}
.hero-spotlight__vignette { z-index: 3; pointer-events: none; background: radial-gradient(circle at 50% 43%,transparent 0%,rgba(0,0,0,.03) 48%,rgba(0,0,0,.27) 100%); }
.hero-spotlight__controls { position: absolute; z-index: 8; left: clamp(24px,5vw,80px); right: clamp(24px,5vw,80px); bottom: clamp(22px,4vh,48px); display: flex; align-items: center; justify-content: space-between; pointer-events: none; opacity:var(--hero-ui-opacity); transform:translate3d(0,var(--hero-ui-shift),0); will-change:transform,opacity; }
.hero-spotlight__hint { color: rgba(255,255,255,.56); font-size: 9px; line-height: 1; letter-spacing: .18em; text-transform: uppercase; }
.hero-spotlight__hint::before { content: "◇"; margin-right: 10px; color: rgba(255,255,255,.38); }
.hero-spotlight__cta { pointer-events: auto; display: inline-flex; align-items: center; gap: 10px; min-height: 36px; padding: 0 20px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(0,0,0,.13); color: rgba(255,255,255,.82); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(12px); transition: color .3s,background .3s,transform .3s; }
.hero-spotlight__cta:hover,.hero-spotlight__cta:focus-visible { color: #050505; background: #f4efe8; transform: translateY(-2px); }
@keyframes spotlight-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.eyebrow { color:#7f8d97; text-transform:uppercase; letter-spacing:.06em; font-size:12px; margin:0 0 45px; }
.about { z-index:1; min-height:180vh; background:linear-gradient(#041524,#09111b 30%,#080c13); overflow:hidden; box-shadow:0 -45px 110px rgba(0,8,15,.48); }
.about__inner { position:relative; z-index:4; width:100%; padding:24vh var(--gutter) 18vh; }
.about__rock { position:absolute; z-index:1; right:-12vw; top:4vh; width:50vw; height:120vh; background:radial-gradient(circle at 40% 35%,#1a83bd,#0b3264 42%,#06112a 74%); clip-path:polygon(46% 0,100% 0,100% 100%,32% 87%,22% 63%,1% 48%,18% 21%); filter:drop-shadow(-40px 30px 80px #02040a); }
.about__rock::after { content:""; position:absolute; inset:0; background:linear-gradient(110deg,transparent 22%,rgba(77,185,232,.17) 24%,transparent 33%),linear-gradient(35deg,transparent 45%,rgba(0,0,0,.35) 46%,transparent 60%); }
.about h2 { width:min(820px,70vw); margin:0; font-size:clamp(42px,5vw,78px); line-height:1.1; font-weight:300; letter-spacing:-.03em; }
.about h2 em,.belief h2 em { color:var(--cyan); font-style:normal; }
.scroll-words span { opacity:.12; transition:opacity .15s; }
.scroll-words span.is-lit { opacity:1; }
.scroll-words em span { color:var(--cyan); }
.about__statement { margin:42vh 0 0 33%; position:relative; }
.about__statement h3 { max-width:690px; font-size:clamp(30px,3.7vw,56px); line-height:1.1; font-weight:300; margin:0; }
.orbit-list { display:flex; gap:18px; list-style:none; margin:90px 0 0; padding:0; }
.orbit-list li { display:grid; place-items:center; width:128px; aspect-ratio:1; border:1px solid rgba(119,213,224,.28); border-radius:50%; color:#9eacb5; font-size:12px; text-transform:uppercase; position:relative; }
.orbit-list li::after { content:""; position:absolute; width:6px; height:6px; border-radius:50%; background:var(--cyan); box-shadow:0 0 13px var(--cyan); top:9%; right:18%; }

.about.about--domain { --domain-ivory:#f0ebe3; --domain-warm:#cfb28a; --domain-muted:#938b80; min-height:100dvh; display:flex; align-items:flex-start; padding:clamp(118px,14vh,160px) var(--gutter) clamp(80px,10vh,120px); background:radial-gradient(circle at 76% 45%,rgba(179,143,97,.16),transparent 30%),radial-gradient(circle at 18% 12%,rgba(255,248,236,.045),transparent 24%),linear-gradient(135deg,#070706,#11100e 58%,#080706); box-shadow:0 -48px 120px rgba(0,0,0,.68); }
.domain-builder { position:relative; z-index:4; width:100%; display:grid; grid-template-columns:minmax(290px,.72fr) minmax(520px,1.28fr); gap:clamp(48px,7vw,120px); align-items:center; }
.domain-builder__copy h2 { width:auto; max-width:650px; margin:0; font-size:clamp(48px,5.3vw,86px); line-height:.98; letter-spacing:-.055em; }
.domain-builder__copy h2 span { display:block; max-width:100%; margin-top:24px; color:var(--domain-warm); font-size:.57em; line-height:1.08; letter-spacing:-.035em; overflow-wrap:anywhere; }
.domain-builder__intro { max-width:510px; margin:38px 0 0; color:var(--domain-muted); font-size:clamp(15px,1.15vw,18px); line-height:1.65; }
.domain-builder__status { display:flex; align-items:center; gap:10px; margin-top:32px; color:#756d63; font-size:10px; letter-spacing:.14em; text-transform:uppercase; }
.domain-builder__status i { width:7px; height:7px; border-radius:50%; background:var(--domain-warm); box-shadow:0 0 14px rgba(207,178,138,.58); animation:pulse 1.4s ease-in-out infinite alternate; }
.site-simulator { min-width:0; }
.site-simulator__browser { container-type:inline-size; overflow:hidden; border:1px solid rgba(224,207,183,.28); border-radius:clamp(18px,2vw,28px); background:#0a0908; box-shadow:0 42px 110px rgba(0,0,0,.68),0 0 72px rgba(188,151,103,.10),inset 0 0 0 1px rgba(255,255,255,.025); }
.site-simulator__toolbar { position:relative; height:46px; display:grid; grid-template-columns:80px 1fr 80px; align-items:center; padding:0 16px; color:#9f9588; background:#171512; border-bottom:1px solid #2b2722; font-size:10px; }
.site-simulator__toolbar>span { justify-self:end; }
.site-simulator__lights { display:flex; gap:6px; }
.site-simulator__lights i { width:7px; height:7px; border-radius:50%; background:#5c554d; }
.site-simulator__lights i:first-child{background:#8e6f5d}.site-simulator__lights i:nth-child(2){background:#9c845f}.site-simulator__lights i:nth-child(3){background:#6f786a}
.site-simulator__address { justify-self:center; width:min(320px,100%); padding:7px 16px; overflow:hidden; color:#b6ab9d; background:rgba(239,231,219,.07); border:1px solid rgba(239,231,219,.09); border-radius:999px; text-align:center; text-overflow:ellipsis; white-space:nowrap; }
.site-simulator__screen { position:relative; min-height:clamp(430px,62vh,610px); overflow:hidden; color:var(--domain-ivory); background:radial-gradient(circle at 72% 44%,rgba(183,147,102,.13),transparent 31%),linear-gradient(145deg,#11100e,#080807 72%); --sim-accent:#cfb28a; }
.sim-starter,.sim-site { position:absolute; inset:0; transition:opacity .65s cubic-bezier(.2,.8,.2,1),transform .65s cubic-bezier(.2,.8,.2,1),visibility .65s; }
.sim-starter { z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:45px; text-align:center; }
.sim-starter::before { content:""; position:absolute; width:56%; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle,rgba(207,178,138,.12),transparent 67%); filter:blur(10px); }
.sim-starter>* { position:relative; z-index:1; }
.sim-starter__brand { display:flex; flex-direction:column; align-items:center; gap:3px; margin-bottom:28px; }
.sim-starter__brand b { font-family:Georgia,serif; font-size:34px; font-weight:400; line-height:.8; }
.sim-starter__brand small { color:#9c9285; font-size:clamp(8px,1.05cqw,11px); font-weight:600; letter-spacing:.18em; }
.sim-starter h3 { margin:0 0 26px; font-size:clamp(32px,3.5vw,54px); font-weight:400; line-height:1.04; letter-spacing:-.045em; }
.sim-domain-field { display:flex; align-items:center; justify-content:center; max-width:100%; padding:12px 18px; color:#7e756a; background:var(--domain-ivory); border:1px solid rgba(255,255,255,.24); border-radius:999px; box-shadow:0 14px 38px rgba(0,0,0,.28),0 0 34px rgba(207,178,138,.08); font-size:clamp(17px,1.55vw,24px); }
.sim-domain-field input { width:10ch; min-width:2ch; padding:0 3px; color:#171411; background:transparent; border:0; border-bottom:1px solid #b9aa97; border-radius:0; outline:0; text-align:center; font:inherit; }
.sim-domain-field input:focus { border-color:#8e704c; }
.sim-domain-field input::placeholder { color:#a2998e; }
.sim-enter { display:flex; align-items:center; gap:10px; margin-top:24px; padding:6px 7px 6px 14px; color:#d8d0c5; background:transparent; border:0; font-size:10px; text-transform:uppercase; letter-spacing:.12em; }
.sim-enter i { width:30px; height:30px; display:grid; place-items:center; color:#17130f; background:var(--domain-ivory); border-radius:50%; font-style:normal; transition:transform .3s,background .3s; }
.sim-enter:hover i,.sim-enter:focus-visible i { transform:translateX(3px) rotate(-12deg); background:var(--domain-warm); }
.sim-site { --sim-pointer-x:50%; --sim-pointer-y:42%; --sim-shift-x:0px; --sim-shift-y:0px; z-index:1; padding:0; overflow:hidden; isolation:isolate; color:var(--domain-ivory); background:linear-gradient(#0b0b0a,#080807); opacity:0; visibility:hidden; transform:translateY(24px) scale(.975); }
.sim-site::after { content:""; position:absolute; z-index:2; inset:0; pointer-events:none; background:radial-gradient(circle 135px at var(--sim-pointer-x) var(--sim-pointer-y),color-mix(in srgb,var(--sim-accent),transparent 88%),transparent 72%); mix-blend-mode:screen; transition:background .35s; }
.site-simulator__screen.is-launched .sim-starter { opacity:0; visibility:hidden; transform:translateY(-24px) scale(.98); }
.site-simulator__screen.is-launched .sim-site { opacity:1; visibility:visible; transform:none; }
.sim-site__ticker { position:absolute; z-index:5; top:0; left:0; right:0; height:44px; display:flex; align-items:center; justify-content:space-around; gap:24px; overflow:hidden; color:rgba(240,235,227,.42); background:#0d0d0d; border-bottom:1px solid rgba(255,255,255,.04); font-size:clamp(7px,1.05cqw,10px); white-space:nowrap; }
.sim-site__ticker span { flex:none; }
.sim-site__ticker span::before { content:""; display:inline-block; width:4px; height:4px; margin:0 9px 1px 0; border-radius:50%; background:var(--sim-accent); box-shadow:0 0 10px color-mix(in srgb,var(--sim-accent),transparent 35%); transition:background .45s; }
.sim-site__header { position:absolute; z-index:6; left:50%; bottom:16px; display:flex; align-items:center; gap:clamp(10px,2.2cqw,22px); padding:7px 8px; color:#f2eee7; background:rgba(18,17,16,.88); border:1px solid rgba(255,255,255,.13); border-radius:11px; box-shadow:0 12px 38px rgba(0,0,0,.45); backdrop-filter:blur(14px); transform:translateX(-50%); }
.sim-site__logo { display:flex; align-items:center; gap:7px; padding:0 4px; font-size:clamp(6px,.9cqw,9px); letter-spacing:.12em; white-space:nowrap; }
.sim-site__logo b { width:25px; height:25px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.42); border-radius:50%; font-family:Georgia,serif; font-size:13px; font-weight:400; }
.sim-site__header nav { display:flex; align-items:center; gap:clamp(9px,1.7cqw,17px); }
.sim-site__header button { padding:6px 2px; color:rgba(255,255,255,.5); background:transparent; border:0; font-size:clamp(7px,.95cqw,9px); white-space:nowrap; }
.sim-site__header nav button.is-active { color:white; }
.sim-site__edit { padding:9px 12px!important; color:#171513!important; background:#eee9e1!important; border:0!important; border-radius:8px; }
.sim-site__main { position:absolute; z-index:3; top:25%; left:50%; width:82%; margin:0; text-align:center; transform:translateX(-50%); transition:transform .45s cubic-bezier(.2,.8,.2,1); }
.sim-site__brand-name { display:flex; align-items:center; justify-content:center; gap:clamp(8px,1.4cqw,14px); margin:0 auto 12px; color:var(--domain-ivory); font-family:Georgia,serif; font-size:clamp(16px,2.6cqw,26px); font-weight:400; line-height:1; letter-spacing:.065em; text-transform:uppercase; }
.sim-site__brand-name::before,.sim-site__brand-name::after { content:""; width:clamp(16px,3.2cqw,32px); height:1px; background:color-mix(in srgb,var(--sim-accent),transparent 38%); box-shadow:0 0 10px color-mix(in srgb,var(--sim-accent),transparent 66%); }
#sim-kicker { margin:0 0 18px; color:rgba(240,235,227,.54); font-size:clamp(7px,1cqw,9px); letter-spacing:.1em; }
#sim-kicker::before { content:""; display:inline-block; width:7px; height:7px; margin-right:10px; background:var(--sim-accent); border-radius:50%; box-shadow:0 0 12px color-mix(in srgb,var(--sim-accent),transparent 42%); }
.sim-site__main h3 { margin:0 auto; font-size:clamp(30px,5cqw,52px); font-weight:300; line-height:1.03; letter-spacing:-.045em; }
#sim-description { max-width:58cqw; margin:22px auto 0; color:rgba(255,255,255,.48); font-size:clamp(9px,1.25cqw,12px); line-height:1.55; }
.sim-site__main>button { display:none; }
.sim-site__orb { position:absolute; z-index:1; top:15%; left:50%; width:142%; aspect-ratio:1; border:1px solid color-mix(in srgb,var(--sim-accent),transparent 74%); border-radius:50%; background:linear-gradient(155deg,#151410,#0d0d0c 58%); box-shadow:0 -18px 68px color-mix(in srgb,var(--sim-accent),transparent 68%),inset 0 30px 90px rgba(255,255,255,.018); transform:translateX(calc(-50% + var(--sim-shift-x))) translateY(var(--sim-shift-y)); transition:transform .18s ease-out,border-color .45s,box-shadow .45s; }
.sim-site__features { position:absolute; z-index:4; left:13%; right:13%; bottom:64px; display:flex; align-items:flex-end; justify-content:space-between; }
.sim-site__features button { position:relative; width:clamp(62px,13cqw,106px); aspect-ratio:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px; color:rgba(242,238,231,.46); border:1px solid rgba(255,255,255,.1); border-radius:50%; background:radial-gradient(circle at 45% 35%,rgba(255,255,255,.075),transparent 46%),#171716; box-shadow:inset 0 0 30px rgba(255,255,255,.025); transition:transform .35s cubic-bezier(.2,.8,.2,1),color .35s,border-color .35s,box-shadow .35s; }
.sim-site__features button span { font:normal clamp(12px,1.9cqw,18px)/1 Georgia,serif; }
.sim-site__features button b { font-size:clamp(6px,.82cqw,8px); font-weight:400; letter-spacing:.13em; text-transform:uppercase; }
.sim-site__features button:hover,.sim-site__features button:focus-visible,.sim-site__features button.is-active { color:#f3ede4; border-color:color-mix(in srgb,var(--sim-accent),transparent 35%); box-shadow:inset 0 0 38px color-mix(in srgb,var(--sim-accent),transparent 88%),0 0 24px color-mix(in srgb,var(--sim-accent),transparent 80%); transform:translateY(-9px); }
.sim-site__features button:nth-child(2) { transform:translateY(8px); }
.sim-site__features button:nth-child(2):hover,.sim-site__features button:nth-child(2):focus-visible,.sim-site__features button:nth-child(2).is-active { transform:translateY(-1px); }
.site-simulator__hint { margin:16px 0 0; color:#6f675e; font-size:10px; text-align:center; letter-spacing:.08em; }

.services { height:400vh; background:#080807; }
.services__sticky { position:sticky; top:0; height:100vh; min-height:640px; overflow:hidden; isolation:isolate; color:#f3eee7; background:#0a0908; }
.service-shade { position:absolute; inset:0; }
.service-shade { z-index:1; pointer-events:none; background:linear-gradient(90deg,rgba(4,5,5,.88) 0%,rgba(4,5,5,.66) 37%,rgba(4,5,5,.12) 67%,rgba(4,5,5,.24) 100%),linear-gradient(0deg,rgba(4,5,5,.65),transparent 34%); }
.service-topline { position:absolute; z-index:4; top:clamp(28px,4.5vh,50px); left:var(--gutter); right:var(--gutter); display:flex; justify-content:space-between; color:rgba(243,238,231,.5); font-size:10px; letter-spacing:.15em; text-transform:uppercase; }
.service-copy { position:absolute; z-index:4; inset:0; }
.service-panel { position:absolute; top:clamp(115px,15vh,150px); right:var(--gutter); bottom:clamp(94px,12vh,125px); left:var(--gutter); display:grid; grid-template-columns:minmax(0,1.6fr) minmax(300px,.72fr); grid-template-rows:auto 1fr; column-gap:clamp(54px,7vw,140px); align-items:start; opacity:0; transform:translateY(70px); visibility:hidden; transition:opacity .72s cubic-bezier(.2,.8,.2,1),transform .9s cubic-bezier(.16,1,.3,1),visibility .72s; }
.service-panel.is-active { opacity:1; transform:none; visibility:visible; }
.service-phase { grid-column:1; grid-row:1; margin:0 0 clamp(24px,4vh,46px); color:#c9a97e; font-size:11px; letter-spacing:.15em; text-transform:uppercase; }
.service-panel h2 { grid-column:1; grid-row:2; align-self:center; width:100%; max-width:none; margin:0; color:#f3eee7; font-size:clamp(68px,7.6vw,138px); font-weight:500; line-height:.84; letter-spacing:-.07em; text-transform:uppercase; text-shadow:0 22px 65px rgba(0,0,0,.32); }
.service-description { grid-column:2; grid-row:2; align-self:center; justify-self:end; max-width:460px; margin:0 0 80px; color:rgba(243,238,231,.82); font-size:clamp(16px,1.3vw,21px); font-weight:500; line-height:1.35; }
.service-scroll-prompt { --service-progress:25%; position:absolute; z-index:6; right:var(--gutter); bottom:clamp(32px,6vh,64px); min-width:270px; height:64px; display:flex; align-items:center; gap:18px; padding:6px 25px 6px 6px; color:#17130f; background:#f1eee9; border-radius:999px; box-shadow:0 20px 50px rgba(0,0,0,.28); font-size:12px; font-weight:600; white-space:nowrap; text-transform:uppercase; letter-spacing:.045em; transition:background .45s,color .45s; }
.service-scroll-mouse { position:relative; width:52px; height:52px; display:grid; place-items:center; flex:0 0 auto; border-radius:50%; background:conic-gradient(#9a774b 0 var(--service-progress),rgba(154,119,75,.18) var(--service-progress) 100%); transition:background .6s; }
.service-scroll-mouse::before { content:""; position:absolute; inset:4px; border-radius:50%; background:#c9a97e; box-shadow:inset 0 0 0 1px rgba(255,255,255,.2); }
.service-scroll-mouse i { position:relative; z-index:1; width:14px; height:22px; border:1.5px solid #1a1611; border-radius:9px; }
.service-scroll-mouse i::after { content:""; position:absolute; top:4px; left:50%; width:2px; height:5px; border-radius:2px; background:#1a1611; transform:translateX(-50%); animation:service-wheel 1.25s ease-in-out infinite; }

.pricing { position:relative; min-height:100vh; padding:clamp(82px,11vh,125px) var(--gutter) clamp(70px,10vh,110px); overflow:hidden; isolation:isolate; color:#f3eee7; background:linear-gradient(145deg,#0c0b09 0%,#080a0a 55%,#090806 100%); }
.pricing::before { content:""; position:absolute; inset:0; z-index:-2; pointer-events:none; background-image:radial-gradient(circle,rgba(95,160,169,.48) 0 1.2px,transparent 1.6px); background-size:clamp(70px,8vw,145px) clamp(64px,7vw,120px); opacity:.18; mask-image:linear-gradient(to bottom,transparent,black 15%,black 82%,transparent); }
.pricing__glow { position:absolute; z-index:-1; width:min(58vw,920px); aspect-ratio:1; right:-19vw; top:-28vw; border-radius:50%; background:radial-gradient(circle,rgba(190,150,96,.14),rgba(66,107,105,.045) 45%,transparent 70%); filter:blur(3px); pointer-events:none; }
.pricing__head { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(280px,.72fr); gap:clamp(45px,8vw,140px); align-items:end; margin-bottom:clamp(48px,7vh,76px); }
.pricing__eyebrow { margin:0 0 18px; color:#c9a97e; font-size:11px; letter-spacing:.17em; text-transform:uppercase; }
.pricing__head h2 { max-width:11ch; margin:0; font-size:clamp(58px,7vw,112px); font-weight:400; line-height:.84; letter-spacing:-.065em; text-transform:uppercase; }
.pricing__intro { justify-self:end; max-width:430px; padding-bottom:5px; }
.pricing__intro p { margin:0 0 24px; color:rgba(243,238,231,.68); font-size:clamp(15px,1.2vw,19px); line-height:1.45; }
.pricing__intro button { display:inline-flex; align-items:center; gap:28px; padding:0 0 9px; border:0; border-bottom:1px solid rgba(201,169,126,.58); color:#e6d7c3; background:none; font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; transition:color .3s,border-color .3s; }
.pricing__intro button:hover,.pricing__intro button:focus-visible { color:#fff; border-color:#fff; outline:none; }
.pricing__plans { display:flex; gap:12px; min-height:clamp(400px,52vh,535px); }
.price-card { --card-x:50%; --card-y:50%; position:relative; flex:.76 1 0; min-width:0; padding:clamp(24px,2.4vw,38px); overflow:hidden; border:1px solid rgba(225,213,196,.13); border-radius:3px; color:rgba(243,238,231,.62); background:radial-gradient(circle at var(--card-x) var(--card-y),rgba(201,169,126,.1),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.038),rgba(255,255,255,.012)); box-shadow:inset 0 0 0 1px rgba(255,255,255,.012); transform:translateY(0); transition:flex .72s cubic-bezier(.16,1,.3,1),border-color .45s,background .2s,color .45s,transform .45s,box-shadow .45s; }
.price-card::before { content:""; position:absolute; top:0; left:0; width:0; height:2px; background:#c9a97e; transition:width .72s cubic-bezier(.16,1,.3,1); }
.price-card::after { content:""; position:absolute; right:-90px; bottom:-130px; width:250px; height:250px; border:1px solid rgba(201,169,126,.1); border-radius:50%; box-shadow:0 0 0 32px rgba(201,169,126,.025),0 0 0 65px rgba(201,169,126,.015); opacity:0; transform:scale(.8); transition:opacity .6s,transform .8s cubic-bezier(.16,1,.3,1); pointer-events:none; }
.price-card:hover,.price-card:focus-visible { border-color:rgba(225,213,196,.28); outline:none; }
.price-card.is-active { flex:1.38 1 0; color:#f3eee7; border-color:rgba(201,169,126,.5); background:radial-gradient(circle at var(--card-x) var(--card-y),rgba(201,169,126,.19),transparent 38%),linear-gradient(145deg,rgba(201,169,126,.09),rgba(255,255,255,.018)); box-shadow:0 25px 70px rgba(0,0,0,.25),inset 0 0 0 1px rgba(255,255,255,.025); transform:translateY(-7px); }
.price-card.is-active::before { width:100%; }
.price-card.is-active::after { opacity:1; transform:scale(1); }
.price-card__top { display:flex; justify-content:space-between; gap:12px; color:rgba(243,238,231,.46); font-size:9px; letter-spacing:.14em; text-transform:uppercase; white-space:nowrap; }
.price-card__top span:last-child { overflow:hidden; text-overflow:ellipsis; }
.price-card__price { display:flex; align-items:flex-start; gap:4px; margin:clamp(40px,6vh,64px) 0 4px; color:#c9a97e; }
.price-card__price span { margin-top:10px; font-size:18px; font-weight:500; }
.price-card__price strong { font-size:clamp(68px,6.2vw,106px); font-weight:300; line-height:.8; letter-spacing:-.075em; }
.price-card h3 { margin:0 0 15px; color:#f3eee7; font-size:clamp(24px,2.3vw,37px); font-weight:400; letter-spacing:-.045em; }
.price-card__summary { max-width:300px; min-height:44px; margin:0; color:rgba(243,238,231,.66); font-size:14px; line-height:1.45; }
.price-card ul { margin:26px 0 55px; padding:0; list-style:none; opacity:0; transform:translateY(14px); transition:opacity .35s,transform .55s cubic-bezier(.16,1,.3,1); pointer-events:none; }
.price-card.is-active ul { opacity:1; transform:none; pointer-events:auto; transition-delay:.12s; }
.price-card li { position:relative; margin:8px 0; padding-left:17px; color:rgba(243,238,231,.74); font-size:12px; line-height:1.3; white-space:nowrap; }
.price-card li::before { content:""; position:absolute; left:0; top:.52em; width:5px; height:1px; background:#c9a97e; }
.price-card__action { position:absolute; left:clamp(24px,2.4vw,38px); bottom:28px; display:flex; align-items:center; gap:14px; color:rgba(243,238,231,.45); font-size:9px; letter-spacing:.12em; text-transform:uppercase; transition:color .35s; }
.price-card__action i { font-style:normal; transform:translate(0,0); transition:transform .35s; }
.price-card.is-active .price-card__action { color:#e6d7c3; }
.price-card.is-active .price-card__action i { transform:translate(3px,-3px); }
.pricing-rules { margin-top:12px; border:1px solid rgba(225,213,196,.13); background:rgba(255,255,255,.018); }
.pricing-rules__toggle { width:100%; min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:25px; padding:16px clamp(22px,2.4vw,36px); border:0; color:#f3eee7; background:none; text-align:left; }
.pricing-rules__toggle>span { display:flex; align-items:center; gap:clamp(24px,4vw,70px); font-size:15px; }
.pricing-rules__toggle small { color:#c9a97e; font-size:9px; font-weight:500; letter-spacing:.14em; text-transform:uppercase; }
.pricing-rules__toggle i { position:relative; width:28px; height:28px; flex:0 0 auto; border:1px solid rgba(225,213,196,.22); border-radius:50%; transition:transform .45s,border-color .3s; }
.pricing-rules__toggle i::before,.pricing-rules__toggle i::after { content:""; position:absolute; left:50%; top:50%; width:8px; height:1px; background:#d8c7b0; transform:translate(-50%,-50%); }
.pricing-rules__toggle i::after { transform:translate(-50%,-50%) rotate(90deg); transition:opacity .3s; }
.pricing-rules.is-open .pricing-rules__toggle i { transform:rotate(180deg); border-color:#c9a97e; }
.pricing-rules.is-open .pricing-rules__toggle i::after { opacity:0; }
.pricing-rules__panel { max-height:0; overflow:hidden; display:grid; grid-template-columns:1fr auto; gap:45px; padding:0 clamp(22px,2.4vw,36px); opacity:0; transition:max-height .7s cubic-bezier(.16,1,.3,1),padding .55s,opacity .4s; }
.pricing-rules.is-open .pricing-rules__panel { max-height:280px; padding-top:18px; padding-bottom:30px; opacity:1; }
.pricing-rules__panel ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 42px; margin:0; padding:0; list-style:none; }
.pricing-rules__panel li { position:relative; padding-left:18px; color:rgba(243,238,231,.62); font-size:12px; line-height:1.45; }
.pricing-rules__panel li::before { content:""; position:absolute; left:0; top:.55em; width:6px; height:6px; border:1px solid #9a774b; transform:rotate(45deg); }
.pricing-rules__rush { min-width:155px; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; padding-left:34px; border-left:1px solid rgba(225,213,196,.13); }
.pricing-rules__rush span { color:rgba(243,238,231,.48); font-size:9px; letter-spacing:.13em; text-transform:uppercase; }
.pricing-rules__rush strong { margin-top:5px; color:#c9a97e; font-size:34px; font-weight:400; letter-spacing:-.045em; }

.team { min-height:150vh; padding:20vh var(--gutter); background:linear-gradient(#05080e,#08121a); }
.team__head { display:grid; grid-template-columns:1fr 1.3fr; column-gap:7vw; margin-bottom:18vh; }
.team__head .eyebrow { grid-column:1/-1; }
.team__head h2 { margin:0; font-size:clamp(60px,8vw,120px); line-height:.92; font-weight:300; letter-spacing:-.05em; }
.team__head>p:last-child { align-self:end; max-width:420px; color:#9aa6ae; font-size:20px; line-height:1.5; }
.team__cards { display:grid; grid-template-columns:repeat(2,1fr); gap:9vw; max-width:1050px; margin:0 auto; }
.team-card:nth-child(2) { margin-top:16vh; }
.portrait { height:min(55vw,650px); position:relative; overflow:hidden; background:linear-gradient(145deg,#143b55,#060a10); }
.portrait::before { content:""; position:absolute; width:66%; height:72%; left:16%; bottom:-5%; border-radius:49% 51% 15% 14% / 35% 35% 8% 8%; background:linear-gradient(145deg,#d6a7a1,#744c55 43%,#1a2634 44%); filter:saturate(.7); }
.portrait::after { content:""; position:absolute; width:42%; aspect-ratio:.78; border-radius:50% 50% 44% 45%; left:29%; top:14%; background:linear-gradient(120deg,#432b31,#d9a49c 58%,#6f454d); box-shadow:0 -45px 0 -10px #182530; }
.portrait span { position:absolute; z-index:2; inset:0; background:linear-gradient(120deg,rgba(46,221,225,.3),transparent 34%),radial-gradient(circle at 60% 30%,transparent 0 18%,rgba(2,8,17,.38) 45%,transparent 58%); mix-blend-mode:screen; }
.portrait--two { background:linear-gradient(145deg,#241d3d,#07121b); }
.portrait--two::before { background:linear-gradient(145deg,#baa08a,#5c4140 43%,#131b27 44%); }
.portrait--two::after { background:linear-gradient(120deg,#2c201c,#c1997d 58%,#59443a); box-shadow:0 -43px 0 -8px #0e171e; }
.team-card h3 { margin:30px 0 8px; font-size:34px; font-weight:300; }.team-card h3 strong{font-weight:600}.team-card>p{color:#aab2b9;margin:0 0 24px}.team-card small{display:block;max-width:440px;color:#68737d;font-size:14px;line-height:1.6}

.belief { min-height:115vh; display:flex; flex-direction:column; justify-content:center; align-items:center; padding:15vh var(--gutter); text-align:center; background:#08121a; overflow:hidden; }
.belief h2 { position:relative; z-index:2; max-width:1040px; margin:0; font-size:clamp(50px,6vw,88px); line-height:1.08; font-weight:300; letter-spacing:-.04em; }
.belief__ring { position:absolute; width:55vw; aspect-ratio:1; border:1px solid rgba(65,208,221,.14); border-radius:50%; }
.belief__ring::before,.belief__ring::after{content:"";position:absolute;inset:12%;border:1px solid rgba(65,208,221,.1);border-radius:50%;}.belief__ring::after{inset:29%;box-shadow:0 0 100px rgba(39,213,220,.12)}

.journey { min-height:120vh; padding:18vh var(--gutter); background:linear-gradient(#08121a,#0a1219); overflow:hidden; }
.journey>h2 { max-width:850px; font-size:clamp(44px,5vw,74px); font-weight:300; line-height:1.08; margin:0 0 15vh; }
.journey__words { position:relative; z-index:2; display:flex; flex-direction:column; align-items:flex-end; }
.journey__words span { font-size:clamp(60px,11.5vw,180px); line-height:.84; text-transform:uppercase; letter-spacing:-.06em; color:transparent; -webkit-text-stroke:1px rgba(201,241,245,.45); transition:color .5s,transform .5s; }
.journey__words span:hover { color:rgba(39,213,220,.17); transform:translateX(-22px); }
.ray { position:absolute; width:2px; height:90vh; top:28%; left:34%; background:linear-gradient(transparent,rgba(54,213,221,.7),transparent); transform:rotate(30deg); box-shadow:0 0 30px rgba(39,213,220,.5); }.ray--two{left:58%;top:40%;height:70vh;transform:rotate(52deg);opacity:.35}

.testimonials { min-height:110vh; padding:18vh var(--gutter); background:#0a1219; }
.testimonials__stage { position:relative; max-width:1000px; min-height:560px; margin:0 auto; padding:6vh 7vw; border:1px solid rgba(107,157,169,.17); background:linear-gradient(135deg,rgba(9,43,55,.55),rgba(4,8,13,.4)); }
.quote { position:absolute; inset:6vh 7vw 100px; opacity:0; transform:translateX(40px); visibility:hidden; transition:opacity .7s,transform .7s,visibility .7s; }
.quote.is-active { opacity:1; transform:none; visibility:visible; }
.quote__avatar { width:64px; height:64px; display:grid; place-items:center; border-radius:50%; margin-bottom:40px; color:#08202a; background:linear-gradient(145deg,#99f0ec,#2b829c); font-weight:600; }
.quote blockquote { margin:0 0 26px; font-size:clamp(32px,4.2vw,62px); line-height:1.08; font-weight:300; letter-spacing:-.035em; }
.quote>p { max-width:720px; color:#8d9aa3; font-size:18px; line-height:1.5; }
.quote footer { display:flex; gap:18px; margin-top:30px; align-items:center; }.quote footer span{color:#5d6871;font-size:13px}
.quote-controls { position:absolute; left:7vw; right:7vw; bottom:40px; display:flex; align-items:center; justify-content:space-between; }
.quote-controls button { width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:transparent; }.quote-controls span{color:#68737c;font-size:12px}.quote-controls b{color:white}

.contact { min-height:110vh; padding:18vh var(--gutter) 10vh; background:#070c12; overflow:hidden; }
.contact__grid { position:relative; z-index:5; display:grid; grid-template-columns:1fr 1fr; gap:8vw; }
.contact__title h2 { margin:0; font-size:clamp(58px,7vw,108px); line-height:.92; font-weight:300; letter-spacing:-.05em; }
.contact-form { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-content:start; padding-top:7vh; }
.contact-form>p,.contact-form__wide,.contact-form>.pill { grid-column:1/-1; }
.contact-form>p { max-width:540px; margin:0 0 20px; color:#89959e; line-height:1.6; }.contact-form>p strong{color:var(--cyan)}
.contact-form label { display:flex; flex-direction:column; gap:10px; color:#7d8992; font-size:11px; text-transform:uppercase; }
.contact-form input,.contact-form textarea { width:100%; color:white; background:transparent; border:0; border-bottom:1px solid #29323a; border-radius:0; padding:10px 0 15px; outline:0; transition:border-color .3s; text-transform:none; }
.contact-form textarea { min-height:90px; resize:vertical; }.contact-form input:focus,.contact-form textarea:focus{border-color:var(--cyan)}
.contact-form .pill { width:130px; min-width:130px; margin-top:15px; }
.contact__meta { grid-column:2; margin-top:50px; }.contact__meta p{color:#5d6870;font-size:12px}.contact__meta a{color:var(--cyan);text-decoration:none;font-size:17px}
.contact-creature { position:absolute; z-index:1; width:min(56vw,850px); aspect-ratio:1.6; left:-17vw; bottom:-5vh; filter:drop-shadow(0 0 24px rgba(38,211,220,.4)); transform:rotate(8deg); }
.contact-creature::before { content:""; position:absolute; inset:18% 5% 8%; border-radius:45% 60% 50% 36%; border:1px solid rgba(98,234,232,.35); background:radial-gradient(ellipse at 52% 44%,rgba(70,224,221,.2),transparent 45%); box-shadow:inset 0 0 60px rgba(53,215,219,.14); }
.contact-creature span { position:absolute; width:7px; height:7px; border-radius:50%; background:#aafff7; box-shadow:0 0 12px 4px rgba(47,230,227,.5); animation:pulse 1.8s ease-in-out infinite alternate; }.contact-creature span:nth-child(1){left:18%;top:60%}.contact-creature span:nth-child(2){left:30%;top:38%;animation-delay:-.4s}.contact-creature span:nth-child(3){left:42%;top:50%;animation-delay:-.8s}.contact-creature span:nth-child(4){left:52%;top:28%;animation-delay:-1.2s}.contact-creature span:nth-child(5){left:64%;top:55%;animation-delay:-.2s}.contact-creature span:nth-child(6){left:74%;top:39%;animation-delay:-.7s}.contact-creature span:nth-child(7){left:82%;top:64%;animation-delay:-1s}.contact-creature span:nth-child(8){left:48%;top:72%;animation-delay:-1.4s}
.back-to-top { position:absolute; z-index:6; right:var(--gutter); bottom:8vh; width:44px; height:44px; border-radius:50%; border:1px solid #3a454c; background:transparent; }
.toast { position:fixed; z-index:3000; left:50%; bottom:30px; transform:translate(-50%,30px); padding:14px 24px; color:#062029; background:#c9fffa; border-radius:99px; font-size:13px; opacity:0; visibility:hidden; transition:.4s; }.toast.is-visible{opacity:1;visibility:visible;transform:translate(-50%,0)}

.reveal { opacity:0; transform:translateY(45px); transition:opacity .9s cubic-bezier(.2,.8,.2,1),transform .9s cubic-bezier(.2,.8,.2,1); }.reveal.is-visible{opacity:1;transform:none}
@keyframes slow-spin{to{transform:rotate(360deg)}}@keyframes bar{to{transform:scaleY(.25)}}@keyframes rise-letter{from{opacity:0;transform:translateY(80px);filter:blur(8px)}}@keyframes iceberg-float{50%{transform:translate(-50%,-49%) rotate(.45deg)}}@keyframes cue{0%{transform:translateY(-3px) rotate(45deg);opacity:0}50%{opacity:1}100%{transform:translateY(7px) rotate(45deg);opacity:0}}@keyframes object-spin{to{transform:rotate(360deg)}}@keyframes pulse{to{opacity:.35;transform:scale(.6)}}@keyframes service-wheel{0%{transform:translate(-50%,0);opacity:0}35%{opacity:1}100%{transform:translate(-50%,7px);opacity:0}}

@media (max-width: 900px) {
  html,body,button,a,input,textarea { cursor:auto; }.cursor{display:none}.site-header{padding:24px;grid-template-columns:1fr auto}.sound{display:none}.menu-toggle{display:block;justify-self:end;width:34px;height:34px;border:0;background:transparent;position:relative}.menu-toggle span:not(.sr-only){position:absolute;left:5px;right:5px;height:1px;background:white;top:12px;transition:.3s}.menu-toggle span:nth-child(2){top:21px}.menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(4.5px) rotate(45deg)}.menu-toggle[aria-expanded="true"] span:nth-child(2){transform:translateY(-4.5px) rotate(-45deg)}
  .main-nav{position:fixed;inset:0;background:rgba(3,7,13,.96);display:flex;align-items:center;justify-content:center;gap:25px;opacity:0;visibility:hidden;transform:scale(.98);transition:.35s;z-index:-1}.main-nav.is-open{opacity:1;visibility:visible;transform:none}.main-nav button{font-size:28px;color:#9aa}.main-nav button:hover,.main-nav button.is-active{transform:none}
  .hero{min-height:600px}.hero h1{top:18vh;width:94vw;font-size:21vw}.iceberg{width:100vw;top:49%}.hero__tagline{width:90%;text-align:center;bottom:14vh;font-size:18px}.waterline{top:58%}
  .hero.hero--spotlight{--spotlight-radius:clamp(80px,26vw,125px);min-height:560px}.hero-spotlight__hint{display:none}.hero-spotlight__controls{justify-content:flex-end}.hero.hero--spotlight .scroll-cue{display:none}
  .about{min-height:160vh}.about__inner{padding:20vh 24px}.about__rock{width:77vw;right:-35vw}.about h2{width:94%;font-size:46px}.about__statement{margin:45vh 0 0}.about__statement h3{font-size:38px}.orbit-list{gap:8px}.orbit-list li{width:96px}
  .service-topline{left:24px;right:24px}.service-topline span:last-child{display:none}.service-panel{top:120px;right:24px;bottom:105px;left:24px;display:flex;flex-direction:column;align-items:flex-start}.service-panel h2{width:100%;font-size:clamp(54px,13vw,88px)}.service-description{max-width:78vw;margin:auto 0 0;font-size:15px}.service-scroll-prompt{right:24px;bottom:28px;min-width:220px;height:54px;padding:5px 18px 5px 5px;font-size:10px}.service-scroll-mouse{width:44px;height:44px}
  .pricing{min-height:0;padding:100px 24px 80px}.pricing__head{grid-template-columns:1fr;gap:38px;margin-bottom:48px}.pricing__head h2{font-size:clamp(54px,14vw,82px)}.pricing__intro{justify-self:start;max-width:520px}.pricing__plans{flex-direction:column;min-height:0}.price-card,.price-card.is-active{width:100%;min-height:0;flex:none;padding:28px;transform:none}.price-card ul{margin-bottom:50px;opacity:1;transform:none;pointer-events:auto}.price-card__price strong{font-size:82px}.price-card__action{left:28px}.pricing-rules__toggle>span{align-items:flex-start;flex-direction:column;gap:8px}.pricing-rules__panel{grid-template-columns:1fr;gap:24px}.pricing-rules.is-open .pricing-rules__panel{max-height:620px}.pricing-rules__panel ul{grid-template-columns:1fr}.pricing-rules__rush{align-items:flex-start;padding:22px 0 0;border-top:1px solid rgba(225,213,196,.13);border-left:0}
  .team{padding:15vh 24px}.team__head{grid-template-columns:1fr}.team__head h2{font-size:68px}.team__head>p:last-child{margin-top:50px}.team__cards{grid-template-columns:1fr;gap:70px}.team-card:nth-child(2){margin-top:0}.portrait{height:115vw}.belief{padding:15vh 24px}.belief h2{font-size:48px}.belief__ring{width:110vw}.journey{padding:15vh 24px}.journey>h2{font-size:44px}.journey__words span{font-size:17vw}.testimonials{padding:15vh 24px}.testimonials__stage{padding:45px 28px;min-height:650px}.quote{inset:45px 28px 100px}.quote blockquote{font-size:34px}.quote-controls{left:28px;right:28px}.contact{padding:15vh 24px 12vh}.contact__grid{grid-template-columns:1fr}.contact-form{grid-template-columns:1fr;padding-top:0}.contact-form label,.contact-form>p,.contact-form__wide,.contact-form>.pill{grid-column:1}.contact__meta{grid-column:1;margin-top:30px}.contact-creature{width:120vw;left:-60vw;opacity:.45}.back-to-top{right:24px}.loader__welcome h2{margin-bottom:55px}
}

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

@media (max-width: 900px) {
  .about.about--domain{min-height:auto;padding:120px 24px 90px}.domain-builder{grid-template-columns:1fr;gap:58px}.domain-builder__copy h2{width:auto;font-size:50px}.domain-builder__copy h2 span{font-size:.58em}.site-simulator__screen{min-height:500px}.sim-site__header{max-width:calc(100% - 20px)}.sim-site__header nav{display:flex}.sim-site__logo span{display:none}.sim-site__main{width:84%;margin-top:0}.site-simulator__toolbar{grid-template-columns:58px 1fr 58px}
  .loader__welcome h2{margin:0}
}

@media (max-width: 700px) {
  .loader__lockup { grid-template-columns:1fr; justify-items:center; gap:22px; text-align:center; }
  .loader__lockup h2 { margin:0; font-size:clamp(64px,20vw,92px); }
  .loader__divider { width:72px; height:1px; background:linear-gradient(90deg,transparent,rgba(201,169,126,.62),transparent); }
  .loader__lockup p { font-size:clamp(28px,9vw,40px); }
  .loader .pill { margin-top:46px; min-width:210px; height:52px; }
}

/* Visual polish v31 — presentation only; interaction hooks remain untouched. */
.team,
.belief,
.journey,
.testimonials,
.contact {
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(224, 205, 178, .1);
  color: #f3eee7;
}

.team .eyebrow,
.belief .eyebrow,
.journey .eyebrow,
.testimonials .eyebrow,
.contact .eyebrow {
  color: #c9a97e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.team {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 9%, rgba(47, 111, 108, .11), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(190, 150, 96, .08), transparent 32%),
    linear-gradient(145deg, #090907 0%, #070909 55%, #080705 100%);
}

.team::before,
.team::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.team::before {
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(214, 193, 164, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 193, 164, .08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent 2%, black 30%, black 78%, transparent);
}

.team::after {
  width: 42vw;
  aspect-ratio: 1;
  right: -19vw;
  bottom: -12vw;
  border: 1px solid rgba(201, 169, 126, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(201, 169, 126, .025), 0 0 0 10vw rgba(201, 169, 126, .016);
}

.team__head {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  column-gap: clamp(60px, 10vw, 170px);
  margin-bottom: 15vh;
}

.team__head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7vh;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 126, .42), rgba(201, 169, 126, .06) 68%, transparent);
}

.team__head h2 {
  max-width: 7.5ch;
  color: #f3eee7;
  text-wrap: balance;
}

.team__head>p:last-child {
  color: rgba(243, 238, 231, .58);
  font-size: clamp(17px, 1.45vw, 21px);
}

.team__cards {
  gap: clamp(45px, 8vw, 130px);
  max-width: 1160px;
}

.team-card {
  position: relative;
}

.team-card::before {
  content: "01";
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  padding: 7px 9px;
  border: 1px solid rgba(243, 238, 231, .28);
  color: rgba(243, 238, 231, .74);
  background: rgba(8, 8, 7, .45);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: .16em;
}

.team-card:nth-child(2)::before {
  content: "02";
}

.portrait {
  border: 1px solid rgba(225, 213, 196, .16);
  border-radius: 2px;
  background:
    radial-gradient(circle at 18% 12%, rgba(95, 160, 169, .18), transparent 30%),
    linear-gradient(145deg, #252017, #090b0b 74%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
}

.portrait::before {
  background: linear-gradient(145deg, #b99a78, #665343 43%, #171918 44%);
  filter: saturate(.7) contrast(1.04);
}

.portrait::after {
  background: linear-gradient(120deg, #44352d, #c5a37f 58%, #705744);
  box-shadow: 0 -45px 0 -10px #18201f;
}

.portrait span {
  background:
    linear-gradient(124deg, rgba(220, 185, 137, .22), transparent 34%),
    radial-gradient(circle at 68% 22%, rgba(103, 181, 180, .17), transparent 25%),
    linear-gradient(to top, rgba(4, 5, 5, .28), transparent 40%);
  mix-blend-mode: screen;
}

.portrait--two {
  background:
    radial-gradient(circle at 84% 12%, rgba(151, 119, 82, .2), transparent 31%),
    linear-gradient(145deg, #1c2726, #090a09 72%);
}

.portrait--two::before {
  background: linear-gradient(145deg, #ae9275, #5b4940 43%, #141817 44%);
}

.portrait--two::after {
  background: linear-gradient(120deg, #332820, #b79776 58%, #604c3c);
  box-shadow: 0 -43px 0 -8px #101817;
}

.team-card h3 {
  margin-top: 28px;
  color: #f3eee7;
  font-size: clamp(28px, 2.35vw, 37px);
  letter-spacing: -.035em;
}

.team-card h3 strong {
  color: #d8c2a5;
}

.team-card>p {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 18px;
  color: #9db3b2;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-card>p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 1px;
  background: #c9a97e;
}

.team-card small {
  color: rgba(243, 238, 231, .48);
  font-size: 15px;
}

.belief {
  background:
    radial-gradient(circle at 50% 52%, rgba(145, 111, 69, .1), transparent 30%),
    linear-gradient(135deg, #090907, #0b0c0b 56%, #070808);
}

.belief::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 37%, rgba(231, 213, 188, .045) 50%, transparent 63%);
}

.belief h2 {
  max-width: 1080px;
  color: #f3eee7;
  text-wrap: balance;
}

.belief h2 em {
  color: #d0b28b;
  font-style: normal;
}

.belief__ring {
  width: min(62vw, 880px);
  border-color: rgba(201, 169, 126, .24);
  box-shadow: inset 0 0 110px rgba(103, 181, 180, .025), 0 0 120px rgba(201, 169, 126, .035);
}

.belief__ring::before,
.belief__ring::after {
  border-color: rgba(157, 179, 178, .13);
}

.belief__ring::after {
  box-shadow: 0 0 100px rgba(201, 169, 126, .08);
}

.journey {
  background:
    radial-gradient(circle at 84% 42%, rgba(58, 113, 110, .11), transparent 27%),
    linear-gradient(155deg, #080807 0%, #0c0c0a 48%, #080a09 100%);
}

.journey>h2 {
  color: rgba(243, 238, 231, .68);
}

.journey__words {
  align-items: stretch;
}

.journey__words span {
  width: fit-content;
  align-self: flex-end;
  color: transparent;
  -webkit-text-stroke: 1px rgba(226, 211, 190, .46);
  text-shadow: 0 0 45px rgba(201, 169, 126, .025);
}

.journey__words span:nth-child(2) {
  align-self: center;
}

.journey__words span:nth-child(3) {
  align-self: flex-start;
}

.journey__words span:hover {
  color: rgba(201, 169, 126, .13);
  -webkit-text-stroke-color: rgba(230, 216, 198, .86);
}

.ray {
  width: 1px;
  background: linear-gradient(transparent, rgba(201, 169, 126, .52), rgba(95, 160, 169, .32), transparent);
  box-shadow: 0 0 26px rgba(201, 169, 126, .19);
}

.testimonials {
  background:
    radial-gradient(circle at 8% 84%, rgba(178, 139, 88, .07), transparent 28%),
    linear-gradient(145deg, #090a09, #070807);
}

.testimonials__stage {
  max-width: 1120px;
  min-height: 600px;
  overflow: hidden;
  border-color: rgba(225, 213, 196, .18);
  border-radius: 3px;
  background:
    radial-gradient(circle at 84% 15%, rgba(95, 160, 169, .09), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(201, 169, 126, .018));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 255, 255, .012);
}

.testimonials__stage::before {
  content: "“";
  position: absolute;
  right: 4vw;
  top: -1.4vw;
  color: rgba(201, 169, 126, .07);
  font-family: Georgia, serif;
  font-size: clamp(180px, 24vw, 350px);
  line-height: 1;
  pointer-events: none;
}

.testimonials__stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, #c9a97e, transparent);
}

.quote__avatar {
  color: #17130f;
  border: 1px solid rgba(255, 255, 255, .28);
  background: linear-gradient(145deg, #e1c7a3, #94734d);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.quote blockquote {
  max-width: 880px;
  color: #f3eee7;
}

.quote>p {
  color: rgba(243, 238, 231, .52);
}

.quote footer strong {
  color: #d8c2a5;
  font-weight: 500;
}

.quote footer span,
.quote-controls span {
  color: rgba(243, 238, 231, .38);
}

.quote-controls {
  padding-top: 24px;
  border-top: 1px solid rgba(225, 213, 196, .12);
}

.quote-controls button {
  color: #e5d5c0;
  border-color: rgba(225, 213, 196, .25);
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.quote-controls button:hover,
.quote-controls button:focus-visible {
  color: #11100e;
  border-color: #c9a97e;
  background: #c9a97e;
  outline: none;
  transform: scale(1.06);
}

.quote-controls b {
  color: #d8c2a5;
}

.contact {
  background:
    radial-gradient(circle at 3% 82%, rgba(62, 126, 122, .15), transparent 29%),
    radial-gradient(circle at 89% 8%, rgba(177, 135, 80, .08), transparent 30%),
    linear-gradient(145deg, #080908, #080705);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(90deg, transparent 49.92%, rgba(225, 213, 196, .2) 50%, transparent 50.08%);
  background-size: 25% 100%;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 82%, transparent);
}

.contact__grid {
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
}

.contact__title h2 {
  max-width: 7.5ch;
  color: #f3eee7;
  text-wrap: balance;
}

.contact-form {
  gap: 30px 34px;
  margin-top: 1vh;
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid rgba(225, 213, 196, .16);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .032), rgba(201, 169, 126, .015));
  box-shadow: 0 30px 75px rgba(0, 0, 0, .22);
}

.contact-form>p {
  color: rgba(243, 238, 231, .58);
}

.contact-form>p strong {
  color: #d4b58d;
  font-weight: 500;
}

.contact-form label {
  color: rgba(216, 194, 165, .58);
  letter-spacing: .12em;
}

.contact-form input,
.contact-form textarea {
  color: #f3eee7;
  border-bottom-color: rgba(225, 213, 196, .18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 238, 231, .26);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a97e;
}

.contact-form .pill {
  width: 150px;
  min-width: 150px;
  color: #e8dac7;
  border-color: rgba(225, 213, 196, .45);
}

.contact-form .pill::after {
  background: #c9a97e;
}

.contact-form .pill span:nth-child(2) {
  color: #17130f;
}

.contact__meta p {
  color: rgba(243, 238, 231, .36);
}

.contact__meta a {
  color: #d4b58d;
}

.contact-creature {
  filter: drop-shadow(0 0 30px rgba(69, 145, 140, .2));
}

.contact-creature::before {
  border-color: rgba(115, 181, 177, .24);
  background: radial-gradient(ellipse at 52% 44%, rgba(81, 149, 145, .14), transparent 48%);
  box-shadow: inset 0 0 70px rgba(201, 169, 126, .05);
}

.contact-creature span {
  background: #d8c4a6;
  box-shadow: 0 0 12px 3px rgba(80, 174, 169, .34);
}

.back-to-top {
  color: #d8c7b0;
  border-color: rgba(225, 213, 196, .26);
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #17130f;
  border-color: #c9a97e;
  background: #c9a97e;
  outline: none;
  transform: translateY(-4px);
}

.toast {
  color: #17130f;
  border: 1px solid rgba(255, 255, 255, .34);
  background: #d8c2a5;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .3);
}

@media (max-width: 900px) {
  .team {
    min-height: auto;
    padding: 120px 24px;
  }

  .team__head {
    grid-template-columns: 1fr;
    margin-bottom: 115px;
  }

  .team__head::after {
    bottom: -55px;
  }

  .team__head h2 {
    font-size: clamp(62px, 17vw, 92px);
  }

  .team__head>p:last-child {
    margin-top: 42px;
  }

  .portrait {
    height: min(125vw, 690px);
  }

  .belief {
    min-height: 95vh;
  }

  .belief__ring {
    width: 112vw;
  }

  .journey {
    min-height: 100vh;
  }

  .journey__words {
    gap: 12px;
  }

  .journey__words span,
  .journey__words span:nth-child(2),
  .journey__words span:nth-child(3) {
    align-self: flex-start;
  }

  .testimonials {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .testimonials__stage {
    min-height: 620px;
  }

  .contact {
    min-height: auto;
    padding-top: 120px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 12px;
    padding: 30px 24px;
  }

  .contact__meta {
    grid-column: 1;
  }
}

/* Floating navigation v32 */
.floating-menu {
  position: fixed;
  z-index: 2400;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 42px);
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
  color: #f3eee7;
  transition: opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1), visibility .45s;
}

body.is-locked .floating-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

.floating-menu button {
  font: inherit;
}

.floating-menu__toggle {
  width: 116px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  margin-left: auto;
  padding: 5px 6px 5px 20px;
  border: 1px solid rgba(225, 213, 196, .26);
  border-radius: 999px;
  color: #efe7dc;
  background: rgba(12, 12, 10, .74);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .025);
  backdrop-filter: blur(18px) saturate(1.1);
  pointer-events: auto;
  transition: color .3s, border-color .3s, background .3s, transform .45s cubic-bezier(.16, 1, .3, 1), opacity .25s;
}

.floating-menu__toggle>span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.floating-menu__toggle>i {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 213, 196, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
}

.floating-menu__toggle b {
  position: absolute;
  width: 11px;
  height: 1px;
  background: #d8c2a5;
  transition: transform .35s;
}

.floating-menu__toggle b:first-child {
  transform: translateY(-2px);
}

.floating-menu__toggle b:last-child {
  transform: translateY(2px);
}

.floating-menu__toggle:hover,
.floating-menu__toggle:focus-visible {
  color: #17130f;
  border-color: #c9a97e;
  background: #c9a97e;
  outline: none;
  transform: translateY(-2px);
}

.floating-menu__toggle:hover>i,
.floating-menu__toggle:focus-visible>i {
  border-color: rgba(23, 19, 15, .2);
  background: rgba(23, 19, 15, .07);
}

.floating-menu__toggle:hover b,
.floating-menu__toggle:focus-visible b {
  background: #17130f;
}

.floating-menu.is-open .floating-menu__toggle {
  opacity: 0;
  transform: scale(.88);
  pointer-events: none;
}

.floating-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(225, 213, 196, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 3%, rgba(95, 160, 169, .12), transparent 27%),
    linear-gradient(145deg, rgba(20, 20, 17, .96), rgba(9, 10, 9, .96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(255, 255, 255, .02);
  backdrop-filter: blur(26px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.86);
  transform-origin: 100% 0;
  clip-path: inset(0 0 86% 62% round 24px);
  pointer-events: none;
  transition:
    opacity .28s ease,
    visibility .55s,
    transform .62s cubic-bezier(.16, 1, .3, 1),
    clip-path .62s cubic-bezier(.16, 1, .3, 1);
}

.floating-menu.is-open .floating-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  clip-path: inset(0 round 18px);
  pointer-events: auto;
}

.floating-menu__topline {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px 10px 11px;
  color: rgba(243, 238, 231, .38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.floating-menu__close {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(225, 213, 196, .18);
  border-radius: 50%;
  color: #d8c2a5;
  background: rgba(255, 255, 255, .025);
  transition: border-color .3s, background .3s, transform .35s;
}

.floating-menu__close i::before,
.floating-menu__close i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.floating-menu__close i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-menu__close:hover,
.floating-menu__close:focus-visible {
  border-color: #c9a97e;
  background: rgba(201, 169, 126, .13);
  outline: none;
  transform: rotate(90deg);
}

.floating-menu__links {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(225, 213, 196, .11);
  list-style: none;
}

.floating-menu__links li {
  margin: 0;
  border-bottom: 1px solid rgba(225, 213, 196, .11);
}

.floating-menu__links button {
  width: 100%;
  min-height: 51px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 12px 0 7px;
  border: 0;
  color: rgba(243, 238, 231, .5);
  background: transparent;
  text-align: left;
  opacity: 0;
  transform: translateY(-9px);
  transition: color .3s, background .3s, padding .3s, opacity .4s, transform .5s cubic-bezier(.16, 1, .3, 1);
}

.floating-menu.is-open .floating-menu__links button {
  opacity: 1;
  transform: none;
}

.floating-menu.is-open .floating-menu__links li:nth-child(1) button { transition-delay: .12s; }
.floating-menu.is-open .floating-menu__links li:nth-child(2) button { transition-delay: .15s; }
.floating-menu.is-open .floating-menu__links li:nth-child(3) button { transition-delay: .18s; }
.floating-menu.is-open .floating-menu__links li:nth-child(4) button { transition-delay: .21s; }
.floating-menu.is-open .floating-menu__links li:nth-child(5) button { transition-delay: .24s; }
.floating-menu.is-open .floating-menu__links li:nth-child(6) button { transition-delay: .27s; }

.floating-menu__links button>span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 213, 196, .14);
  border-radius: 50%;
  color: rgba(243, 238, 231, .34);
  font-size: 8px;
  letter-spacing: .04em;
  transition: color .3s, border-color .3s, background .3s;
}

.floating-menu__links strong {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -.01em;
}

.floating-menu__links button>i {
  font-style: normal;
  font-size: 11px;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .3s, transform .3s;
}

.floating-menu__links button:hover,
.floating-menu__links button:focus-visible,
.floating-menu__links button.is-active {
  padding-left: 12px;
  color: #f3eee7;
  background: rgba(201, 169, 126, .065);
  outline: none;
}

.floating-menu__links button:hover>span,
.floating-menu__links button:focus-visible>span,
.floating-menu__links button.is-active>span {
  color: #17130f;
  border-color: #c9a97e;
  background: #c9a97e;
}

.floating-menu__links button:hover>i,
.floating-menu__links button:focus-visible>i {
  opacity: 1;
  transform: none;
}

.floating-menu__cta {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 22px;
  border: 1px solid #c9a97e;
  border-radius: 999px;
  color: #17130f;
  background: #c9a97e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: color .3s, background .3s, opacity .45s .28s, transform .55s .28s cubic-bezier(.16, 1, .3, 1);
}

.floating-menu.is-open .floating-menu__cta {
  opacity: 1;
  transform: none;
}

.floating-menu__cta i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #efe6da;
  background: #17130f;
  font-style: normal;
  transition: transform .35s;
}

.floating-menu__cta:hover,
.floating-menu__cta:focus-visible {
  color: #f3eee7;
  background: transparent;
  outline: none;
}

.floating-menu__cta:hover i,
.floating-menu__cta:focus-visible i {
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .floating-menu {
    top: 16px;
    right: 16px;
    width: min(350px, calc(100vw - 32px));
  }

  .floating-menu__toggle {
    width: 106px;
    height: 46px;
    padding-left: 16px;
  }

  .floating-menu__toggle>i {
    width: 34px;
    height: 34px;
  }

  .floating-menu__panel {
    padding: 11px;
    border-radius: 16px;
  }

  .floating-menu__links button {
    min-height: 49px;
  }

  .floating-menu__cta {
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-menu,
  .floating-menu *,
  .floating-menu *::before,
  .floating-menu *::after {
    transition-duration: .01ms !important;
  }
}

/* Frequently asked questions v34 */
.faq {
  position: relative;
  isolation: isolate;
  min-height: 120vh;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(65px, 10vw, 170px);
  align-items: start;
  padding: clamp(110px, 17vh, 180px) var(--gutter);
  overflow: hidden;
  border-top: 1px solid rgba(225, 213, 196, .1);
  color: #f3eee7;
  background:
    radial-gradient(circle at 10% 12%, rgba(95, 160, 169, .1), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(188, 143, 84, .075), transparent 31%),
    linear-gradient(145deg, #080908, #0b0a08 58%, #070807);
}

.faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(225, 213, 196, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 213, 196, .08) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(112deg, black, transparent 56%);
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq .eyebrow {
  margin-bottom: 34px;
  color: #c9a97e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.faq__intro h2 {
  max-width: 7.8ch;
  margin: 0;
  color: #f3eee7;
  font-size: clamp(58px, 6.7vw, 106px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.faq__summary {
  max-width: 410px;
  margin: 42px 0 0;
  color: rgba(243, 238, 231, .52);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
}

.faq__count {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}

.faq__count>span {
  color: #d2b58e;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.06em;
}

.faq__count small {
  padding-left: 18px;
  border-left: 1px solid rgba(225, 213, 196, .18);
  color: rgba(243, 238, 231, .34);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.faq__list {
  border-top: 1px solid rgba(225, 213, 196, .16);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(225, 213, 196, .14);
  transition: background .35s, border-color .35s;
}

.faq-item.is-open {
  border-color: rgba(201, 169, 126, .38);
  background: linear-gradient(90deg, rgba(201, 169, 126, .055), transparent 74%);
}

.faq-question {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 38px 1fr 36px;
  gap: 18px;
  align-items: center;
  padding: 19px 8px;
  border: 0;
  color: rgba(243, 238, 231, .67);
  background: transparent;
  text-align: left;
  transition: color .3s, padding .35s;
}

.faq-question>span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 213, 196, .15);
  border-radius: 50%;
  color: rgba(243, 238, 231, .32);
  font-size: 8px;
  letter-spacing: .04em;
  transition: color .3s, border-color .3s, background .3s;
}

.faq-question strong {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.faq-question>i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(225, 213, 196, .16);
  border-radius: 50%;
  transition: border-color .3s, transform .45s cubic-bezier(.16, 1, .3, 1), background .3s;
}

.faq-question>i::before,
.faq-question>i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1px;
  background: #d8c2a5;
  transform: translate(-50%, -50%);
}

.faq-question>i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .3s;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-item.is-open .faq-question {
  padding-left: 14px;
  color: #f3eee7;
  outline: none;
}

.faq-question:hover>span,
.faq-question:focus-visible>span,
.faq-item.is-open .faq-question>span {
  color: #17130f;
  border-color: #c9a97e;
  background: #c9a97e;
}

.faq-question:hover>i,
.faq-question:focus-visible>i {
  border-color: rgba(201, 169, 126, .62);
  background: rgba(201, 169, 126, .07);
}

.faq-item.is-open .faq-question>i {
  border-color: #c9a97e;
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question>i::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .6s cubic-bezier(.16, 1, .3, 1), opacity .38s;
}

.faq-answer>div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 58px 32px 70px;
  color: rgba(243, 238, 231, .5);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

@media (max-width: 900px) {
  .faq {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 90px;
    padding: 120px 24px;
  }

  .faq__intro {
    position: static;
  }

  .faq__intro h2 {
    max-width: 9ch;
    font-size: clamp(60px, 16vw, 90px);
  }

  .faq__summary {
    margin-top: 34px;
  }

  .faq__count {
    margin-top: 38px;
  }

  .faq-question {
    min-height: 82px;
    grid-template-columns: 34px 1fr 32px;
    gap: 12px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .faq-question strong {
    font-size: 17px;
  }

  .faq-question>i {
    width: 31px;
    height: 31px;
  }

  .faq-answer p {
    padding: 0 38px 28px 46px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq *,
  .faq *::before,
  .faq *::after {
    transition-duration: .01ms !important;
  }
}

/* Light Safari-inspired treatment for the interactive site preview. */
.site-simulator__browser {
  overflow: hidden;
  border: 1px solid #c9c9ce;
  border-radius: clamp(18px, 2vw, 24px);
  background: #fff;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .34),
    0 10px 26px rgba(0, 0, 0, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.site-simulator__toolbar {
  height: 50px;
  color: #6e6e73;
  background: linear-gradient(180deg, #fff 0%, #f3f3f5 100%);
  border-bottom-color: #d6d6da;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

.site-simulator__lights {
  gap: 8px;
}

.site-simulator__lights i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: inset 0 0 0 .5px rgba(0, 0, 0, .06);
}

.site-simulator__lights i:first-child { background: #ff5f57; }
.site-simulator__lights i:nth-child(2) { background: #febc2e; }
.site-simulator__lights i:nth-child(3) { background: #28c840; }

.site-simulator__address {
  width: min(340px, 100%);
  color: #48484a;
  background: #e9e9ed;
  border-color: #dedee3;
  border-radius: 9px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .9);
}

.site-simulator__screen {
  --sim-accent: #0071e3;
  color: #1d1d1f;
  background:
    radial-gradient(circle at 72% 44%, rgba(0, 113, 227, .055), transparent 34%),
    linear-gradient(145deg, #fff, #f7f7f9 72%);
}

.sim-starter::before {
  background: radial-gradient(circle, rgba(0, 113, 227, .08), transparent 67%);
}

.sim-starter__brand small {
  color: #86868b;
}

.sim-domain-field {
  color: #6e6e73;
  background: #fff;
  border-color: #d2d2d7;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
}

.sim-domain-field input {
  color: #1d1d1f;
  border-bottom-color: #aeaeb2;
}

.sim-domain-field input:focus {
  border-color: #0071e3;
}

.sim-domain-field input::placeholder {
  color: #8e8e93;
}

.sim-enter {
  color: #1d1d1f;
}

.sim-enter i {
  color: #fff;
  background: #1d1d1f;
}

.sim-enter:hover i,
.sim-enter:focus-visible i {
  background: #0071e3;
}

.sim-site {
  color: #1d1d1f;
  background: linear-gradient(145deg, #fff, #f7f7f9);
}

.sim-site::after {
  background: radial-gradient(circle 135px at var(--sim-pointer-x) var(--sim-pointer-y), color-mix(in srgb, var(--sim-accent), transparent 92%), transparent 72%);
  mix-blend-mode: multiply;
}

.sim-site__ticker {
  color: rgba(29, 29, 31, .46);
  background: rgba(247, 247, 249, .92);
  border-bottom-color: #e5e5ea;
}

.sim-site__header {
  color: #1d1d1f;
  background: rgba(255, 255, 255, .88);
  border-color: rgba(60, 60, 67, .18);
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.sim-site__logo b {
  border-color: rgba(29, 29, 31, .32);
}

.sim-site__header button {
  color: rgba(29, 29, 31, .5);
}

.sim-site__header nav button.is-active {
  color: #1d1d1f;
}

.sim-site__edit {
  color: #fff !important;
  background: #1d1d1f !important;
}

.sim-site__brand-name {
  color: #1d1d1f;
}

#sim-kicker {
  color: rgba(29, 29, 31, .54);
}

#sim-description {
  color: rgba(29, 29, 31, .5);
}

.sim-site__orb {
  overflow: hidden;
  border-color: color-mix(in srgb, var(--sim-accent), transparent 48%);
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, .98) 0 8%, transparent 30%),
    radial-gradient(circle at 72% 22%, color-mix(in srgb, var(--sim-accent) 58%, #67e8ff) 0, transparent 38%),
    radial-gradient(circle at 42% 58%, color-mix(in srgb, var(--sim-accent) 42%, #9b5cff) 0, transparent 47%),
    linear-gradient(145deg, #fdfdff 12%, #dcecff 48%, #e8ddff 100%);
  box-shadow:
    0 -24px 92px color-mix(in srgb, var(--sim-accent), transparent 62%),
    0 28px 76px rgba(94, 92, 230, .22),
    inset 0 30px 86px rgba(255, 255, 255, .62),
    inset 0 -22px 70px color-mix(in srgb, var(--sim-accent), transparent 74%);
  filter: saturate(1.16);
}

.sim-site__orb::before,
.sim-site__orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sim-site__orb::before {
  inset: -8%;
  background:
    conic-gradient(
      from 210deg,
      transparent 0 12%,
      color-mix(in srgb, var(--sim-accent), transparent 42%) 25%,
      rgba(126, 86, 255, .5) 40%,
      transparent 58%,
      rgba(42, 205, 255, .48) 76%,
      transparent 94%
    );
  filter: blur(28px);
  mix-blend-mode: multiply;
  opacity: .62;
  animation: sim-orb-aurora 16s linear infinite;
}

.sim-site__orb::after {
  inset: 8%;
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, .9), transparent 31%),
    radial-gradient(circle at 70% 64%, color-mix(in srgb, var(--sim-accent), transparent 66%), transparent 46%);
  filter: blur(14px);
  opacity: .68;
  animation: sim-orb-breathe 5.5s ease-in-out infinite;
}

@keyframes sim-orb-aurora {
  to { transform: rotate(360deg); }
}

@keyframes sim-orb-breathe {
  50% {
    opacity: .92;
    filter: blur(18px) saturate(1.25);
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sim-site__orb::before,
  .sim-site__orb::after {
    animation: none;
  }
}

/* Refined cool-luxury palette: graphite, ice blue and restrained violet. */
:root {
  --ink: #f4f6fb;
  --muted: #929bad;
  --cyan: #68dff0;
  --blue: #667cff;
  --night: #080a10;
  --deep: #05070b;
  --accent: #91a7ff;
  --accent-soft: #c6d0ff;
  --accent-ink: #0d1220;
  --cool-line: rgba(199, 210, 239, .14);
}

html,
body {
  background: var(--deep);
}

.loader {
  background: #07090e;
}

.loader::before {
  background:
    radial-gradient(circle at 42% 46%, rgba(101, 124, 255, .16), transparent 27%),
    radial-gradient(circle at 61% 54%, rgba(75, 211, 231, .08), transparent 26%),
    linear-gradient(135deg, #0b0e15 0%, #0d1119 55%, #07090e 100%);
}

.loader__lockup h2,
.loader__lockup p {
  color: #f3f5fa;
}

.loader__divider {
  background: linear-gradient(transparent, rgba(145, 167, 255, .72) 18%, rgba(104, 223, 240, .5) 82%, transparent);
}

.loader .pill {
  color: var(--accent-ink);
  border-color: rgba(183, 199, 255, .88);
  background: linear-gradient(135deg, #aab9ff, #78d7e6);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .3), 0 0 54px rgba(112, 139, 255, .16);
}

.loader .pill::after {
  background: #f4f6fb;
}

.about.about--domain {
  --domain-ivory: #f4f6fb;
  --domain-warm: #9fb1ff;
  --domain-muted: #929bad;
  background:
    radial-gradient(circle at 77% 42%, rgba(91, 116, 238, .17), transparent 31%),
    radial-gradient(circle at 18% 14%, rgba(81, 207, 224, .07), transparent 26%),
    linear-gradient(135deg, #07090e, #0d1119 58%, #07090f);
}

.domain-builder__copy h2 span {
  color: #aab8ff;
}

.domain-builder__intro {
  color: #929bad;
}

.domain-builder__status {
  color: #78849a;
}

.domain-builder__status i {
  background: #91a7ff;
  box-shadow: 0 0 16px rgba(112, 139, 255, .68);
}

.site-simulator__hint {
  color: #737d90;
}

.services {
  background: #07090e;
}

.services__sticky {
  color: #f2f4f9;
  background: linear-gradient(145deg, #090c12, #06080d);
}

.service-phase,
.pricing__eyebrow,
.pricing-rules__toggle small,
.pricing-rules__rush strong {
  color: var(--accent);
}

.service-panel h2,
.pricing,
.price-card h3,
.pricing-rules__toggle {
  color: #f2f4f9;
}

.service-description {
  color: rgba(238, 242, 250, .76);
}

.service-scroll-prompt {
  color: #111622;
  background: #f1f4fa;
}

.service-scroll-mouse {
  background: conic-gradient(#657cf0 0 var(--service-progress), rgba(101, 124, 240, .18) var(--service-progress) 100%);
}

.service-scroll-mouse::before {
  background: #91a7ff;
}

.pricing {
  background:
    radial-gradient(circle at 86% 6%, rgba(95, 116, 235, .1), transparent 30%),
    linear-gradient(145deg, #0a0c12 0%, #070a10 55%, #080a0f 100%);
}

.pricing__glow {
  background: radial-gradient(circle, rgba(103, 126, 244, .19), rgba(72, 181, 211, .05) 45%, transparent 70%);
}

.pricing__intro p,
.pricing-rules__panel li {
  color: rgba(236, 240, 249, .64);
}

.pricing__intro button {
  color: #ccd5f4;
  border-bottom-color: rgba(145, 167, 255, .58);
}

.price-card {
  border-color: rgba(199, 210, 239, .13);
  color: rgba(236, 240, 249, .58);
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(117, 141, 244, .1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .038), rgba(130, 151, 232, .012));
}

.price-card::before {
  background: linear-gradient(90deg, #91a7ff, #68dff0);
}

.price-card::after {
  border-color: rgba(145, 167, 255, .13);
  box-shadow: 0 0 0 32px rgba(145, 167, 255, .028), 0 0 0 65px rgba(104, 223, 240, .016);
}

.price-card.is-active {
  color: #f2f4f9;
  border-color: rgba(145, 167, 255, .5);
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(112, 139, 255, .2), transparent 38%),
    linear-gradient(145deg, rgba(115, 137, 239, .1), rgba(255, 255, 255, .02));
}

.price-card__price,
.price-card li::before {
  color: var(--accent);
}

.price-card li::before {
  background: var(--accent);
}

.price-card.is-active .price-card__action {
  color: #d5dcf5;
}

.pricing-rules,
.pricing-rules__rush {
  border-color: var(--cool-line);
}

.pricing-rules__toggle i {
  border-color: rgba(199, 210, 239, .2);
}

.pricing-rules__toggle i::before,
.pricing-rules__toggle i::after {
  background: #c6d0ed;
}

.pricing-rules.is-open .pricing-rules__toggle i {
  border-color: var(--accent);
}

.pricing-rules__panel li::before {
  border-color: #6f86e8;
}

.team,
.belief,
.journey,
.testimonials,
.contact,
.faq {
  border-top-color: rgba(199, 210, 239, .1);
  color: #f2f4f9;
}

.team .eyebrow,
.belief .eyebrow,
.journey .eyebrow,
.testimonials .eyebrow,
.contact .eyebrow,
.faq .eyebrow {
  color: var(--accent);
}

.team {
  background:
    radial-gradient(circle at 82% 9%, rgba(67, 183, 205, .11), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(105, 126, 237, .09), transparent 32%),
    linear-gradient(145deg, #090b11 0%, #070a10 55%, #080a0f 100%);
}

.team::before {
  background-image:
    linear-gradient(rgba(199, 210, 239, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 210, 239, .07) 1px, transparent 1px);
}

.team::after {
  border-color: rgba(145, 167, 255, .14);
  box-shadow: 0 0 0 5vw rgba(145, 167, 255, .026), 0 0 0 10vw rgba(104, 223, 240, .014);
}

.team__head::after,
.team-card > p::after {
  background: linear-gradient(90deg, rgba(145, 167, 255, .64), rgba(104, 223, 240, .08) 68%, transparent);
}

.team__head h2,
.team-card h3,
.belief h2,
.quote blockquote,
.contact__title h2,
.faq__intro h2 {
  color: #f2f4f9;
}

.team-card h3 strong,
.quote footer strong,
.quote-controls b,
.contact-form > p strong,
.contact__meta a {
  color: var(--accent-soft);
}

.portrait {
  border-color: rgba(199, 210, 239, .15);
  background:
    radial-gradient(circle at 18% 12%, rgba(91, 188, 213, .18), transparent 30%),
    linear-gradient(145deg, #1c222d, #090b10 74%);
}

.portrait span {
  background:
    linear-gradient(124deg, rgba(132, 151, 235, .18), transparent 34%),
    radial-gradient(circle at 68% 22%, rgba(83, 206, 219, .16), transparent 25%),
    linear-gradient(to top, rgba(4, 6, 9, .32), transparent 40%);
}

.portrait--two {
  background:
    radial-gradient(circle at 84% 12%, rgba(117, 137, 222, .18), transparent 31%),
    linear-gradient(145deg, #1b232c, #090b10 72%);
}

.belief {
  background:
    radial-gradient(circle at 50% 52%, rgba(102, 124, 239, .13), transparent 31%),
    linear-gradient(135deg, #090b11, #0b0e15 56%, #07090e);
}

.belief::after {
  background: linear-gradient(112deg, transparent 37%, rgba(208, 218, 247, .05) 50%, transparent 63%);
}

.belief h2 em {
  color: #aebcff;
}

.belief__ring,
.belief__ring::before,
.belief__ring::after {
  border-color: rgba(122, 151, 255, .22);
}

.belief__ring {
  box-shadow: inset 0 0 110px rgba(104, 223, 240, .035), 0 0 120px rgba(112, 139, 255, .06);
}

.belief__ring::after {
  box-shadow: 0 0 100px rgba(112, 139, 255, .12);
}

.journey {
  background:
    radial-gradient(circle at 84% 42%, rgba(66, 186, 210, .11), transparent 27%),
    linear-gradient(155deg, #080a0f 0%, #0c0f16 48%, #080a10 100%);
}

.journey > h2 {
  color: rgba(238, 242, 250, .7);
}

.journey__words span {
  -webkit-text-stroke-color: rgba(198, 210, 241, .5);
  text-shadow: 0 0 45px rgba(112, 139, 255, .04);
}

.journey__words span:hover {
  color: rgba(112, 139, 255, .15);
  -webkit-text-stroke-color: rgba(222, 229, 250, .92);
}

.ray {
  background: linear-gradient(transparent, rgba(145, 167, 255, .56), rgba(104, 223, 240, .34), transparent);
  box-shadow: 0 0 28px rgba(112, 139, 255, .22);
}

.testimonials {
  background:
    radial-gradient(circle at 8% 84%, rgba(101, 126, 235, .08), transparent 28%),
    linear-gradient(145deg, #090b11, #07090e);
}

.testimonials__stage {
  border-color: rgba(199, 210, 239, .17);
  background:
    radial-gradient(circle at 84% 15%, rgba(78, 194, 216, .09), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(112, 139, 255, .025));
}

.testimonials__stage::before {
  color: rgba(145, 167, 255, .08);
}

.testimonials__stage::after {
  background: linear-gradient(90deg, #91a7ff, #68dff0, transparent);
}

.quote__avatar {
  color: var(--accent-ink);
  background: linear-gradient(145deg, #d7dfff, #7188dc);
}

.quote > p {
  color: rgba(238, 242, 250, .52);
}

.quote footer span,
.quote-controls span {
  color: rgba(238, 242, 250, .38);
}

.quote-controls {
  border-top-color: rgba(199, 210, 239, .12);
}

.quote-controls button {
  color: #d1d9f2;
  border-color: rgba(199, 210, 239, .24);
}

.quote-controls button:hover,
.quote-controls button:focus-visible {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.contact {
  background:
    radial-gradient(circle at 3% 82%, rgba(56, 190, 211, .13), transparent 29%),
    radial-gradient(circle at 89% 8%, rgba(100, 122, 236, .1), transparent 30%),
    linear-gradient(145deg, #080a10, #07090e);
}

.contact::before {
  background-image: linear-gradient(90deg, transparent 49.92%, rgba(199, 210, 239, .17) 50%, transparent 50.08%);
}

.contact-form {
  border-color: rgba(199, 210, 239, .15);
  background: linear-gradient(145deg, rgba(255, 255, 255, .032), rgba(112, 139, 255, .02));
}

.contact-form > p {
  color: rgba(238, 242, 250, .58);
}

.contact-form label {
  color: rgba(198, 210, 241, .56);
}

.contact-form input,
.contact-form textarea {
  color: #f2f4f9;
  border-bottom-color: rgba(199, 210, 239, .18);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form .pill {
  color: #d8def3;
  border-color: rgba(199, 210, 239, .42);
}

.contact-form .pill::after {
  background: linear-gradient(135deg, #aab9ff, #78d7e6);
}

.contact-form .pill span:nth-child(2) {
  color: var(--accent-ink);
}

.contact-creature {
  filter: drop-shadow(0 0 32px rgba(85, 177, 224, .25));
}

.contact-creature::before {
  border-color: rgba(111, 159, 244, .27);
  background: radial-gradient(ellipse at 52% 44%, rgba(82, 171, 231, .15), transparent 48%);
  box-shadow: inset 0 0 76px rgba(112, 139, 255, .08);
}

.contact-creature span {
  background: #c8d7ff;
  box-shadow: 0 0 14px 3px rgba(87, 210, 235, .38);
}

.back-to-top {
  color: #cbd4ef;
  border-color: rgba(199, 210, 239, .25);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.toast {
  color: var(--accent-ink);
  background: #c7d1ff;
}

.floating-menu {
  color: #f2f4f9;
}

.floating-menu__toggle {
  color: #e7eaf3;
  border-color: rgba(199, 210, 239, .22);
  background: rgba(10, 12, 18, .76);
}

.floating-menu__toggle > i {
  border-color: rgba(199, 210, 239, .16);
}

.floating-menu__toggle b {
  background: #c6d0ed;
}

.floating-menu__toggle:hover,
.floating-menu__toggle:focus-visible {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: linear-gradient(135deg, #aab9ff, #78d7e6);
}

.floating-menu__toggle:hover b,
.floating-menu__toggle:focus-visible b {
  background: var(--accent-ink);
}

.floating-menu__panel {
  border-color: rgba(199, 210, 239, .18);
  background:
    radial-gradient(circle at 88% 3%, rgba(81, 199, 221, .13), transparent 27%),
    linear-gradient(145deg, rgba(15, 18, 27, .97), rgba(8, 10, 16, .97));
}

.floating-menu__topline {
  color: rgba(238, 242, 250, .38);
}

.floating-menu__close {
  color: #cbd4f3;
  border-color: rgba(199, 210, 239, .17);
}

.floating-menu__close:hover,
.floating-menu__close:focus-visible {
  border-color: var(--accent);
  background: rgba(145, 167, 255, .12);
}

.floating-menu__links,
.floating-menu__links li {
  border-color: rgba(199, 210, 239, .1);
}

.floating-menu__links button {
  color: rgba(238, 242, 250, .5);
}

.floating-menu__links button > span {
  color: rgba(238, 242, 250, .34);
  border-color: rgba(199, 210, 239, .13);
}

.floating-menu__links button:hover,
.floating-menu__links button:focus-visible,
.floating-menu__links button.is-active {
  color: #f2f4f9;
  background: rgba(112, 139, 255, .075);
}

.floating-menu__links button:hover > span,
.floating-menu__links button:focus-visible > span,
.floating-menu__links button.is-active > span {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.floating-menu__cta {
  color: var(--accent-ink);
  border-color: #91a7ff;
  background: linear-gradient(135deg, #aab9ff, #78d7e6);
}

.floating-menu__cta:hover,
.floating-menu__cta:focus-visible {
  color: #f2f4f9;
  border-color: #91a7ff;
}

.faq {
  background:
    radial-gradient(circle at 10% 12%, rgba(71, 192, 216, .1), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(101, 124, 239, .09), transparent 31%),
    linear-gradient(145deg, #080a10, #0b0e15 58%, #07090e);
}

.faq::before {
  background-image:
    linear-gradient(rgba(199, 210, 239, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 210, 239, .07) 1px, transparent 1px);
}

.faq__summary {
  color: rgba(238, 242, 250, .52);
}

.faq__count > span {
  color: #aebcff;
}

.faq__count small,
.faq-question > span {
  color: rgba(238, 242, 250, .34);
  border-color: rgba(199, 210, 239, .16);
}

.faq__list,
.faq-item {
  border-color: rgba(199, 210, 239, .14);
}

.faq-item.is-open {
  border-color: rgba(145, 167, 255, .4);
  background: linear-gradient(90deg, rgba(112, 139, 255, .065), transparent 74%);
}

.faq-question {
  color: rgba(238, 242, 250, .68);
}

.faq-question > i {
  border-color: rgba(199, 210, 239, .15);
}

.faq-question > i::before,
.faq-question > i::after {
  background: #c6d0ed;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-item.is-open .faq-question {
  color: #f2f4f9;
}

.faq-question:hover > span,
.faq-question:focus-visible > span,
.faq-item.is-open .faq-question > span {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.faq-question:hover > i,
.faq-question:focus-visible > i {
  border-color: rgba(145, 167, 255, .62);
  background: rgba(145, 167, 255, .08);
}

.faq-item.is-open .faq-question > i {
  border-color: var(--accent);
}

/* Seamless section tones: every scene enters and exits on the same graphite base. */
:root {
  --section-base: #080a0f;
  --section-mid: #0a0d14;
  --section-deep: #06080c;
}

main {
  background: var(--section-base);
}

.about.about--domain,
.services,
.services__sticky,
.pricing,
.belief,
.journey,
.testimonials,
.faq,
.contact {
  border-top-color: transparent;
}

.about.about--domain {
  background:
    radial-gradient(circle at 78% 43%, rgba(101, 124, 239, .105), transparent 34%),
    radial-gradient(circle at 17% 14%, rgba(76, 198, 219, .045), transparent 28%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 50%, var(--section-base) 100%);
  box-shadow: 0 -90px 140px rgba(8, 10, 15, .9);
}

.services {
  background: var(--section-base);
}

.services__sticky {
  background:
    radial-gradient(circle at 70% 42%, rgba(91, 112, 220, .055), transparent 34%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-deep) 48%, var(--section-base) 100%);
}

.pricing {
  background:
    radial-gradient(circle at 86% 13%, rgba(101, 124, 239, .085), transparent 32%),
    radial-gradient(circle at 16% 76%, rgba(75, 191, 214, .035), transparent 28%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 52%, var(--section-base) 100%);
}

.pricing::before {
  background-image: none;
}

.belief {
  background:
    radial-gradient(circle at 50% 52%, rgba(102, 124, 239, .095), transparent 33%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 50%, var(--section-base) 100%);
}

.journey {
  background:
    radial-gradient(circle at 83% 44%, rgba(66, 186, 210, .065), transparent 30%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 50%, var(--section-base) 100%);
}

.testimonials {
  background:
    radial-gradient(circle at 10% 82%, rgba(101, 126, 235, .05), transparent 30%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 50%, var(--section-base) 100%);
}

.faq {
  background:
    radial-gradient(circle at 12% 14%, rgba(71, 192, 216, .055), transparent 29%),
    radial-gradient(circle at 88% 78%, rgba(101, 124, 239, .055), transparent 31%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 50%, var(--section-base) 100%);
}

.contact {
  background:
    radial-gradient(circle at 5% 80%, rgba(56, 190, 211, .07), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(100, 122, 236, .055), transparent 31%),
    linear-gradient(180deg, var(--section-base) 0%, var(--section-mid) 48%, var(--section-base) 100%);
}

/* Compact testimonial wall. */
.testimonials {
  min-height: auto;
  padding: clamp(88px, 12vh, 132px) var(--gutter);
}

.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.testimonials__head .eyebrow {
  margin-bottom: 20px;
}

.testimonials__head h2 {
  margin: 0;
  color: #f2f4f9;
  font-size: clamp(42px, 5.1vw, 78px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.055em;
}

.testimonials__head > p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 4px;
  color: rgba(238, 242, 250, .38);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.testimonials__head > p strong {
  color: #aebcff;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -.05em;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  position: relative;
  min-height: 205px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(199, 210, 239, .13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 0%, rgba(112, 139, 255, .07), transparent 36%),
    rgba(255, 255, 255, .022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .018);
  transition: border-color .35s, background .35s, box-shadow .35s, transform .35s cubic-bezier(.2, .8, .2, 1);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, #91a7ff, #68dff0);
  opacity: .75;
}

.review-card:hover {
  border-color: rgba(145, 167, 255, .34);
  background:
    radial-gradient(circle at 90% 0%, rgba(112, 139, 255, .115), transparent 38%),
    rgba(255, 255, 255, .03);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .025);
  transform: translateY(-4px);
}

.review-card__top {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(171, 187, 255, .3);
  border-radius: 50%;
  color: #dbe1fb;
  background: rgba(112, 139, 255, .11);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}

.review-card__top > div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__top strong {
  color: #eef2fa;
  font-size: 13px;
  font-weight: 500;
}

.review-card__top span {
  overflow: hidden;
  color: rgba(238, 242, 250, .38);
  font-size: 9px;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__top i {
  align-self: start;
  color: rgba(145, 167, 255, .22);
  font: normal 40px/.72 Georgia, serif;
}

.review-card blockquote {
  margin: 25px 0 0;
  color: rgba(238, 242, 250, .74);
  font-size: clamp(15px, 1.22vw, 18px);
  font-weight: 300;
  line-height: 1.46;
  letter-spacing: -.015em;
}

@media (max-width: 900px) {
  .testimonials {
    padding: 110px 24px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .testimonials__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }
}

/* Stronger first-scene reveal without changing the spotlight concept. */
.hero.hero--spotlight {
  --spotlight-radius: clamp(118px, 13vw, 190px);
}

.hero-spotlight__base {
  filter: brightness(.78) saturate(.76) contrast(1.06);
}

.hero-spotlight__base-title {
  opacity: .44;
  filter: blur(.2px);
}

.hero-spotlight__reveal {
  filter: brightness(1.05) saturate(1.12) contrast(1.06);
  -webkit-mask-image: radial-gradient(
    circle var(--spotlight-radius) at var(--spotlight-x) var(--spotlight-y),
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .97) 71%,
    rgba(0, 0, 0, .52) 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--spotlight-radius) at var(--spotlight-x) var(--spotlight-y),
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .97) 71%,
    rgba(0, 0, 0, .52) 86%,
    transparent 100%
  );
}

.hero-spotlight__vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle calc(var(--spotlight-radius) + 14px) at var(--spotlight-x) var(--spotlight-y),
    transparent 0%,
    transparent 75%,
    rgba(145, 167, 255, .11) 86%,
    rgba(104, 223, 240, .045) 92%,
    transparent 100%
  );
  filter: blur(3px);
  mix-blend-mode: screen;
}

.hero-spotlight__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(229, 234, 250, .82);
  font-size: 10px;
}

.hero-spotlight__hint::before {
  content: "";
  width: 9px;
  height: 9px;
  margin: 0;
  border: 1px solid rgba(163, 181, 255, .75);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(112, 139, 255, .45);
  animation: reveal-hint-pulse 1.9s ease-in-out infinite;
}

@keyframes reveal-hint-pulse {
  50% {
    background: rgba(145, 167, 255, .35);
    box-shadow: 0 0 22px rgba(112, 139, 255, .7);
    transform: scale(1.3);
  }
}

@media (max-width: 700px) {
  .hero.hero--spotlight {
    --spotlight-radius: clamp(88px, 27vw, 125px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-spotlight__hint::before {
    animation: none;
  }
}

.sim-site__features button {
  color: rgba(29, 29, 31, .46);
  border-color: #d2d2d7;
  background: radial-gradient(circle at 45% 35%, #fff, transparent 48%), #f2f2f4;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .72), 0 8px 24px rgba(0, 0, 0, .06);
}

.sim-site__features button:hover,
.sim-site__features button:focus-visible,
.sim-site__features button.is-active {
  color: #1d1d1f;
  border-color: color-mix(in srgb, var(--sim-accent), transparent 35%);
  box-shadow:
    inset 0 0 38px color-mix(in srgb, var(--sim-accent), transparent 91%),
    0 10px 28px color-mix(in srgb, var(--sim-accent), transparent 82%);
}

/* Full-width bespoke software and AI package. */
.custom-package {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(250px, .82fr) minmax(330px, 1.08fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: stretch;
  margin-top: 12px;
  padding: clamp(30px, 3.4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(145, 167, 255, .38);
  border-radius: 3px;
  color: #f2f4f9;
  background:
    radial-gradient(circle at 13% 22%, rgba(112, 139, 255, .2), transparent 31%),
    radial-gradient(circle at 83% 78%, rgba(104, 223, 240, .1), transparent 35%),
    linear-gradient(118deg, rgba(114, 137, 238, .1), rgba(255, 255, 255, .024) 46%, rgba(104, 223, 240, .038));
  box-shadow: 0 25px 70px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .018);
  isolation: isolate;
}

.custom-package::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, #91a7ff, #68dff0);
  box-shadow: 0 0 26px rgba(104, 223, 240, .4);
}

.custom-package::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -100px;
  top: 50%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(145, 167, 255, .1);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(145, 167, 255, .025),
    0 0 0 78px rgba(104, 223, 240, .012);
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-package__identity,
.custom-package__offer,
.custom-package__details {
  position: relative;
  z-index: 1;
}

.custom-package__identity {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.custom-package__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(235, 240, 252, .46);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.custom-package__identity h3 {
  max-width: 8.5ch;
  margin: 42px 0 0;
  color: #f2f4f9;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
}

.custom-package__identity h3 em {
  color: #aab9ff;
  font-family: Georgia, serif;
  font-weight: 400;
}

.custom-package__offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.custom-package__label {
  margin: 0 0 12px;
  color: rgba(235, 240, 252, .42);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.custom-package__price {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 22px;
  color: #b5c1ff;
}

.custom-package__price span {
  margin-top: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.custom-package__price strong {
  color: #e9edff;
  font-size: clamp(48px, 4.8vw, 76px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.07em;
}

.custom-package__offer > p:last-child {
  max-width: 390px;
  margin: 0;
  color: rgba(236, 240, 249, .66);
  font-size: 14px;
  line-height: 1.55;
}

.custom-package__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(199, 210, 239, .12);
}

.custom-package__details ul {
  display: grid;
  gap: 9px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.custom-package__details li {
  position: relative;
  padding-left: 18px;
  color: rgba(236, 240, 249, .76);
  font-size: 12px;
  line-height: 1.35;
}

.custom-package__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 6px;
  height: 1px;
  background: linear-gradient(90deg, #91a7ff, #68dff0);
}

.custom-package__cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 13px 17px;
  border: 1px solid rgba(164, 181, 255, .34);
  border-radius: 999px;
  color: #e2e7fb;
  background: rgba(112, 139, 255, .09);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.custom-package__cta i {
  font-style: normal;
  transition: transform .3s;
}

.custom-package__cta:hover,
.custom-package__cta:focus-visible {
  color: #fff;
  border-color: rgba(177, 194, 255, .75);
  background: rgba(112, 139, 255, .17);
  outline: none;
  transform: translateY(-2px);
}

.custom-package__cta:hover i,
.custom-package__cta:focus-visible i {
  transform: translate(3px, -3px);
}

.custom-package + .pricing-rules {
  margin-top: 12px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .custom-package {
    grid-template-columns: minmax(210px, .82fr) minmax(215px, .72fr) minmax(300px, 1fr);
    gap: 30px;
  }

  .custom-package__details {
    padding-left: 28px;
  }
}

@media (max-width: 900px) {
  .custom-package {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 28px;
  }

  .custom-package__identity {
    min-height: 0;
  }

  .custom-package__top {
    justify-content: flex-start;
    gap: 28px;
  }

  .custom-package__identity h3 {
    max-width: 12ch;
    margin-top: 38px;
  }

  .custom-package__offer {
    padding: 28px 0 0;
    border-top: 1px solid rgba(199, 210, 239, .12);
  }

  .custom-package__details {
    padding: 28px 0 0;
    border-top: 1px solid rgba(199, 210, 239, .12);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .custom-package__price {
    flex-direction: column;
    gap: 7px;
  }

  .custom-package__price span {
    margin-top: 0;
  }

  .custom-package__price strong {
    font-size: clamp(50px, 16vw, 68px);
  }

  .custom-package__cta {
    width: 100%;
    justify-content: space-between;
  }
}

/* v45: the bespoke package mirrors the reveal behavior of the three plans. */
.custom-package {
  display: block;
  padding: clamp(25px, 2.4vw, 34px) clamp(30px, 3.4vw, 52px);
  cursor: default;
  transition:
    border-color .45s,
    background .45s,
    box-shadow .45s,
    transform .45s;
}

.custom-package:hover,
.custom-package:focus,
.custom-package:focus-within {
  border-color: rgba(156, 176, 255, .66);
  background:
    radial-gradient(circle at 13% 22%, rgba(112, 139, 255, .25), transparent 34%),
    radial-gradient(circle at 83% 78%, rgba(104, 223, 240, .13), transparent 38%),
    linear-gradient(118deg, rgba(114, 137, 238, .13), rgba(255, 255, 255, .03) 46%, rgba(104, 223, 240, .05));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3), inset 0 0 0 1px rgba(255, 255, 255, .026);
  outline: none;
  transform: translateY(-3px);
}

.custom-package:focus-visible {
  outline: 1px solid rgba(180, 195, 255, .8);
  outline-offset: 4px;
}

.custom-package__summary {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(230px, 1fr) minmax(190px, .72fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 66px;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  text-align: left;
}

.custom-package__summary:focus,
.custom-package__summary:focus-visible {
  outline: none;
}

.custom-package__summary .custom-package__top {
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 46px);
}

.custom-package__title {
  display: block;
  margin: 0;
  color: #f2f4f9;
  font-size: clamp(28px, 2.7vw, 44px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.05em;
}

.custom-package__summary .custom-package__price {
  align-items: center;
  gap: 9px;
  margin: 0;
}

.custom-package__summary .custom-package__price span {
  margin-top: 0;
}

.custom-package__summary .custom-package__price strong {
  font-size: clamp(42px, 4vw, 62px);
}

.custom-package__expand-hint {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: rgba(227, 233, 250, .52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .35s;
}

.custom-package__expand-hint i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(164, 181, 255, .26);
  border-radius: 50%;
  font-style: normal;
  transition: border-color .35s, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.custom-package:hover .custom-package__expand-hint,
.custom-package:focus .custom-package__expand-hint,
.custom-package:focus-within .custom-package__expand-hint {
  color: #e7ebfb;
}

.custom-package:hover .custom-package__expand-hint i,
.custom-package:focus .custom-package__expand-hint i,
.custom-package:focus-within .custom-package__expand-hint i {
  border-color: rgba(177, 194, 255, .7);
  transform: rotate(180deg);
}

.custom-package__expanded {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(380px, 1.18fr);
  gap: clamp(48px, 7vw, 110px);
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height .72s cubic-bezier(.16, 1, .3, 1),
    margin-top .55s cubic-bezier(.16, 1, .3, 1),
    padding-top .55s cubic-bezier(.16, 1, .3, 1),
    border-color .45s,
    opacity .3s,
    transform .55s cubic-bezier(.16, 1, .3, 1);
}

.custom-package:hover .custom-package__expanded,
.custom-package:focus .custom-package__expanded,
.custom-package:focus-within .custom-package__expanded {
  max-height: 330px;
  margin-top: 24px;
  padding-top: 30px;
  border-top-color: rgba(199, 210, 239, .12);
  opacity: 1;
  transform: none;
}

.custom-package__expanded .custom-package__offer {
  display: block;
  padding: 0;
}

.custom-package__expanded .custom-package__offer > p:last-child {
  max-width: 440px;
}

.custom-package__expanded .custom-package__details {
  padding-left: clamp(28px, 3.4vw, 54px);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .custom-package__summary {
    grid-template-columns: minmax(180px, .9fr) minmax(200px, 1fr) minmax(175px, .7fr) auto;
    gap: 22px;
  }

  .custom-package__expand-hint {
    font-size: 0;
    gap: 0;
  }
}

@media (max-width: 900px) {
  .custom-package,
  .custom-package:hover,
  .custom-package:focus,
  .custom-package:focus-within {
    padding: 30px 28px;
    transform: none;
  }

  .custom-package__summary {
    grid-template-columns: 1fr auto;
    gap: 30px 18px;
  }

  .custom-package__summary .custom-package__top {
    grid-column: 1 / -1;
  }

  .custom-package__title {
    max-width: 10ch;
    font-size: clamp(34px, 9vw, 50px);
  }

  .custom-package__summary .custom-package__price {
    justify-self: end;
  }

  .custom-package__expand-hint {
    display: inline-flex;
    grid-column: 1 / -1;
    width: fit-content;
  }

  .custom-package__expanded,
  .custom-package:hover .custom-package__expanded,
  .custom-package:focus .custom-package__expanded,
  .custom-package:focus-within .custom-package__expanded {
    grid-template-columns: 1fr;
    gap: 30px;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    border-top-color: transparent;
    opacity: 0;
    transform: translateY(-8px);
  }

  .custom-package.is-open .custom-package__expanded {
    max-height: 760px;
    margin-top: 30px;
    padding-top: 30px;
    overflow: hidden;
    border-top-color: rgba(199, 210, 239, .12);
    opacity: 1;
    transform: none;
  }

  .custom-package.is-open .custom-package__expand-hint {
    color: #e7ebfb;
  }

  .custom-package.is-open .custom-package__expand-hint i {
    border-color: rgba(177, 194, 255, .7);
    transform: rotate(180deg);
  }

  .custom-package__expanded .custom-package__details {
    padding: 28px 0 0;
  }
}

@media (max-width: 520px) {
  .custom-package__summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .custom-package__summary .custom-package__price {
    justify-self: start;
  }

  .custom-package__title {
    font-size: clamp(42px, 13vw, 58px);
  }
}

/* v49: keep the custom package neutral until it is actively explored. */
.custom-package {
  border-color: rgba(199, 210, 239, .13);
  background:
    radial-gradient(circle at 50% 50%, rgba(117, 141, 244, .055), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .038), rgba(130, 151, 232, .012));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .012);
}

.custom-package::before {
  opacity: 0;
  transition: opacity .45s;
}

.custom-package::after {
  opacity: .2;
  transition: opacity .55s, transform .7s cubic-bezier(.16, 1, .3, 1);
}

.custom-package:hover,
.custom-package:focus,
.custom-package:focus-within {
  border-color: rgba(145, 167, 255, .5);
  background:
    radial-gradient(circle at 18% 24%, rgba(112, 139, 255, .17), transparent 35%),
    radial-gradient(circle at 84% 76%, rgba(104, 223, 240, .08), transparent 38%),
    linear-gradient(145deg, rgba(115, 137, 239, .09), rgba(255, 255, 255, .02));
  box-shadow: 0 25px 70px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.custom-package:hover::before,
.custom-package:focus::before,
.custom-package:focus-within::before {
  opacity: 1;
}

.custom-package:hover::after,
.custom-package:focus::after,
.custom-package:focus-within::after {
  opacity: .65;
  transform: translateY(-50%) scale(1.03);
}

@media (max-width: 900px) {
  .custom-package:hover,
  .custom-package:focus,
  .custom-package:focus-within {
    border-color: rgba(199, 210, 239, .13);
    background:
      radial-gradient(circle at 50% 50%, rgba(117, 141, 244, .055), transparent 38%),
      linear-gradient(145deg, rgba(255, 255, 255, .038), rgba(130, 151, 232, .012));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .012);
  }

  .custom-package:hover::before,
  .custom-package:focus::before,
  .custom-package:focus-within::before {
    opacity: 0;
  }

  .custom-package:hover::after,
  .custom-package:focus::after,
  .custom-package:focus-within::after {
    opacity: .2;
    transform: translateY(-50%);
  }

  .custom-package.is-open {
    border-color: rgba(145, 167, 255, .32);
    background:
      radial-gradient(circle at 20% 24%, rgba(112, 139, 255, .11), transparent 36%),
      linear-gradient(145deg, rgba(115, 137, 239, .065), rgba(255, 255, 255, .018));
  }

  .custom-package.is-open::before {
    opacity: .55;
  }
}

/* v51: anonymous portfolio links inside the three website plans. */
.price-card__select {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.price-card__select:focus {
  outline: none;
}

.price-card__select:focus-visible {
  outline: 1px solid rgba(177, 194, 255, .75);
  outline-offset: -5px;
}

.price-card__cases {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 2.4vw, 38px);
  right: clamp(24px, 2.4vw, 38px);
  bottom: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: visibility 0s linear .3s, opacity .3s, transform .5s cubic-bezier(.16, 1, .3, 1);
}

.price-card__cases a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(164, 181, 255, .24);
  border-radius: 999px;
  color: rgba(229, 234, 250, .7);
  background: rgba(112, 139, 255, .07);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.price-card__cases a i {
  font-style: normal;
  transition: transform .3s;
}

.price-card__cases a:hover,
.price-card__cases a:focus-visible {
  color: #fff;
  border-color: rgba(177, 194, 255, .68);
  background: rgba(112, 139, 255, .15);
  outline: none;
  transform: translateY(-2px);
}

.price-card__cases a:hover i,
.price-card__cases a:focus-visible i {
  transform: translate(2px, -2px);
}

.price-card.is-active .price-card__cases {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s, .14s, .14s;
}

.price-card__action {
  opacity: 1;
  transition: color .35s, opacity .25s;
}

.price-card.is-active .price-card__action {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.price-card.is-active ul {
  margin-bottom: 76px;
}

@media (max-width: 900px) {
  .price-card__cases,
  .price-card.is-active .price-card__cases {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -26px 0 20px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .price-card__cases a {
    min-height: 34px;
    padding: 8px 12px;
  }

  .price-card__action {
    display: none;
  }

  .price-card ul,
  .price-card.is-active ul {
    margin-bottom: 54px;
  }
}

/* v53: keep mobile plan cards stable when their example links receive focus. */
.price-card {
  overflow: clip;
}

@media (max-width: 900px) {
  .price-card__cases,
  .price-card.is-active .price-card__cases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .price-card__cases--single,
  .price-card.is-active .price-card__cases--single {
    grid-template-columns: max-content;
  }

  .price-card__cases a {
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
    padding: 7px 6px;
    font-size: clamp(7px, 2vw, 8px);
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .price-card__cases--single a {
    width: auto;
  }
}

/* v54: live contact-form delivery and submission feedback. */
.contact-form__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none;
}

.contact-form .pill:disabled {
  cursor: wait;
  opacity: .68;
}

.contact-form.is-sending input,
.contact-form.is-sending textarea {
  opacity: .72;
}

.toast.is-error {
  color: #fff2f4;
  background: #9c3549;
}

/* v55: delivery times for the three website plans. */
.price-card .price-card__delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 14px 0 0;
  color: rgba(211, 220, 247, .72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.price-card .price-card__delivery::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, #91a7ff, #68dff0);
  box-shadow: 0 0 8px rgba(104, 223, 240, .36);
}

/* v56: persistent confirmation after a successful contact submission. */
.contact-form__success {
  grid-column: 1 / -1;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  outline: none;
}

.contact-form__success[hidden] {
  display: none;
}

.contact-form__success > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(126, 218, 232, .42);
  border-radius: 50%;
  color: #cbd5ff;
  background: rgba(112, 139, 255, .1);
  box-shadow: 0 0 30px rgba(104, 223, 240, .1);
  font-size: 16px;
}

.contact-form__success h3 {
  margin: 0 0 12px;
  color: #f2f4f9;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.05em;
}

.contact-form__success p {
  margin: 0;
  color: rgba(211, 220, 247, .66);
  font-size: 14px;
}

.contact-form.is-sent > :not(.contact-form__success) {
  display: none;
}

/* v57: compact copyright footer and expandable privacy notice. */
.site-footer {
  position: relative;
  z-index: 2;
  color: #f2f4f9;
  border-top: 1px solid rgba(199, 210, 239, .1);
  background:
    radial-gradient(circle at 10% 100%, rgba(104, 223, 240, .055), transparent 30%),
    #05070b;
}

.site-footer__inner {
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
}

.site-footer__bar {
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(110px, .7fr) 1fr auto;
  gap: 34px;
  align-items: center;
}

.site-footer__brand {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.045em;
}

.site-footer__bar > p {
  margin: 0;
  color: rgba(211, 220, 247, .46);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer__links button,
.site-footer__links a {
  padding: 0;
  border: 0;
  color: rgba(226, 232, 248, .64);
  background: none;
  font: inherit;
  font-size: 10px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s;
}

.site-footer__links button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__links button i {
  position: relative;
  width: 12px;
  height: 12px;
}

.site-footer__links button i::before,
.site-footer__links button i::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 10px;
  height: 1px;
  background: currentColor;
  transition: transform .35s;
}

.site-footer__links button i::after {
  transform: rotate(90deg);
}

.site-footer__links button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.site-footer__links button:hover,
.site-footer__links button:focus-visible,
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #cbd5ff;
  outline: none;
}

.site-footer__privacy {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  opacity: 0;
  transition:
    max-height .65s cubic-bezier(.16, 1, .3, 1),
    padding .55s cubic-bezier(.16, 1, .3, 1),
    border-color .35s,
    opacity .35s;
}

.site-footer__privacy.is-open {
  max-height: 430px;
  padding: 54px 0 64px;
  border-top-color: rgba(199, 210, 239, .1);
  opacity: 1;
}

.site-footer__privacy > div {
  max-width: 760px;
}

.site-footer__privacy-label {
  margin: 0 0 18px;
  color: rgba(145, 167, 255, .78);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer__privacy h2 {
  margin: 0 0 24px;
  color: #f2f4f9;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.site-footer__privacy p:not(.site-footer__privacy-label) {
  max-width: 690px;
  margin: 0 0 14px;
  color: rgba(211, 220, 247, .56);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__privacy a {
  color: #cbd5ff;
}

@media (max-width: 700px) {
  .site-footer__inner {
    width: min(100% - 48px, 1380px);
  }

  .site-footer__bar {
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
    padding: 28px 0;
  }

  .site-footer__bar > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__links {
    gap: 18px;
  }

  .site-footer__privacy.is-open {
    max-height: 560px;
    padding: 42px 0 50px;
  }
}

/* v59: crossfade service copy without moving the large left-hand titles. */
.service-panel {
  transform: none;
  will-change: opacity;
  transition:
    opacity .48s cubic-bezier(.2, .8, .2, 1),
    visibility 0s linear .48s;
}

.service-panel.is-active {
  transform: none;
  transition:
    opacity .58s cubic-bezier(.2, .8, .2, 1),
    visibility 0s linear 0s;
}

/* v60: package enquiry actions and Joffney's contact card. */
.price-card__enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(126, 218, 232, .5);
  border-radius: 999px;
  color: #eff3ff;
  background: linear-gradient(135deg, rgba(112, 139, 255, .22), rgba(104, 223, 240, .12));
  font: inherit;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.price-card__enquire i {
  font-style: normal;
  transition: transform .3s;
}

.price-card__enquire:hover,
.price-card__enquire:focus-visible {
  border-color: rgba(180, 232, 244, .88);
  background: linear-gradient(135deg, rgba(112, 139, 255, .34), rgba(104, 223, 240, .2));
  outline: none;
  transform: translateY(-2px);
}

.price-card__enquire:hover i,
.price-card__enquire:focus-visible i {
  transform: translate(2px, -2px);
}

.price-card.is-active ul {
  margin-bottom: 112px;
}

body.has-contact-card {
  overflow: hidden;
}

.contact-card-modal {
  position: fixed;
  z-index: 3500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear .35s, opacity .35s;
}

.contact-card-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.contact-card-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 5, 9, .82);
  backdrop-filter: blur(16px);
  cursor: default;
}

.contact-card {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  max-height: calc(100vh - 48px);
  padding: clamp(32px, 5vw, 58px);
  overflow-y: auto;
  border: 1px solid rgba(164, 181, 255, .26);
  border-radius: 4px;
  color: #f2f4f9;
  background:
    radial-gradient(circle at 90% 5%, rgba(112, 139, 255, .16), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(104, 223, 240, .08), transparent 28%),
    linear-gradient(145deg, #0b0e16, #07090e);
  box-shadow: 0 35px 120px rgba(0, 0, 0, .58);
  opacity: 0;
  transform: translateY(20px) scale(.975);
  transition: opacity .35s, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.contact-card-modal.is-open .contact-card {
  opacity: 1;
  transform: none;
}

.contact-card__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(199, 210, 239, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
}

.contact-card__close i::before,
.contact-card__close i::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 14px;
  height: 1px;
  background: #d7def3;
}

.contact-card__close i::before {
  transform: rotate(45deg);
}

.contact-card__close i::after {
  transform: rotate(-45deg);
}

.contact-card__close:hover,
.contact-card__close:focus-visible {
  border-color: rgba(177, 194, 255, .68);
  outline: none;
}

.contact-card__eyebrow {
  margin: 0 0 20px;
  color: rgba(145, 167, 255, .8);
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  color: #f5f7fd;
  font-size: clamp(54px, 8vw, 82px);
  font-weight: 300;
  line-height: .86;
  letter-spacing: -.065em;
}

.contact-card__role {
  margin: 18px 0 0;
  color: rgba(226, 232, 248, .58);
  font-size: 13px;
}

.contact-card__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(199, 210, 239, .12);
  color: rgba(211, 220, 247, .48);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card__plan strong {
  color: #d9e0f6;
  font-weight: 600;
}

.contact-card__actions {
  display: grid;
  gap: 10px;
}

.contact-card__action {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border: 1px solid rgba(164, 181, 255, .2);
  border-radius: 3px;
  color: #e6ebfb;
  background: rgba(255, 255, 255, .025);
  text-decoration: none;
  transition: border-color .3s, background .3s, transform .3s;
}

.contact-card__action--primary {
  border-color: rgba(104, 223, 240, .34);
  background: linear-gradient(135deg, rgba(112, 139, 255, .13), rgba(104, 223, 240, .07));
}

.contact-card__action span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card__action strong {
  color: rgba(226, 232, 248, .58);
  font-size: 11px;
  font-weight: 400;
}

.contact-card__action i {
  font-style: normal;
  transition: transform .3s;
}

.contact-card__action:hover,
.contact-card__action:focus-visible {
  border-color: rgba(177, 194, 255, .62);
  background: rgba(112, 139, 255, .12);
  outline: none;
  transform: translateY(-2px);
}

.contact-card__action:hover i,
.contact-card__action:focus-visible i {
  transform: translate(2px, -2px);
}

.contact-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
}

.contact-card__footer a,
.contact-card__footer button {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(164, 181, 255, .24);
  color: rgba(211, 220, 247, .6);
  background: none;
  font: inherit;
  font-size: 9px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s, border-color .3s;
}

.contact-card__footer a:hover,
.contact-card__footer a:focus-visible,
.contact-card__footer button:hover,
.contact-card__footer button:focus-visible {
  color: #e7ebfb;
  border-color: rgba(177, 194, 255, .7);
  outline: none;
}

@media (max-width: 900px) {
  .price-card__enquire {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 36px;
  }

  .price-card__cases--single,
  .price-card.is-active .price-card__cases--single {
    grid-template-columns: 1fr;
  }

  .price-card__cases--single a,
  .price-card__cases--single .price-card__enquire {
    grid-column: 1;
    width: 100%;
  }

  .price-card ul,
  .price-card.is-active ul {
    margin-bottom: 54px;
  }
}

@media (max-width: 560px) {
  .contact-card-modal {
    padding: 14px;
  }

  .contact-card {
    max-height: calc(100vh - 28px);
    padding: 38px 24px 28px;
  }

  .contact-card__close {
    top: 14px;
    right: 14px;
  }

  .contact-card__action {
    grid-template-columns: 1fr auto;
  }

  .contact-card__action strong {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-card__action i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .contact-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* v61: make the package enquiry feel like a clear primary action. */
.price-card__enquire {
  flex: 1 0 100%;
  width: 100%;
  min-height: 48px;
  margin-top: 3px;
  padding: 13px 18px;
  border-color: transparent;
  color: #09101b;
  background: linear-gradient(100deg, #a9b9ff 0%, #73dce9 100%);
  box-shadow: 0 14px 34px rgba(74, 157, 206, .18);
  font-size: 9px;
  letter-spacing: .13em;
}

.price-card__enquire:hover,
.price-card__enquire:focus-visible {
  border-color: transparent;
  color: #071019;
  background: linear-gradient(100deg, #bdc9ff 0%, #8be8f1 100%);
  box-shadow: 0 18px 42px rgba(74, 157, 206, .28);
  transform: translateY(-2px);
}

@media (min-width: 901px) {
  .price-card.is-active ul {
    margin-bottom: 148px;
  }
}

@media (max-width: 900px) {
  .price-card__enquire {
    min-height: 50px;
    font-size: 9px;
  }
}

/* v62: give the custom-software consultation equal CTA prominence. */
.custom-package__cta {
  width: min(100%, 310px);
  min-height: 44px;
  justify-content: space-between;
  margin-top: 4px;
  padding: 11px 17px;
  border-color: transparent;
  color: #09101b;
  background: linear-gradient(100deg, #a9b9ff 0%, #73dce9 100%);
  box-shadow: 0 14px 34px rgba(74, 157, 206, .18);
}

.custom-package__cta:hover,
.custom-package__cta:focus-visible {
  border-color: transparent;
  color: #071019;
  background: linear-gradient(100deg, #bdc9ff 0%, #8be8f1 100%);
  box-shadow: 0 18px 42px rgba(74, 157, 206, .28);
}

@media (max-width: 520px) {
  .custom-package__cta {
    width: 100%;
    min-height: 46px;
  }
}

/* v64: visual language selector; translations are wired in a later pass. */
.language-switch {
  position: absolute;
  top: 4px;
  right: 128px;
  width: 88px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid rgba(225, 213, 196, .24);
  border-radius: 999px;
  background: rgba(12, 12, 10, .7);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(255, 255, 255, .02);
  backdrop-filter: blur(18px) saturate(1.1);
  pointer-events: auto;
  transition: opacity .25s, transform .45s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}

.language-switch__thumb {
  position: absolute;
  z-index: 0;
  top: 4px;
  left: 4px;
  width: 39px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8c2a5, #b99366);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .24);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.language-switch[data-language="en"] .language-switch__thumb {
  transform: translateX(39px);
}

.language-switch button {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgba(239, 231, 220, .48);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: color .3s;
}

.language-switch button[aria-pressed="true"] {
  color: #17130f;
}

.language-switch button:focus-visible {
  outline: 1px solid rgba(243, 238, 231, .82);
  outline-offset: 2px;
}

.floating-menu.is-open .language-switch {
  opacity: 0;
  transform: translateX(10px) scale(.9);
  pointer-events: none;
}

@media (max-width: 700px) {
  .language-switch {
    top: 3px;
    right: 116px;
    width: 80px;
    height: 40px;
  }

  .language-switch__thumb {
    width: 35px;
    height: 30px;
  }

  .language-switch[data-language="en"] .language-switch__thumb {
    transform: translateX(35px);
  }
}

/* v65/v66: align the language control beneath the menu in the site's ice-blue theme. */
.language-switch {
  --language-x: 0px;
  top: 60px;
  right: 0;
  width: 116px;
  height: 50px;
  padding: 5px;
  border-color: rgba(145, 167, 255, .34);
  background: rgba(7, 16, 25, .78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(115, 220, 233, .035);
}

.language-switch[data-language="en"] {
  --language-x: 53px;
}

.language-switch__thumb {
  top: 5px;
  left: 5px;
  width: 52px;
  height: 38px;
  background: linear-gradient(100deg, #a9b9ff 0%, #73dce9 100%);
  box-shadow: 0 8px 22px rgba(74, 157, 206, .24), inset 0 1px rgba(255, 255, 255, .25);
  transform: translateX(var(--language-x));
  transition:
    transform .52s cubic-bezier(.16, 1, .3, 1),
    box-shadow .35s,
    filter .35s;
}

.language-switch.is-switching .language-switch__thumb {
  animation: language-thumb-switch .52s cubic-bezier(.16, 1, .3, 1);
}

.language-switch.is-switching {
  border-color: rgba(115, 220, 233, .68);
}

.language-switch button {
  color: rgba(218, 227, 248, .5);
  font-size: 10px;
}

.language-switch button[aria-pressed="true"] {
  color: #071019;
}

@keyframes language-thumb-switch {
  0% {
    scale: 1;
    filter: brightness(1);
  }
  48% {
    scale: 1.1 .92;
    filter: brightness(1.12);
    box-shadow: 0 10px 30px rgba(115, 220, 233, .34), inset 0 1px rgba(255, 255, 255, .32);
  }
  100% {
    scale: 1;
    filter: brightness(1);
  }
}

@media (max-width: 700px) {
  .language-switch {
    top: 54px;
    right: 0;
    width: 106px;
    height: 46px;
    padding: 4px;
  }

  .language-switch[data-language="en"] {
    --language-x: 49px;
  }

  .language-switch__thumb {
    top: 4px;
    left: 4px;
    width: 48px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-switch.is-switching .language-switch__thumb {
    animation: none;
  }
}

/* v67: fix the overridden travel distance and separate motion from feedback. */
.language-switch__thumb {
  background: transparent;
  box-shadow: none;
  filter: none;
  animation: none;
  transform: translate3d(0, 0, 0);
  transition: transform .55s cubic-bezier(.32, .72, 0, 1);
  will-change: transform;
}

.language-switch[data-language="en"] .language-switch__thumb {
  transform: translate3d(53px, 0, 0);
}

.language-switch__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, #a9b9ff 0%, #73dce9 100%);
  box-shadow: 0 8px 22px rgba(74, 157, 206, .24), inset 0 1px rgba(255, 255, 255, .25);
}

.language-switch.is-switching .language-switch__thumb {
  animation: none;
}

.language-switch.is-switching .language-switch__thumb::after {
  animation: language-thumb-feedback .55s cubic-bezier(.32, .72, 0, 1);
}

@keyframes language-thumb-feedback {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  46% {
    transform: scale(1.055, .96);
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(115, 220, 233, .32), inset 0 1px rgba(255, 255, 255, .32);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@media (max-width: 700px) {
  .language-switch[data-language="en"] .language-switch__thumb {
    transform: translate3d(49px, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-switch__thumb {
    transition-duration: .01ms;
  }

  .language-switch.is-switching .language-switch__thumb::after {
    animation: none;
  }
}

/* v68: retain correct travel while removing the extra compositing layer from v67. */
.language-switch__thumb {
  background: linear-gradient(100deg, #a9b9ff 0%, #73dce9 100%);
  box-shadow: 0 8px 22px rgba(74, 157, 206, .24), inset 0 1px rgba(255, 255, 255, .25);
  filter: brightness(1);
  transform: translateX(0);
  transition:
    transform .5s cubic-bezier(.22, 1, .36, 1),
    filter .24s ease,
    box-shadow .3s ease;
  will-change: auto;
}

.language-switch[data-language="en"] .language-switch__thumb {
  transform: translateX(53px);
}

.language-switch__thumb::after {
  display: none;
}

.language-switch.is-switching .language-switch__thumb {
  animation: none;
  filter: brightness(1.08);
  box-shadow: 0 9px 26px rgba(115, 220, 233, .28), inset 0 1px rgba(255, 255, 255, .28);
}

@media (max-width: 700px) {
  .language-switch[data-language="en"] .language-switch__thumb {
    transform: translateX(49px);
  }
}

/* v69: keep the language selector available on the welcome screen. */
body.is-locked .floating-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.is-locked .floating-menu__toggle,
body.is-locked .floating-menu__panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-locked .language-switch {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* v72: protect the fourth-plan CTA when text wraps at compact desktop widths. */
.custom-package__cta {
  position: relative;
  z-index: 2;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .custom-package:hover .custom-package__expanded,
  .custom-package:focus .custom-package__expanded,
  .custom-package:focus-within .custom-package__expanded {
    max-height: 480px;
    overflow: visible;
  }
}

@media (max-width: 900px) {
  .custom-package.is-open .custom-package__expanded {
    max-height: 900px;
  }
}

/* v73: keep the interactive browser fully visible on compact desktop screens. */
@media (min-width: 901px) and (max-width: 1100px) {
  .domain-builder {
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 3.8vw, 42px);
  }

  .domain-builder__copy,
  .site-simulator,
  .site-simulator__browser {
    min-width: 0;
    width: 100%;
  }

  .domain-builder__copy h2 {
    font-size: clamp(46px, 5.2vw, 62px);
  }
}

/* v76: soften the four-phase scroll sequence without changing its structure. */
@property --service-progress {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 25%;
}

.service-panel {
  transition:
    opacity .76s cubic-bezier(.4, 0, .2, 1),
    visibility 0s linear .76s;
}

.service-panel.is-active {
  transition:
    opacity .76s cubic-bezier(.4, 0, .2, 1),
    visibility 0s linear 0s;
}

.service-scroll-prompt {
  transition:
    --service-progress .9s cubic-bezier(.4, 0, .2, 1),
    background .45s ease,
    color .45s ease;
}

#service-scroll-label {
  display: inline-block;
}

#service-scroll-label.is-changing {
  animation: service-label-in .62s cubic-bezier(.22, 1, .36, 1);
}

@keyframes service-label-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* v78: mirror the English two-layer spotlight structure for Italian. */
.hero-spotlight__base-title--it {
  display: none;
}

body.lang-it .hero-spotlight__reveal {
  background-image: url("hero-it.png") !important;
}

body.lang-it .hero-spotlight__base-title:not(.hero-spotlight__base-title--it) {
  display: none;
}

body.lang-it .hero-spotlight__base-title--it {
  display: block;
}

/* v81: mobile hero keeps the whole display visible and moves searchable copy into HTML. */
@media (max-width: 700px) {
  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: center bottom 68px;
    background-size: 100% auto;
  }

  .hero-spotlight__base-title,
  body.lang-it .hero-spotlight__base-title--it {
    display: none !important;
  }

  .hero-spotlight__mobile-copy.sr-only {
    position: absolute;
    z-index: 7;
    top: clamp(132px, 18vh, 168px);
    left: 24px;
    width: min(327px, calc(100% - 48px));
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .hero-spotlight__mobile-copy h1 {
    position: static;
    left: auto;
    top: auto;
    display: block;
    justify-content: initial;
    width: auto;
    max-width: 9ch;
    margin: 0;
    color: rgba(231, 233, 240, .78);
    mix-blend-mode: normal;
    font-size: clamp(44px, 13vw, 58px);
    font-weight: 300;
    line-height: .94;
    letter-spacing: -.055em;
    transform: none;
    text-wrap: balance;
  }

  .hero-spotlight__mobile-copy p {
    max-width: 30ch;
    margin: 22px 0 0;
    color: rgba(201, 207, 222, .52);
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 700px) and (max-height: 680px) {
  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: center bottom 48px;
    background-size: 86% auto;
  }

  .hero-spotlight__mobile-copy.sr-only {
    top: 108px;
  }

  .hero-spotlight__mobile-copy h1 {
    font-size: 43px;
  }

  .hero-spotlight__mobile-copy p {
    display: none;
  }
}

/* v88: dedicated phone artwork for the mobile spotlight scene. */
@media (max-width: 700px) {
  .hero-spotlight__base {
    background-image: url("mobile-spotlight-base.png") !important;
  }

  .hero-spotlight__reveal {
    background-image: url("mobile-spotlight-en.png") !important;
  }

  body.lang-it .hero-spotlight__reveal {
    background-image: url("mobile-spotlight-it.png") !important;
  }

  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: center center;
    background-size: auto 100%;
  }

  .hero-spotlight__base-title,
  body.lang-it .hero-spotlight__base-title--it {
    display: none !important;
  }
}

/* v83: mobile uses the same draggable spotlight composition as desktop. */
.hero-spotlight__touch-handle {
  display: none;
}

@media (max-width: 700px) {
  .hero.hero--spotlight {
    --spotlight-radius: clamp(82px, 27vw, 112px);
    min-height: 100svh;
    touch-action: pan-y;
  }

  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: 27% 12%;
    background-size: auto 66%;
  }

  .hero-spotlight__base-title {
    inset: auto;
    top: 12%;
    left: 27%;
    display: block !important;
    width: auto;
    height: 66%;
    max-width: none;
    transform: translate(-27%, -12%);
  }

  .hero-spotlight__base-title--it {
    display: none !important;
  }

  body.lang-it .hero-spotlight__base-title:not(.hero-spotlight__base-title--it) {
    display: none !important;
  }

  body.lang-it .hero-spotlight__base-title--it {
    display: block !important;
  }

  .hero-spotlight__mobile-copy.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hero-spotlight__touch-handle {
    position: absolute;
    z-index: 7;
    left: var(--spotlight-x);
    top: var(--spotlight-y);
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(187, 231, 255, .72);
    border-radius: 50%;
    background: rgba(115, 196, 238, .08);
    box-shadow:
      0 0 0 7px rgba(93, 174, 220, .045),
      0 0 24px rgba(131, 218, 255, .38);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: border-color .2s, box-shadow .2s, transform .2s;
  }

  .hero-spotlight__touch-handle::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background: #e8f8ff;
    box-shadow: 0 0 10px rgba(205, 241, 255, .9);
  }

  .hero--spotlight.is-spotlight-dragging .hero-spotlight__touch-handle {
    border-color: #e8f8ff;
    box-shadow:
      0 0 0 10px rgba(93, 174, 220, .07),
      0 0 34px rgba(131, 218, 255, .56);
    transform: translate(-50%, -50%) scale(.9);
  }

  .hero-spotlight__controls {
    left: 20px;
    right: 20px;
    bottom: 18px;
    justify-content: space-between;
  }

  .hero-spotlight__hint {
    display: block;
    max-width: 13ch;
    font-size: 8px;
    line-height: 1.45;
  }

  .hero-spotlight__hint::before {
    content: "◎";
  }
}

@media (max-width: 700px) and (max-height: 680px) {
  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: 27% 12%;
    background-size: auto 72%;
  }

  .hero-spotlight__base-title {
    top: 12%;
    left: 27%;
    height: 72%;
    transform: translate(-27%, -12%);
  }
}

/* v89: final mobile artwork override; desktop keeps the monitor composition. */
@media (max-width: 700px) {
  .hero-spotlight__base {
    background-image: url("mobile-spotlight-base.png") !important;
  }

  .hero-spotlight__reveal {
    background-image: url("mobile-spotlight-en.png") !important;
  }

  body.lang-it .hero-spotlight__reveal {
    background-image: url("mobile-spotlight-it.png") !important;
  }

  .hero-spotlight__base,
  .hero-spotlight__reveal {
    background-position: center center;
    background-size: auto 100%;
  }

  .hero-spotlight__base-title,
  body.lang-it .hero-spotlight__base-title--it {
    display: none !important;
  }
}
