:root {
	--color-bg: #030207;
	--color-ink: #07040e;
	--color-surface: #10091c;
	--color-surface-2: #1a0f2c;
	--color-text: #fbf7ff;
	--color-muted: #c3b6d8;
	--color-border: rgba(202, 151, 255, 0.24);
	--color-accent: #a855f7;
	--color-accent-2: #f043ff;
	--color-blue: #4ea1ff;
	--color-success: #35f2ad;
	--font-display: ui-serif, Georgia, "Times New Roman", serif;
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--step--1: clamp(0.84rem, 0.8rem + 0.16vw, 0.94rem);
	--step-0: clamp(0.98rem, 0.92rem + 0.25vw, 1.08rem);
	--step-1: clamp(1.12rem, 1.02rem + 0.55vw, 1.45rem);
	--step-2: clamp(1.7rem, 1.25rem + 2.2vw, 3rem);
	--step-3: clamp(2.75rem, 1.5rem + 5.2vw, 6.6rem);
	--space-sm: 0.8rem;
	--space-md: 1.25rem;
	--space-lg: 2rem;
	--space-xl: clamp(3rem, 6vw, 5.5rem);
	--space-2xl: clamp(4.5rem, 9vw, 8rem);
	--radius: 8px;
	--shadow: 0 28px 90px rgba(168, 85, 247, 0.32);
	--container: 1220px;
	--header-height: 74px;
	--ease: cubic-bezier(.2,.8,.2,1);
}
* { box-sizing: border-box; }
html { background: var(--color-bg); scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at 12% 8%, rgba(168,85,247,.24), transparent 30rem), radial-gradient(circle at 88% 18%, rgba(240,67,255,.16), transparent 32rem), var(--color-bg); color: var(--color-text); font-family: var(--font-body); font-size: var(--step-0); line-height: 1.65; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(to bottom, #000 0 38%, transparent 90%); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
a:hover { color: var(--color-accent-2); }
:focus-visible { outline: 3px solid var(--color-accent-2); outline-offset: 4px; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.content-narrow { max-width: 780px; }
.section { padding-block: var(--space-2xl); position: relative; }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 50; background: var(--color-accent); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 40; min-height: var(--header-height); background: rgba(3,2,7,.78); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.07); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.site-header.is-scrolled { border-color: var(--color-border); box-shadow: 0 10px 40px rgba(0,0,0,.3); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.wordmark { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; text-decoration: none; white-space: nowrap; }
.wordmark::after { content: "."; color: var(--color-accent-2); }
.primary-nav { display: flex; align-items: center; gap: 1.05rem; font-size: .95rem; }
.primary-nav a { color: rgba(251,247,255,.78); text-decoration: none; }
.primary-nav a:hover { color: #fff; }
.nav-toggle { display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--color-border); background: transparent; color: #fff; border-radius: var(--radius); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .82rem 1.15rem; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2)); color: #fff; font-weight: 900; text-decoration: none; cursor: pointer; box-shadow: 0 18px 45px rgba(168,85,247,.32); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.button:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 26px 70px rgba(240,67,255,.34); }
.button--ghost { background: rgba(255,255,255,.045); color: #fff; box-shadow: none; }
.button--small { min-height: 40px; padding: .58rem .9rem; font-size: .9rem; }
.text-link { color: var(--color-accent-2); font-weight: 900; }
.eyebrow { margin: 0 0 var(--space-sm); color: var(--color-accent-2); font-size: .75rem; text-transform: uppercase; font-weight: 950; letter-spacing: .13em; }
h1, h2, h3 { font-family: var(--font-display); line-height: .95; margin: 0 0 var(--space-md); letter-spacing: 0; text-wrap: balance; }
h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
.lead { font-size: var(--step-1); color: var(--color-muted); max-width: 650px; }
.aw-home .hero { min-height: min(860px, calc(100svh - var(--header-height))); padding-block: clamp(3rem, 7vw, 7rem); display: grid; align-items: center; isolation: isolate; overflow: clip; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,2,7,.98), rgba(3,2,7,.86) 38%, rgba(3,2,7,.28) 76%); }
.hero-bg span { position: absolute; width: 18rem; aspect-ratio: 1; border: 1px solid rgba(240,67,255,.26); transform: rotate(45deg); filter: blur(.2px); animation: driftShape 12s var(--ease) infinite alternate; }
.hero-bg span:nth-child(1) { top: 14%; right: 18%; background: rgba(168,85,247,.16); }
.hero-bg span:nth-child(2) { bottom: 16%; left: 48%; width: 12rem; animation-delay: -4s; }
.hero-bg span:nth-child(3) { top: 42%; right: -3rem; width: 10rem; animation-delay: -7s; }
.hero__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); gap: clamp(1.5rem, 4vw, 4.5rem); align-items: center; }
.hero-title { max-width: 9.8ch; margin-bottom: var(--space-md); }
.hero-title span { display: block; opacity: 0; transform: translateY(110%) rotateX(-22deg); transform-origin: left bottom; animation: titleIn .72s var(--ease) forwards; }
.hero-title span:nth-child(2) { animation-delay: .08s; }
.hero-title span:nth-child(3) { animation-delay: .16s; }
.hero-title span:nth-child(4) { animation-delay: .24s; }
.hero-title span:nth-child(5) { animation-delay: .32s; color: transparent; -webkit-text-stroke: 1px rgba(251,247,255,.86); text-shadow: 0 0 34px rgba(240,67,255,.3); }
.reveal-text { opacity: 0; transform: translateY(18px); animation: fadeUp .75s var(--ease) forwards; }
.hero__content .eyebrow { animation-delay: .12s; }
.hero__content .lead { animation-delay: .48s; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-block: var(--space-lg); animation-delay: .58s; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; max-width: 690px; margin-bottom: 1.2rem; animation-delay: .68s; }
.hero-metrics span { border: 1px solid var(--color-border); border-radius: var(--radius); padding: .8rem; background: rgba(255,255,255,.045); color: var(--color-muted); font-size: var(--step--1); }
.hero-metrics strong { display: block; color: #fff; font-size: 1rem; }
.status-dot { display: inline-flex; align-items: center; gap: .55rem; color: var(--color-muted); animation-delay: .76s; }
.status-dot::before { content: ""; width: .68rem; height: .68rem; border-radius: 50%; background: var(--color-success); box-shadow: 0 0 0 6px rgba(53,242,173,.13), 0 0 24px rgba(53,242,173,.75); }
.hero-visual { position: relative; min-height: clamp(380px, 46vw, 650px); perspective: 1200px; }
.hero-visual::before { content: ""; position: absolute; inset: 15% 0 4%; background: radial-gradient(circle, rgba(168,85,247,.36), transparent 66%); filter: blur(35px); animation: pulseGlow 4s var(--ease) infinite alternate; }
.hero-visual__image { position: absolute; inset: 2% -10% 0 -4%; width: 116%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 80px rgba(168,85,247,.38)); animation: floatVisual 6s var(--ease) infinite alternate; will-change: transform; }
.hero-visual__hud { position: absolute; z-index: 2; min-width: 180px; border: 1px solid var(--color-border); border-radius: var(--radius); background: rgba(12,7,22,.72); box-shadow: var(--shadow); backdrop-filter: blur(14px); padding: .85rem 1rem; animation: floatHud 4.2s var(--ease) infinite alternate; }
.hero-visual__hud span { display: block; color: var(--color-muted); font-size: .78rem; }
.hero-visual__hud strong { display: block; color: #fff; }
.hud-one { top: 12%; left: 2%; }
.hud-two { right: 3%; top: 46%; animation-delay: -.8s; }
.hud-three { left: 18%; bottom: 7%; animation-delay: -1.5s; }
.ticker { overflow: hidden; border-block: 1px solid var(--color-border); background: linear-gradient(90deg, rgba(168,85,247,.08), rgba(240,67,255,.14)); }
.ticker__track { display: flex; width: max-content; gap: 2rem; padding: .95rem 0; animation: ticker 26s linear infinite; }
.ticker span { color: rgba(251,247,255,.72); font-weight: 900; white-space: nowrap; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.proof-section { padding-top: var(--space-xl); }
.proof-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.proof-card { border: 1px solid var(--color-border); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(168,85,247,.08)); padding: clamp(1.15rem, 2vw, 1.8rem); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.proof-card p { color: var(--color-muted); }
.proof-card--wide { grid-row: span 2; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.section-heading--stacked { align-items: start; }
.section-heading h1, .section-heading h2 { max-width: 850px; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.project-grid--featured .project-card:first-child { grid-column: span 2; }
.project-card { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.project-card:hover, .project-card:focus-within { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(240,67,255,.55); }
.project-card__link { display: block; height: 100%; padding: .75rem; text-decoration: none; }
.project-card__media { margin: 0 0 1rem; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 6px; background: #13091e; }
.project-grid--featured .project-card:first-child .project-card__media { aspect-ratio: 16 / 9; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.project-card:hover img { transform: scale(1.06); }
.project-card__placeholder { display: block; width: 100%; height: 100%; background-image: url('../images/project-visual-sheet.jpg'); background-size: 300% 200%; background-position: 0 0; transition: transform .45s var(--ease); }
.project-card:hover .project-card__placeholder { transform: scale(1.06); }
.project-card:nth-child(2) .project-card__placeholder { background-position: 50% 0; }
.project-card:nth-child(3) .project-card__placeholder { background-position: 100% 0; }
.project-card:nth-child(4) .project-card__placeholder { background-position: 0 100%; }
.project-card:nth-child(5) .project-card__placeholder { background-position: 50% 100%; }
.project-card:nth-child(6) .project-card__placeholder { background-position: 100% 100%; }
.project-card__meta, .project-card__chip { color: var(--color-muted); font-size: .84rem; }
.project-card h3 { color: #fff; margin-top: .35rem; }
.project-card p { color: var(--color-muted); }
.project-card__chip { display: inline-flex; border: 1px solid var(--color-border); border-radius: 999px; padding: .25rem .55rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card { position: relative; min-height: 300px; border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(1.25rem, 2.2vw, 2rem); background: linear-gradient(145deg, rgba(168,85,247,.16), rgba(255,255,255,.035)); overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.service-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 20% 0%, rgba(240,67,255,.34), transparent 32%); opacity: 0; transition: opacity .25s var(--ease); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(240,67,255,.58); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; }
.service-card p, .service-card ul { color: var(--color-muted); }
.service-card ul { padding-left: 1.1rem; }
.process-rail { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--color-border); background: var(--color-border); }
.process-step { min-height: 170px; padding: 1rem; background: rgba(7,4,14,.92); display: flex; flex-direction: column; justify-content: space-between; }
.process-step span { color: var(--color-accent-2); font-weight: 950; }
.process-step h3 { font-family: var(--font-body); font-size: 1rem; line-height: 1.25; margin: 0; }
.split-section__grid, .contact-grid, .project-hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); }
.tech-cloud { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.4rem 0; }
.tech-cloud span { border: 1px solid var(--color-border); border-radius: 999px; padding: .58rem .92rem; background: rgba(255,255,255,.055); box-shadow: inset 0 0 22px rgba(168,85,247,.12); }
.final-cta { background: radial-gradient(circle at 68% 20%, rgba(240,67,255,.24), transparent 30rem), linear-gradient(180deg, #08040e, #030207); border-block: 1px solid var(--color-border); }
.final-cta__inner { max-width: 900px; }
.final-cta p { color: var(--color-muted); max-width: 660px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .8rem; align-items: end; margin-bottom: var(--space-lg); }
.filter-bar label { display: grid; gap: .25rem; color: var(--color-muted); font-size: .9rem; }
select, input, textarea { width: 100%; min-height: 46px; border: 1px solid var(--color-border); border-radius: var(--radius); background: rgba(255,255,255,.06); color: var(--color-text); font: inherit; padding: .75rem .85rem; }
select option { color: #111; }
textarea { resize: vertical; }
.filter-count { margin-left: auto; color: var(--color-muted); }
.project-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 0; }
.project-facts div, .metric, .testimonial { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; background: rgba(255,255,255,.055); }
.project-facts dt { color: var(--color-muted); font-size: .8rem; text-transform: uppercase; }
.project-facts dd { margin: .2rem 0 0; font-weight: 900; }
.project-hero-media { margin-bottom: var(--space-xl); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.case-study { max-width: 940px; }
.case-study__section { padding-block: var(--space-lg); border-top: 1px solid var(--color-border); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-block: var(--space-lg); }
.metric strong { display: block; font-size: var(--step-2); font-family: var(--font-display); }
.metric span { color: var(--color-muted); }
.project-links { display: flex; flex-wrap: wrap; gap: .8rem; margin-block: var(--space-lg); }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: rgba(255,255,255,.055); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: .35rem; font-weight: 800; }
.contact-form .full, .contact-form .form-notice, .contact-form button { grid-column: 1 / -1; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; }
.consent input { width: auto; min-height: auto; margin-top: .45rem; }
.hp { position: absolute; left: -9999px; }
.form-notice { padding: .85rem 1rem; border-radius: var(--radius); background: rgba(53,242,173,.14); color: #dfffee; }
.site-footer { padding-block: var(--space-xl) var(--space-lg); background: #020106; color: #fff; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: var(--space-xl); }
.site-footer a { color: #fff; }
.site-footer p, .site-footer li { color: rgba(251,247,255,.7); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.social-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-block: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: var(--space-lg); margin-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,.16); color: rgba(251,247,255,.7); }
.entry-content > * + * { margin-top: 1rem; }
.post-summary { padding-block: 1.5rem; border-bottom: 1px solid var(--color-border); }
.empty-state, .placeholder { color: var(--color-muted); }
.js .reveal { opacity: 0; transform: translateY(34px) scale(.98); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes titleIn { to { opacity: 1; transform: translateY(0) rotateX(0); } }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes floatVisual { from { transform: translate3d(0, 8px, 0) rotateZ(-1deg); } to { transform: translate3d(0, -16px, 0) rotateZ(1.2deg); } }
@keyframes floatHud { from { transform: translateY(0); } to { transform: translateY(-16px); } }
@keyframes pulseGlow { from { opacity: .55; transform: scale(.96); } to { opacity: 1; transform: scale(1.06); } }
@keyframes driftShape { from { transform: translate3d(0,0,0) rotate(45deg); } to { transform: translate3d(2rem,-1.5rem,0) rotate(58deg); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1180px) {
	:root { --step-3: clamp(2.6rem, 1.6rem + 4.4vw, 5.1rem); }
	.aw-home .hero { min-height: auto; }
	.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); }
	.hero-title { max-width: 9.2ch; }
	.hero-metrics { grid-template-columns: 1fr; max-width: 520px; }
	.proof-grid { grid-template-columns: repeat(2, 1fr); }
	.proof-card--wide { grid-column: span 2; grid-row: auto; }
	.process-rail { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	:root { --header-height: 68px; --space-2xl: 4.5rem; }
	.site-header__inner { min-height: var(--header-height); }
	.nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.primary-nav { position: fixed; inset: var(--header-height) 0 auto; display: none; padding: 1rem; background: rgba(3,2,7,.98); border-bottom: 1px solid var(--color-border); flex-direction: column; align-items: stretch; }
	.primary-nav.is-open { display: flex; }
	.primary-nav a { padding: .85rem 0; }
	.hero__grid, .split-section__grid, .contact-grid, .project-hero__grid { grid-template-columns: 1fr; }
	.hero__content { order: 2; }
	.hero-visual { order: 1; min-height: clamp(250px, 62vw, 420px); margin-top: -1rem; }
	.hero-title { max-width: 100%; font-size: clamp(2.45rem, 12vw, 4.4rem); }
	.hero-visual__image { inset: 0 -18% 0 -18%; width: 136%; }
	.hero-visual__hud { min-width: 145px; padding: .65rem .75rem; font-size: .85rem; }
	.hud-one { top: 6%; left: 1%; }
	.hud-two { right: 0; top: 45%; }
	.hud-three { left: 10%; bottom: 1%; }
	.project-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.project-grid--featured .project-card:first-child { grid-column: span 2; }
	.proof-grid { grid-template-columns: 1fr; }
	.proof-card--wide { grid-column: auto; }
	.credibility__grid { grid-template-columns: repeat(2, 1fr); }
	.metric-grid, .project-facts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.container { width: min(calc(100% - 1.25rem), var(--container)); }
	.wordmark { font-size: 1.12rem; }
	.aw-home .hero { padding-block: 2rem 3.25rem; }
	.hero-title { font-size: clamp(2.25rem, 14vw, 3.4rem); line-height: .92; }
	.lead { font-size: 1.05rem; }
	.hero__actions .button { width: 100%; }
	.hero-metrics { gap: .5rem; }
	.hero-visual { min-height: 270px; }
	.hero-visual__hud { display: none; }
	.ticker__track { animation-duration: 18s; }
	.section-heading { display: block; }
	.project-grid, .service-grid, .process-rail, .footer-grid, .contact-form { grid-template-columns: 1fr; }
	.project-grid--featured .project-card:first-child { grid-column: auto; }
	.service-card { min-height: auto; }
	.process-step { min-height: 128px; }
	.footer-bottom { display: block; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.js .reveal, .hero-title span, .reveal-text { opacity: 1; transform: none; }
}
/* Premium polish pass: Osiris hook, compact hero, logo, footer */
@font-face {
	font-family: "Osiris";
	src: local("Osiris");
	font-display: swap;
}
:root {
	--font-display: "Osiris", "Cinzel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-logo: "Osiris", "Cinzel", Georgia, serif;
}
.site-header {
	min-height: 64px;
	background: linear-gradient(180deg, rgba(3,2,7,.9), rgba(3,2,7,.66));
}
.site-header__inner { min-height: 64px; }
.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	text-decoration: none;
	isolation: isolate;
}
.brand-mark img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: drop-shadow(0 0 18px rgba(240,67,255,.38));
	animation: logoPulse 4.5s var(--ease) infinite alternate;
}
.brand-mark__text {
	font-family: var(--font-logo);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: .18em;
	color: rgba(251,247,255,.88);
}
.brand-mark:hover img { transform: translateY(-2px) rotate(-3deg); }
.aw-home .hero {
	min-height: clamp(620px, calc(100svh - 74px), 760px);
	padding-block: clamp(2.25rem, 4.8vw, 4.6rem);
}
.hero-bg span {
	width: clamp(5rem, 11vw, 10rem);
	background: transparent;
	border-color: rgba(240,67,255,.12);
	box-shadow: 0 0 80px rgba(168,85,247,.14);
}
.hero-bg span:nth-child(1) { top: 16%; right: 23%; }
.hero-bg span:nth-child(2) { bottom: 11%; left: 48%; width: clamp(4rem, 8vw, 7rem); }
.hero-bg span:nth-child(3) { display: none; }
.hero__grid {
	grid-template-columns: minmax(360px, .82fr) minmax(420px, 1fr);
	gap: clamp(1.5rem, 4vw, 4rem);
}
.hero-title {
	max-width: 10.8ch;
	font-size: clamp(3.25rem, 5.55vw, 5.9rem);
	line-height: .9;
	margin-bottom: 1.05rem;
}
.hero-title span { margin-bottom: .04em; }
.hero-title span:nth-child(3) {
	color: transparent;
	-webkit-text-stroke: 1px rgba(251,247,255,.84);
	text-shadow: 0 0 34px rgba(240,67,255,.3);
}
.hero-title span:nth-child(4),
.hero-title span:nth-child(5) { display: none; }
.hero__content .lead {
	max-width: 560px;
	font-size: clamp(1.02rem, 1.25vw, 1.25rem);
	line-height: 1.65;
	margin-bottom: 0;
}
.hero__actions { margin-block: 1.35rem; }
.hero-metrics {
	max-width: 560px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .55rem;
	margin-bottom: 1rem;
}
.hero-metrics span {
	padding: .68rem .72rem;
	font-size: .8rem;
	line-height: 1.45;
	background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.hero-metrics strong { font-size: .9rem; }
.hero-visual {
	min-height: clamp(330px, 37vw, 520px);
	align-self: center;
	transform: translateY(-1rem);
}
.hero-visual__image {
	inset: -2% -6% 0 -2%;
	width: 108%;
	height: 100%;
	border-radius: 12px;
	mask-image: radial-gradient(circle at 52% 50%, #000 0 68%, transparent 86%);
}
.hero-visual__hud {
	min-width: 156px;
	padding: .72rem .86rem;
	font-size: .9rem;
}
.hud-one { top: 8%; left: 7%; }
.hud-two { right: 6%; top: 50%; }
.hud-three { left: 24%; bottom: 4%; }
.proof-section { padding-top: clamp(3.2rem, 6vw, 5rem); }
.proof-grid { grid-template-columns: 1.05fr repeat(3, .8fr); }
.proof-card--wide h2 { font-size: clamp(2rem, 3vw, 3.1rem); }
.section-heading--stacked h2 { font-size: clamp(2rem, 3.8vw, 4rem); }
.site-footer {
	position: relative;
	overflow: hidden;
	padding-block: 0 1.4rem;
	background: #020106;
}
.footer-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 28% 8%, rgba(168,85,247,.3), transparent 30rem), radial-gradient(circle at 88% 20%, rgba(240,67,255,.18), transparent 26rem);
	opacity: .85;
}
.footer-cta {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding-block: clamp(2.4rem, 5vw, 4rem);
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta h2 {
	max-width: 780px;
	font-size: clamp(2.1rem, 4.8vw, 5rem);
}
.footer-grid {
	position: relative;
	grid-template-columns: 1.25fr .75fr 1fr 1.05fr;
	padding-block: clamp(2rem, 4vw, 3.2rem);
	gap: clamp(1.4rem, 4vw, 3.2rem);
}
.footer-brand p { max-width: 340px; }
.brand-mark--footer img { width: 56px; height: 56px; }
.site-footer h2 {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2vw, 2rem);
	margin-bottom: .8rem;
}
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; color: rgba(251,247,255,.74); }
.footer-links a:hover { color: #fff; }
.footer-email-stack {
	display: grid;
	gap: .55rem;
	margin-bottom: 1rem;
}
.footer-email-stack a,
.contact-email-stack a {
	width: fit-content;
	font-weight: 900;
	color: #fff;
	text-decoration-color: rgba(240,67,255,.65);
}
.contact-email-stack { display: grid; gap: .45rem; margin-top: 1rem; }
.social-links a,
.back-to-top {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	padding: .35rem .7rem;
	text-decoration: none;
	background: rgba(255,255,255,.04);
}
.footer-bottom {
	position: relative;
	padding-top: 1.25rem;
	margin-top: 0;
}
@keyframes logoPulse {
	from { filter: drop-shadow(0 0 14px rgba(240,67,255,.28)); }
	to { filter: drop-shadow(0 0 28px rgba(240,67,255,.58)); }
}
@media (max-width: 1180px) {
	.hero-title { font-size: clamp(3rem, 5vw, 4.7rem); }
	.aw-home .hero { min-height: auto; }
	.hero__grid { grid-template-columns: minmax(330px, .9fr) minmax(340px, .9fr); }
	.hero-visual { min-height: clamp(300px, 34vw, 430px); }
	.proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.brand-mark__text { display: none; }
	.aw-home .hero { padding-block: 1.8rem 3.2rem; }
	.hero__content { order: 1; }
	.hero-visual { order: 2; min-height: clamp(230px, 58vw, 360px); transform: none; }
	.hero-title { max-width: 100%; font-size: clamp(2.5rem, 10.5vw, 4rem); }
	.hero-metrics { grid-template-columns: 1fr; }
	.footer-cta,
	.footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.site-header,
	.site-header__inner { min-height: 62px; }
	.brand-mark img { width: 38px; height: 38px; }
	.hero-title { font-size: clamp(2.35rem, 12vw, 3.25rem); }
	.hero__actions { gap: .65rem; }
	.hero-visual { min-height: 245px; }
	.hero-visual__image { inset: 0 -22%; width: 144%; }
	.proof-card--wide h2,
	.section-heading--stacked h2,
	.footer-cta h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
}
