:root {
--gold:     #9b6fd1;
--gold-hi:  #c9aef0;
--gold-lo:  #9b6fd1;
--primary:  #472270;
--ink:      #0a0a0a;
--smoke:    #121212;
--carbon:   #17171a;
--mist:     #ffffff;
--fog:      #b5b5b5;
--ghost:    #6b6b6b;
--line:     rgba(255,255,255,0.12);
--line-mid: rgba(255,255,255,0.28);
--serif: "Anton", Impact, sans-serif;
--sans:  "Archivo", system-ui, sans-serif;
--label: "Archivo Narrow", "Archivo", system-ui, sans-serif;
--ease:  cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
scroll-behavior: smooth;
color-scheme: dark;
}
body {
background: var(--ink);
color: var(--mist);
font-family: var(--sans);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
} body::after {
content: '';
position: fixed;
inset: 0;
z-index: 9999;
pointer-events: none;
opacity: 0.02;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
animation: noise 0.35s steps(4) infinite;
}
::selection { background: rgba(155,111,209,.25); color: var(--gold-lo); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-lo)); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } } @keyframes noise {
0%,100% { transform: translate(0,0); } 10% { transform: translate(-2%,2%); }
20% { transform: translate(2%,-1%); } 30% { transform: translate(-1%,3%); }
40% { transform: translate(3%,-2%); } 50% { transform: translate(-2%,1%); }
60% { transform: translate(1%,-3%); } 70% { transform: translate(-3%,2%); }
80% { transform: translate(2%,1%); }  90% { transform: translate(-1%,-2%); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glow-pulse-1 { 0%,100% { opacity:.05; transform:scale(1); } 50% { opacity:.12; transform:scale(1.2); } }
@keyframes glow-pulse-2 { 0%,100% { opacity:.04; transform:scale(1.1); } 50% { opacity:.09; transform:scale(1); } }
@keyframes shimmer-border { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes cue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes ping { 0% { transform: scale(1); opacity:.75; } 100% { transform: scale(2.4); opacity:0; } }
@keyframes fade-slide-in { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--serif);
font-size: 13px;
font-weight: 400;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--gold);
}
.eyebrow::before, .eyebrow::after { content: '◆'; font-size: 6px; opacity: .7; }
.eyebrow.sm { font-size: 9px; }
.text-gold {
color: var(--gold-hi);
}
.italic { font-style: italic; }
.rule-gold   { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.rule-gold-l { height: 1px; width: 48px; background: linear-gradient(90deg, var(--gold), transparent); }
.surface-glass {
background: rgba(255,255,255,.06);
backdrop-filter: blur(20px) saturate(160%);
-webkit-backdrop-filter: blur(20px) saturate(160%);
border: 1px solid var(--line);
box-shadow: 0 20px 50px rgba(155,111,209,.05);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 300; }
h2 {
font-size: clamp(38px, 6vw, 80px);
line-height: 1.0;
letter-spacing: -0.03em;
color: var(--mist);
}
.section-head {
display: flex;
flex-direction: column;
gap: 32px;
padding: 96px 0;
}
@media (min-width: 768px) {
.section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-side {
color: #c9c9c9;
font-weight: 500;
font-size: 14px;
line-height: 1.9;
max-width: 320px;
}
@media (min-width: 768px) { .section-side { text-align: right; } }
.section-body { color: #d9d9d9; font-weight: 500; font-size: 14px; line-height: 1.9; max-width: 380px; margin: 24px 0 40px; } .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 16px 36px;
font-family: var(--label);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
border-radius: 999px;
transition: all .35s var(--ease);
}
.btn-sm { padding: 10px 22px; font-size: 10px; }
.btn-block { width: 100%; }
.btn-primary {
background: linear-gradient(110deg, #472270 0%, #9b6fd1 60%, #c9aef0 100%);
background-size: 220% auto;
color: #fff;
}
.btn-primary:hover {
background-position: 100% 0;
box-shadow: 0 0 40px rgba(155,111,209,.35), 0 10px 30px rgba(155,111,209,.15);
transform: translateY(-3px);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
border: 1px solid rgba(155,111,209,.4);
color: var(--gold-lo);
font-weight: 600;
}
.btn-ghost:hover {
border-color: rgba(155,111,209,.8);
background: rgba(155,111,209,.06);
box-shadow: 0 0 30px rgba(155,111,209,.1);
transform: translateY(-3px);
} .fade-up { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-mask { display: block; overflow: hidden; }
.reveal-mask > * { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.reveal-mask.in-view > *, body.loaded .hero .reveal-mask > * { transform: translateY(0); }
.clip-reveal { clip-path: inset(100% 0 0 0); transition: clip-path 1.1s var(--ease) .15s; }
.clip-reveal.in-view { clip-path: inset(0 0 0 0); } .scroll-progress {
position: fixed;
top: 0; left: 0;
height: 2px;
width: 0;
z-index: 200;
background: linear-gradient(90deg, var(--gold-lo), var(--gold), var(--gold-hi));
} .navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 24px 0;
transition: padding .5s var(--ease), background .5s, border-color .5s;
border-bottom: 1px solid transparent;
}
.navbar.scrolled {
padding: 12px 0;
background: rgba(10,10,10,.85);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-side { display: flex; align-items: center; }
.nav-right { gap: 20px; }
@media (min-width: 1024px) {
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; }
.nav-left { justify-self: start; }
.nav-right { justify-self: end; gap: clamp(20px, 2.5vw, 40px); }
.nav-left .nav-links, .nav-right .nav-links { gap: clamp(20px, 2vw, 32px); }
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
position: relative;
width: 36px; height: 36px;
flex-shrink: 0;
border: 1px solid rgba(155,111,209,.35);
border-radius: 50%;
transition: border-color .5s;
}
.logo:hover .logo-mark { border-color: rgba(155,111,209,.8); }
.logo-mark span {
position: absolute;
inset: 4px;
border-radius: 50%;
background: linear-gradient(135deg, #472270, #9b6fd1);
color: #fff;
font-family: var(--serif);
font-weight: 700;
font-size: 14px;
display: flex; align-items: center; justify-content: center;
}
.logo-text {
font-family: var(--serif);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold-lo);
}
@media (max-width: 639px) { .logo-text { display: none; } }
.nav-links { display: none; }
@media (min-width: 1024px) {
.nav-links { display: flex; align-items: center; gap: 32px; }
}
.nav-links a {
position: relative;
font-family: var(--label);
font-weight: 600;
font-size: 12.5px;
color: var(--fog);
text-transform: uppercase;
letter-spacing: 0.12em;
padding: 4px 0;
transition: color .3s;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0; height: 1px;
background: var(--gold-lo);
transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--gold-lo); }
.nav-links a:hover::after { width: 100%; }
.nav-ctas { display: none; }
@media (min-width: 1024px) { .nav-ctas { display: flex; gap: 12px; } }
.nav-burger {
display: flex;
flex-direction: column;
gap: 4px;
align-items: center;
justify-content: center;
width: 40px; height: 40px;
border: 1px solid rgba(155,111,209,.25);
border-radius: 10px;
}
.nav-burger span { display: block; width: 16px; height: 1px; background: var(--gold-lo); }
@media (min-width: 1024px) { .nav-burger { display: none; } } .drawer-overlay {
position: fixed;
inset: 0;
z-index: 150;
background: rgba(0,0,0,.5);
backdrop-filter: blur(4px);
opacity: 0;
visibility: hidden;
transition: opacity .4s, visibility .4s;
}
.drawer {
position: fixed;
top: 0; right: 0; bottom: 0;
z-index: 160;
width: min(320px, 85vw);
background: var(--smoke);
border-left: 1px solid var(--line);
box-shadow: -30px 0 60px rgba(155,111,209,.08);
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform .42s var(--ease);
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
.drawer-head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 28px;
border-bottom: 1px solid var(--line);
}
.drawer-close {
width: 32px; height: 32px;
border: 1px solid rgba(155,111,209,.2);
border-radius: 10px;
color: #a8a8a8;
font-size: 12px;
}
.drawer-links {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 32px;
}
.drawer-links a {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid rgba(155,111,209,.08);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.15em;
color: #a8a8a8;
transition: color .3s;
}
.drawer-links a:hover { color: var(--mist); }
.drawer-links em {
font-style: normal;
font-size: 9px;
font-weight: 600;
letter-spacing: 0.15em;
color: rgba(155,111,209,.5);
}
.drawer-links b { margin-left: auto; font-weight: 400; color: #3a3a3a; }
.drawer-links a:hover b { color: var(--gold-lo); }
.drawer-foot {
padding: 28px;
border-top: 1px solid var(--line);
display: flex;
flex-direction: column;
gap: 12px;
} .hero {
position: relative;
min-height: 100svh;
display: flex;
flex-direction: column;
overflow: hidden;
background: #000;
}
.hero-bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.hero-bg img {
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.18;
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 70% 50% at 50% -5%, rgba(155,111,209,0.16) 0%, transparent 65%),
linear-gradient(90deg, rgba(0,0,0,.7), transparent 40%, rgba(0,0,0,.5)),
linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.3) 40%, #000);
} .hero-glow {
position: absolute;
border-radius: 50%;
background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
opacity: 0.14;
pointer-events: none;
z-index: 0;
}
.hero-glow-1 {
top: 15%; left: 10%;
width: min(40vw, 600px); height: min(40vw, 600px);
animation: glow-pulse-1 9s ease-in-out infinite;
}
.hero-glow-2 {
bottom: 20%; right: 8%;
width: min(35vw, 500px); height: min(35vw, 500px);
animation: glow-pulse-2 13s ease-in-out infinite 4s;
}
.hero-content {
position: relative;
z-index: 10;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
padding-top: 144px;
padding-bottom: 112px;
}
.hero-eyebrow { margin-bottom: 40px; }
.hero-title {
font-size: clamp(54px, 11.5vw, 152px);
line-height: 0.92;
letter-spacing: -0.02em;
text-transform: uppercase;
color: #fff;
}
.hero .reveal-mask > * { transition-delay: .35s; }
.hero .hero-title .reveal-mask:nth-child(2) > * { transition-delay: .5s; }
.hero-bottom {
margin-top: 56px;
display: flex;
flex-direction: column;
gap: 40px;
}
@media (min-width: 1024px) {
.hero-bottom { flex-direction: row; align-items: flex-end; gap: 80px; }
}
.hero-desc { max-width: 384px; }
.hero-desc .rule-gold-l { margin-bottom: 24px; }
.hero-desc p { color: #8a8a8a; font-size: 15px; line-height: 1.85; font-weight: 300; }
.hero-cta { display: flex; flex-direction: column; gap: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.hero-stats strong {
display: block;
font-family: var(--serif);
font-weight: 300;
font-size: 18px;
color: var(--gold);
line-height: 1;
margin-bottom: 3px;
}
.hero-stats small {
font-size: 10px;
color: #c9c9c9;
text-transform: uppercase;
letter-spacing: 0.18em;
}
.hero .fade-up { transition-delay: .8s; }
body.loaded .hero .fade-up { opacity: 1; transform: translateY(0); }
.hero-scroll-cue {
position: absolute;
right: 32px; bottom: 96px;
z-index: 10;
display: none;
flex-direction: column;
align-items: center;
gap: 12px;
}
@media (min-width: 1024px) { .hero-scroll-cue { display: flex; right: 48px; } }
.cue-arrow { color: var(--gold); font-size: 14px; animation: cue-bob 1.8s ease-in-out infinite; }
.cue-line { width: 1px; height: 56px; background: linear-gradient(180deg, rgba(155,111,209,.6), transparent); }
.cue-label {
font-size: 9px;
color: #d9d9d9;
text-transform: uppercase;
letter-spacing: 0.28em;
writing-mode: vertical-lr;
}
.hero-marquee {
position: relative;
z-index: 10;
border-top: 1px solid rgba(155,111,209,.1);
background: rgba(0,0,0,.8);
backdrop-filter: blur(4px);
padding: 16px 0;
overflow: hidden;
}
.marquee-track {
display: flex;
width: max-content;
animation: marquee 30s linear infinite;
}
.marquee-item {
display: flex;
align-items: center;
gap: 24px;
padding: 0 24px;
white-space: nowrap;
}
.marquee-item span {
font-size: 10px;
color: #d9d9d9;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.marquee-item i { font-style: normal; color: rgba(155,111,209,.2); font-size: 7px; } .features { background: var(--ink); }
.features .section-head { border-bottom: 1px solid var(--line); }
.feature-row {
display: grid;
grid-template-columns: 1fr;
min-height: 70vh;
border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
.feature-row { grid-template-columns: 1fr 1fr; }
.feature-row.rev .feature-text { order: 2; }
.feature-row.rev .feature-img { order: 1; }
}
.feature-text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 64px 32px;
}
@media (min-width: 1024px) { .feature-text { padding: 96px 64px; } }
.feature-meta {
display: flex;
align-items: center;
gap: 16px;
width: 100%;
margin-bottom: 32px;
}
.feature-num {
font-family: var(--serif);
font-weight: 300;
font-size: clamp(48px, 6vw, 72px);
line-height: 1;
color: rgba(155,111,209,.16);
}
.meta-line { flex: 1; height: 1px; background: rgba(155,111,209,.14); }
.feature-text h3 {
font-size: clamp(38px, 5vw, 64px);
line-height: 1.0;
letter-spacing: -0.03em;
color: var(--mist);
margin-bottom: 8px;
}
.feature-sub {
font-family: var(--serif);
font-weight: 300;
font-size: clamp(22px, 2.5vw, 32px);
line-height: 1.2;
margin-bottom: 32px;
}
.feature-text .rule-gold-l { width: 40px; margin-bottom: 24px; }
.feature-body { color: #c9c9c9; font-weight: 500; font-size: 15px; line-height: 1.9; max-width: 384px; margin-bottom: 40px; }
.feature-img {
position: relative;
overflow: hidden;
min-height: 50vw;
}
@media (min-width: 1024px) { .feature-img { min-height: 0; } }
.feature-img img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.85;
}
.feature-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, var(--ink), transparent), rgba(155,111,209,.04);
}
.feature-watermark {
position: absolute;
bottom: 24px; right: 32px;
z-index: 1;
font-family: var(--serif);
font-weight: 700;
font-size: 80px;
line-height: 1;
color: rgba(155,111,209,.09);
pointer-events: none;
user-select: none;
} .plans {
position: relative;
background: var(--carbon);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
overflow: hidden;
padding: 112px 0;
}
.plans-glow {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 1100px; height: 550px;
border-radius: 50%;
background: radial-gradient(ellipse, rgba(155,111,209,.16) 0%, transparent 70%);
pointer-events: none;
}
.plans .section-head { padding: 0 0 80px; }
.plans-grid {
position: relative;
display: grid;
grid-template-columns: 1fr;
gap: 24px;
align-items: start;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.plan {
display: flex;
flex-direction: column;
border: 1px solid var(--line);
border-radius: 20px;
background: var(--smoke);
box-shadow: 0 20px 50px rgba(155,111,209,.05);
transition: transform .45s var(--ease), border-color .5s, box-shadow .5s;
}
.plan:hover {
transform: translateY(-6px);
border-color: rgba(155,111,209,.35);
box-shadow: 0 30px 70px rgba(155,111,209,.1), 0 0 40px rgba(155,111,209,.08);
}
.plan.featured {
background:
linear-gradient(var(--smoke), var(--smoke)) padding-box,
linear-gradient(135deg, #472270, #c9aef0, #9b6fd1, #472270) border-box;
background-size: 200% auto;
border: 1.5px solid transparent;
animation: shimmer-border 3.5s ease infinite;
}
@media (min-width: 768px) { .plan.featured { transform: translateY(-14px); } .plan.featured:hover { transform: translateY(-20px); } }
.plan-badge {
background: linear-gradient(90deg, #472270, #9b6fd1, #c9aef0);
color: #fff;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.25em;
text-align: center;
padding: 10px;
border-radius: 12px 12px 0 0;
}
.plan-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.plan-tier { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.tier-numeral {
font-family: var(--serif);
font-weight: 300;
font-size: 42px;
line-height: 1;
color: rgba(155,111,209,.18);
}
.plan.featured .tier-numeral { color: rgba(155,111,209,.4); }
.plan-tier .meta-line { background: rgba(155,111,209,.14); }
.plan-tier small { font-size: 9px; color: #8a8a8a; text-transform: uppercase; letter-spacing: 0.22em; }
.plan h3 { font-size: 24px; font-weight: 500; color: var(--mist); margin-bottom: 4px; }
.plan-price { display: flex; align-items: flex-end; gap: 6px; margin: 20px 0 4px; }
.plan-price sup { color: var(--gold-lo); font-size: 14px; align-self: flex-start; margin-top: 4px; }
.plan-price span {
font-family: var(--serif);
font-weight: 300;
font-size: clamp(48px, 6vw, 68px);
line-height: 1;
color: var(--mist);
}
.plan-price.gold span {
color: var(--gold-hi);
}
.plan-price small { color: #8a8a8a; font-size: 14px; font-weight: 300; margin-bottom: 6px; }
.plan-hint { color: #8a8a8a; font-size: 11px; letter-spacing: 0.02em; margin-bottom: 28px; }
.plan .rule-gold { margin-bottom: 28px; }
.plan-features { list-style: none; flex: 1; margin-bottom: 32px; }
.plan-features li {
position: relative;
padding: 6px 0 6px 28px;
font-size: 12px;
color: var(--fog);
}
.plan-features li::before {
content: '✓';
position: absolute;
left: 0; top: 5px;
width: 16px; height: 16px;
border-radius: 50%;
font-size: 8px;
display: flex; align-items: center; justify-content: center;
border: 1px solid rgba(155,111,209,.4);
background: rgba(155,111,209,.12);
color: var(--gold-lo);
}
.plan-features li.no { color: #8a8a8a; text-decoration: line-through; opacity: .6; }
.plan-features li.no::before {
content: '–';
border-color: rgba(155,111,209,.14);
background: none;
color: #8a8a8a;
}
.plans-trust {
margin-top: 48px;
padding-top: 32px;
border-top: 1px solid var(--line);
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px 40px;
}
.plans-trust span { color: #a8a8a8; font-size: 12px; } .devices {
background: var(--ink);
border-bottom: 1px solid var(--line);
}
.devices-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .devices-grid { grid-template-columns: 1fr 1fr; } }
.devices-img { position: relative; overflow: hidden; min-height: 50vh; }
.devices-img img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.7;
}
.devices-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, var(--ink)), rgba(155,111,209,.03);
}
.devices-caption {
position: absolute;
bottom: 40px; left: 40px;
z-index: 1;
background: rgba(0,0,0,.55);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
padding: 14px 20px;
border-radius: 10px;
}
.caption-title {
font-family: var(--serif);
font-weight: 300;
font-size: 30px;
color: #fff;
margin-top: 8px;
}
.devices-content {
padding: 80px 32px;
border-left: 1px solid var(--line);
}
@media (min-width: 1024px) { .devices-content { padding: 112px 64px; } }
.devices-content h2 { font-size: clamp(36px, 5vw, 60px); margin-top: 20px; }
.device-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background: rgba(155,111,209,.14);
border: 1px solid var(--line);
border-radius: 14px;
overflow: hidden;
margin-bottom: 32px;
}
@media (min-width: 640px) { .device-grid { grid-template-columns: repeat(3, 1fr); } }
.device { background: var(--ink); padding: 16px; transition: background .3s; }
.device:hover { background: rgba(155,111,209,.06); }
.device strong {
display: block;
font-size: 12px;
font-weight: 500;
color: var(--fog);
margin-bottom: 2px;
transition: color .3s;
}
.device:hover strong { color: var(--gold-lo); }
.device small { font-size: 10px; color: #8a8a8a; }
.players .eyebrow { margin-bottom: 16px; }
.player-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.player-tags span {
font-size: 11px;
color: #a8a8a8;
border: 1px solid rgba(155,111,209,.2);
border-radius: 10px;
padding: 6px 12px;
transition: all .3s;
}
.player-tags span:hover { border-color: rgba(155,111,209,.5); color: var(--gold-lo); } .why { background: var(--ink); }
.why-grid { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-img { position: relative; overflow: hidden; min-height: 60vh; order: 2; }
@media (min-width: 1024px) {
.why-img { order: 1; position: sticky; top: 0; height: 100vh; }
}
.why-img img {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.6;
}
.why-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, rgba(0,0,0,.2) 50%, rgba(0,0,0,.8)), rgba(155,111,209,.03);
}
.why-stats {
position: absolute;
left: 32px; right: 32px; bottom: 48px;
z-index: 1;
border-radius: 10px;
padding: 28px;
background: rgba(0,0,0,.55);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
@media (min-width: 1024px) { .why-stats { left: 48px; right: 48px; } }
.why-stats .eyebrow { margin-bottom: 20px; }
.why-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-stats-grid strong {
display: block;
font-family: var(--serif);
font-weight: 300;
font-size: 24px;
color: var(--gold);
margin-bottom: 2px;
}
.why-stats-grid small {
font-size: 10px;
color: #8a8a8a;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.why-content { order: 1; border-left: 1px solid var(--line); }
@media (min-width: 1024px) { .why-content { order: 2; } }
.why-head {
padding: 80px 32px;
border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .why-head { padding: 80px 64px; } }
.why-head h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 20px; }
.pillar {
display: flex;
align-items: flex-start;
gap: 32px;
padding: 40px 32px;
border-bottom: 1px solid var(--line);
transition: background .4s;
}
@media (min-width: 1024px) { .pillar { padding: 40px 64px; } }
.pillar:hover { background: rgba(155,111,209,.04); }
.pillar-stat { flex-shrink: 0; width: 80px; text-align: right; }
.pillar-stat strong {
display: block;
font-family: var(--serif);
font-weight: 300;
font-size: clamp(24px, 3vw, 36px);
line-height: 1;
color: var(--gold-lo);
}
.pillar-stat small {
font-size: 9px;
color: #8a8a8a;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.pillar-text { flex: 1; padding-top: 4px; }
.pillar-text::before {
content: '';
display: block;
height: 1px;
background: rgba(155,111,209,.18);
margin-bottom: 24px;
transition: background .4s;
}
.pillar:hover .pillar-text::before { background: rgba(155,111,209,.4); }
.pillar-text h3 { font-size: 18px; font-weight: 500; color: var(--mist); margin-bottom: 12px; }
.pillar-text p { color: #c9c9c9; font-weight: 500; font-size: 13px; line-height: 1.85; } .cta-banner {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
overflow: hidden;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.cta-bg { position: absolute; inset: -10% 0; will-change: transform; }
.cta-bg img {
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.2;
}
.cta-bg::after {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 70% 80% at 0% 50%, rgba(155,111,209,.18) 0%, transparent 60%),
linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.7) 50%, rgba(0,0,0,.4));
}
.cta-content { position: relative; z-index: 10; padding-top: 96px; padding-bottom: 96px; max-width: 1400px; }
.cta-content .eyebrow { margin-bottom: 32px; }
.cta-content h2 {
font-size: clamp(44px, 7vw, 96px);
line-height: 0.95;
letter-spacing: -0.03em;
margin-bottom: 32px;
color: #fff;
}
.cta-content .rule-gold-l { width: 56px; margin-bottom: 28px; }
.cta-content p { color: #8a8a8a; font-size: 15px; line-height: 1.85; max-width: 448px; margin-bottom: 40px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 32px; }
.cta-trust span { font-size: 11px; color: #a8a8a8; }
.cta-big-stat {
position: absolute;
right: 80px;
top: 50%;
transform: translateY(-50%);
z-index: 10;
display: none;
text-align: right;
}
@media (min-width: 1280px) { .cta-big-stat { display: block; } }
.cta-big-stat strong {
display: block;
font-family: var(--serif);
font-weight: 300;
font-size: clamp(80px, 10vw, 140px);
line-height: 1;
color: #fff;
}
.cta-big-stat small {
display: block;
font-size: 11px;
color: #8a8a8a;
text-transform: uppercase;
letter-spacing: 0.25em;
margin-top: 8px;
}
.cta-big-stat .stars { color: var(--gold); font-size: 14px; margin-top: 16px; letter-spacing: 3px; }
.cta-big-stat em { font-style: normal; font-size: 11px; color: #949494; } .testimonials {
position: relative;
background: var(--carbon);
padding: 112px 0;
overflow: hidden;
}
.giant-quote {
position: absolute;
top: 0; left: 50%;
transform: translate(-50%, -25%);
font-family: Georgia, serif;
font-size: clamp(200px, 30vw, 400px);
line-height: 1;
color: rgba(155,111,209,.05);
pointer-events: none;
user-select: none;
}
.testimonials .section-head { padding: 0 0 80px; }
.slider-controls { display: flex; align-items: center; gap: 12px; }
.slider-controls > button {
width: 48px; height: 48px;
border: 1px solid rgba(155,111,209,.3);
border-radius: 10px;
color: #a8a8a8;
font-size: 16px;
transition: all .3s;
}
.slider-controls > button:hover { color: var(--gold-lo); border-color: rgba(155,111,209,.6); }
.slider-dots { display: flex; gap: 8px; padding: 0 16px; }
.slider-dots button {
width: 6px; height: 6px;
border-radius: 99px;
background: rgba(155,111,209,.25);
transition: all .4s var(--ease);
}
.slider-dots button.active { width: 32px; background: var(--gold); }
.testimonial-card {
display: grid;
grid-template-columns: 1fr;
border: 1px solid var(--line);
border-radius: 20px;
overflow: hidden;
background: var(--smoke);
box-shadow: 0 20px 50px rgba(155,111,209,.05);
transition: opacity .4s var(--ease), transform .4s var(--ease);
}
@media (min-width: 1024px) { .testimonial-card { grid-template-columns: 1fr 3fr; } }
.testimonial-card.switching { opacity: 0; transform: translateY(24px); }
.t-author {
background: rgba(155,111,209,.05);
padding: 40px;
border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .t-author { border-bottom: 0; border-right: 1px solid var(--line); } }
.t-avatar {
width: 56px; height: 56px;
border-radius: 50%;
border: 1px solid rgba(155,111,209,.4);
background: rgba(155,111,209,.1);
display: flex; align-items: center; justify-content: center;
font-family: var(--serif);
font-size: 14px;
font-weight: 600;
color: var(--gold-lo);
margin-bottom: 24px;
}
.t-name { font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--mist); margin-bottom: 4px; }
.t-loc { font-size: 11px; color: #8a8a8a; margin-bottom: 20px; }
.t-stars { color: var(--gold-lo); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.t-plan {
display: inline-block;
border: 1px solid rgba(155,111,209,.3);
border-radius: 99px;
padding: 6px 14px;
font-size: 9px;
color: var(--gold-lo);
text-transform: uppercase;
letter-spacing: 0.2em;
}
.t-quote {
background: var(--smoke);
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
@media (min-width: 1024px) { .t-quote { padding: 56px; } }
.t-mark { font-family: Georgia, serif; font-size: 60px; line-height: 1; color: rgba(155,111,209,.14); margin-bottom: 8px; }
.t-quote blockquote {
font-family: var(--sans);
font-weight: 500;
font-style: italic;
font-size: clamp(17px, 1.8vw, 22px);
line-height: 1.85;
color: var(--fog);
margin-bottom: 24px;
}
.t-bottom-stats {
margin-top: 56px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
max-width: 512px;
}
.t-bottom-stats div { text-align: center; }
.t-bottom-stats strong {
display: block;
font-family: var(--serif);
font-weight: 300;
font-size: clamp(22px, 3vw, 32px);
color: var(--gold-lo);
margin-bottom: 4px;
}
.t-bottom-stats small { font-size: 10px; color: #8a8a8a; text-transform: uppercase; letter-spacing: 0.18em; } .faq {
background: var(--carbon);
border-top: 1px solid var(--line);
padding: 112px 0;
}
.faq-grid {
display: grid;
grid-template-columns: 1fr;
gap: 64px;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; gap: 96px; } }
.faq-intro { align-self: start; }
@media (min-width: 1024px) { .faq-intro { position: sticky; top: 128px; } }
.faq-intro h2 { font-size: clamp(36px, 5vw, 60px); margin: 20px 0 24px; }
.faq-intro p { color: #c9c9c9; font-weight: 500; font-size: 13px; line-height: 1.9; margin-bottom: 32px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item.open { border-color: var(--line-mid); }
.acc-head {
width: 100%;
display: flex;
align-items: flex-start;
gap: 16px;
padding: 28px 0;
text-align: left;
}
.acc-head em {
font-style: normal;
font-size: 9px;
font-weight: 600;
letter-spacing: 0.2em;
color: rgba(155,111,209,.45);
margin-top: 4px;
flex-shrink: 0;
}
.acc-head span {
flex: 1;
font-family: var(--serif);
font-size: 14px;
font-weight: 500;
line-height: 1.5;
color: var(--fog);
transition: color .3s;
}
.acc-item.open .acc-head span { color: var(--gold-lo); }
.acc-head i {
font-style: normal;
flex-shrink: 0;
width: 32px; height: 32px;
border: 1px solid rgba(155,111,209,.15);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
color: #8a8a8a;
font-size: 13px;
transition: transform .3s, color .3s, border-color .3s;
}
.acc-item.open .acc-head i {
transform: rotate(45deg);
color: var(--gold-lo);
border-color: rgba(155,111,209,.5);
}
.acc-body {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows .4s var(--ease);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > p {
overflow: hidden;
padding-left: 36px;
color: #c9c9c9;
font-weight: 500;
font-size: 13px;
line-height: 1.95;
}
.acc-item.open .acc-body > p { padding-bottom: 28px; } .contact { background: var(--ink); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info {
padding: 96px 32px;
border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
.contact-info { padding: 128px 64px; border-bottom: 0; border-right: 1px solid var(--line); }
}
.contact-info h2 { font-size: clamp(36px, 4.5vw, 60px); margin-top: 20px; }
.contact-info .section-body { margin-bottom: 48px; }
.channels { display: flex; flex-direction: column; gap: 16px; }
.channel {
display: flex;
align-items: center;
gap: 20px;
padding: 20px;
border: 1px solid var(--line);
border-radius: 14px;
transition: all .3s;
}
.channel:hover { border-color: rgba(155,111,209,.3); background: rgba(155,111,209,.04); }
.channel-icon {
width: 40px; height: 40px;
flex-shrink: 0;
border: 1px solid rgba(155,111,209,.2);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
color: var(--gold-lo);
font-size: 15px;
transition: border-color .3s;
}
.channel:hover .channel-icon { border-color: rgba(155,111,209,.5); }
.channel-main { flex: 1; min-width: 0; }
.channel-main small {
display: block;
font-size: 10px;
color: #8a8a8a;
text-transform: uppercase;
letter-spacing: 0.18em;
margin-bottom: 2px;
}
.channel-main span {
display: block;
font-size: 13px;
font-weight: 500;
color: var(--fog);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.channel em { font-style: normal; font-size: 10px; color: #8a8a8a; }
.online-badge {
display: flex;
align-items: center;
gap: 12px;
margin-top: 40px;
font-size: 11px;
color: #a8a8a8;
}
.pulse-dot {
position: relative;
width: 8px; height: 8px;
border-radius: 50%;
background: #22c55e;
flex-shrink: 0;
}
.pulse-dot::after {
content: '';
position: absolute;
inset: 0;
border-radius: 50%;
background: #22c55e;
animation: ping 1.6s ease-out infinite;
}
.contact-form-wrap { padding: 96px 32px; }
@media (min-width: 1024px) { .contact-form-wrap { padding: 128px 64px; } }
.form-title { display: inline-flex; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 20px; }
.form-row .field { margin-bottom: 0; }
.form-row { margin-bottom: 20px; }
.field label {
display: block;
font-size: 9px;
text-transform: uppercase;
letter-spacing: 0.2em;
color: #a8a8a8;
margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
width: 100%;
background: var(--smoke);
border: 1px solid var(--line);
border-radius: 10px;
padding: 14px 16px;
font-family: var(--sans);
font-size: 13px;
color: var(--mist);
transition: border-color .3s;
}
.field select { color: var(--fog); appearance: none; }
.field textarea { resize: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--ghost); }
.field input:focus, .field select:focus, .field textarea:focus {
outline: none;
border-color: rgba(155,111,209,.5);
}
.form-note { font-size: 10px; color: #8a8a8a; text-align: center; margin-top: 16px; }
.form-success { text-align: center; padding: 64px 0; }
.success-circle {
width: 64px; height: 64px;
margin: 0 auto 24px;
border: 1px solid rgba(155,111,209,.4);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: var(--gold-lo);
font-size: 22px;
}
.form-success h3 { font-size: 24px; color: var(--mist); margin-bottom: 12px; }
.form-success p { color: #c9c9c9; font-weight: 500; font-size: 13px; line-height: 1.7; max-width: 320px; margin: 0 auto; } .footer { background: var(--ink); border-top: 1px solid rgba(155,111,209,.16); }
.footer-rule { height: 1px; background: linear-gradient(90deg, rgba(155,111,209,.5) 0%, rgba(155,111,209,.05) 100%); }
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
padding: 64px 0;
border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo-text { display: block; }
.footer-brand p {
color: #a8a8a8;
font-size: 12px;
line-height: 1.95;
max-width: 320px;
margin-bottom: 32px;
}
.socials { display: flex; gap: 12px; }
.socials a {
width: 36px; height: 36px;
border: 1px solid rgba(155,111,209,.2);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
color: #a8a8a8;
font-size: 13px;
transition: all .3s;
}
.socials a:hover { color: var(--gold-lo); border-color: rgba(155,111,209,.5); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .eyebrow { margin-bottom: 8px; }
.footer-col a { font-size: 12px; color: #a8a8a8; transition: color .3s; }
.footer-col a:hover { color: var(--gold-lo); }
.footer-bottom {
padding: 24px 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 16px;
font-size: 10px;
color: #8a8a8a;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.online-badge.dim { margin: 0; font-size: 10px; color: #8a8a8a; }
.online-badge.dim .pulse-dot { width: 6px; height: 6px; background: #22c55e; }
.online-badge.dim .pulse-dot::after { background: #22c55e; } @media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
html { scroll-behavior: auto; }
.fade-up, .reveal-mask > *, .clip-reveal { opacity: 1; transform: none; clip-path: none; }
}  body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } } .logo-mark-img {
width: auto;
height: 34px;
background: none;
border: none;
border-radius: 0;
}
@media (min-width: 1024px) {
.navbar .logo-mark-img { height: clamp(46px, 5vw, 68px); }
}
.logo-mark-img img { width: auto; height: 100%; object-fit: contain; }
.footer-brand .logo-mark-img { height: 34px; } .legal-meta { margin-bottom: 40px !important; }
.section-body h2 {
font-family: var(--sans);
font-size: 15px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--gold-lo);
margin: 48px 0 16px;
}
.section-body h2:first-of-type { margin-top: 0; }
.section-body h3 {
font-family: var(--sans);
font-size: 13px;
font-weight: 600;
color: var(--mist);
margin: 24px 0 10px;
}
.section-body p { margin: 0 0 18px; }
.section-body ul, .section-body ol { margin: 0 0 18px; padding-left: 20px; }
.section-body li { margin-bottom: 8px; }
.section-body li::marker { color: var(--gold-lo); }
.section-body strong { color: var(--mist); font-weight: 600; }
.section-body a { color: var(--gold-lo); text-decoration: underline; text-decoration-color: rgba(155,111,209,.4); text-underline-offset: 3px; transition: text-decoration-color .3s; }
.section-body a:hover { text-decoration-color: var(--gold-lo); }
.section-body h2 { scroll-margin-top: 110px; } .legal-page { position: relative; overflow: hidden; background: var(--ink); border-top: 1px solid var(--line); min-height: 70vh; }
.legal-glow {
position: absolute;
top: -220px; right: -180px;
width: 640px; height: 640px;
border-radius: 50%;
background: radial-gradient(circle, rgba(155,111,209,.1), transparent 65%);
pointer-events: none;
}
.legal-page > .container { position: relative; padding-top: 150px; padding-bottom: 130px; }
.legal-hero { max-width: 720px; margin-bottom: 64px; }
.legal-crumb { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ghost); margin-bottom: 22px; }
.legal-crumb a { color: var(--fog); transition: color .3s; }
.legal-crumb a:hover { color: var(--gold-lo); }
.legal-crumb > span:last-child { color: var(--gold-lo); }
.legal-hero h1 { font-size: clamp(36px, 5.5vw, 60px); line-height: 1.05; letter-spacing: -0.02em; color: var(--mist); margin: 0 0 24px; }
.legal-hero .rule-gold-l { margin-top: 4px; }
.legal-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.legal-grid-single { max-width: 760px; }
@media (min-width: 1024px) {
.legal-grid:not(.legal-grid-single) { grid-template-columns: 220px 1fr; gap: 80px; }
}
.legal-toc .eyebrow { margin-bottom: 18px; }
.legal-toc nav { display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.legal-toc nav a {
padding: 8px 0 8px 18px;
margin-left: -1px;
font-size: 12.5px;
line-height: 1.4;
color: #a8a8a8;
border-left: 1px solid transparent;
transition: color .25s, border-color .25s;
}
.legal-toc nav a:hover { color: var(--gold-lo); border-left-color: var(--gold-lo); }
@media (min-width: 1024px) { .legal-toc { position: sticky; top: 128px; } }
@media (max-width: 1023px) { .legal-toc nav { max-height: 260px; overflow-y: auto; } }
.legal-article.surface-card {
max-width: 760px;
background: var(--smoke);
border: 1px solid var(--line);
border-radius: 20px;
padding: 56px;
box-shadow: 0 20px 60px rgba(155,111,209,.06);
}
.legal-article.surface-card .section-body { max-width: none; margin: 0; }
@media (max-width: 640px) { .legal-article.surface-card { padding: 32px 24px; } }
.legal-top-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid var(--line);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gold-lo);
transition: color .3s;
}
.legal-top-link:hover { color: var(--gold); } #contactForm.sending { opacity: 0.5; pointer-events: none; }
.form-error { color: #ff8080; font-size: 13px; margin-top: 12px; } .alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .screen-reader-text { font-size: 13px; color: var(--fog); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); } .work { background: var(--smoke); border-top: 1px solid var(--line); }
.work .section-head { padding-bottom: 64px; }
.work-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
padding-bottom: 128px;
}
@media (min-width: 768px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.work-card {
position: relative;
overflow: hidden;
margin: 0;
aspect-ratio: 4 / 3;
border: 1px solid var(--line-mid);
border-radius: 14px;
background: var(--carbon);
transition: border-color .35s var(--ease);
}
.work-card:hover { border-color: rgba(155,111,209,.5); }
.work-card img,
.work-card video {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 1s var(--ease);
}
.work-card:hover img,
.work-card:hover video { transform: scale(1.05); }
.work-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85));
pointer-events: none;
}
.work-caption { position: absolute; left: 28px; right: 28px; bottom: 24px; z-index: 1; }
.work-caption .caption-title { font-size: 22px; }
.work-card-video { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (min-width: 1024px) { .work-card-video { aspect-ratio: 21 / 9; } }
.work-card-video .work-caption { left: 40px; right: 40px; bottom: 36px; }
.work-card-video .work-caption .caption-title { font-size: 30px; } .faq-img {
margin-top: 48px;
aspect-ratio: 4 / 3;
overflow: hidden;
border: 1px solid var(--line-mid);
}
.faq-img img { width: 100%; height: 100%; object-fit: cover; }