:root {
--bg-main: #02040a;
--bg-surface: #050814;
--bg-elevated: #060919;
--accent: #2563eb;
--accent-soft: #38bdf8;
--text-main: #f9fafb;
--text-muted: #9ca3af;
--border-subtle: rgba(148, 163, 184, 0.35);
--shadow-soft: 0 26px 70px rgba(0, 0, 0, 0.85);
--radius-xl: 24px;
--radius-lg: 18px;
--radius-pill: 999px;
--transition-fast: 0.18s ease-out;
--transition-med: 0.26s ease-out;
}

/* RESET */

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html,
body {
height: 100%;
scroll-behavior: smooth;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
"Inter", "Segoe UI", sans-serif;
background:
radial-gradient(circle at top, #020617 0, #02040a 46%, #01030a 100%);
color: var(--text-main);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
}

.page {
min-height: 100vh;
display: flex;
flex-direction: column;
}

/* ANIMATIONS */

[data-animate] {
opacity: 0;
transform: translateY(18px);
transition:
opacity 0.55s var(--transition-med),
transform 0.55s var(--transition-med);
}

[data-animate].is-visible {
opacity: 1;
transform: translateY(0);
}

/* LAYOUT */

.wrapper {
width: 100%;
max-width: 1040px;
margin: 0 auto;
padding: 0 20px;
}

/* NAV */

.nav {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(26px);
background: linear-gradient(
to bottom,
rgba(2, 6, 23, 0.96),
rgba(2, 6, 23, 0.9),
rgba(2, 6, 23, 0)
);
border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
max-width: 1040px;
margin: 0 auto;
}

.brand {
display: flex;
align-items: center;
gap: 10px;
}

.brand-mark {
width: 34px;
height: 34px;
border-radius: 999px;
background: radial-gradient(circle at 30% 0, var(--accent-soft), var(--accent));
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 18px rgba(37, 99, 235, 0.7);
}

.brand-mark span {
font-weight: 700;
font-size: 18px;
letter-spacing: 0.14em;
color: #020617;
}

.brand-name {
font-weight: 600;
letter-spacing: 0.22em;
font-size: 12px;
text-transform: uppercase;
}

.nav-links {
display: flex;
align-items: center;
gap: 22px;
font-size: 13px;
color: var(--text-muted);
}

.nav-links a {
position: relative;
padding: 4px 0;
transition: color var(--transition-fast);
}

.nav-links a::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height: 2px;
border-radius: 999px;
background: var(--accent-soft);
transition: width var(--transition-fast);
}

.nav-links a:hover {
color: #e5e7eb;
}

.nav-links a:hover::after {
width: 100%;
}

.nav-cta {
padding: 7px 16px;
border-radius: var(--radius-pill);
border: 1px solid rgba(56, 189, 248, 0.7);
background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), #020617);
color: #e0f2fe;
font-size: 12px;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 6px;
box-shadow: 0 0 22px rgba(56, 189, 248, 0.35);
cursor: pointer;
transition:
transform var(--transition-fast),
box-shadow var(--transition-med),
border var(--transition-fast);
}

.nav-cta:hover {
transform: translateY(-1px);
box-shadow: 0 0 32px rgba(56, 189, 248, 0.6);
border-color: var(--accent-soft);
}

.nav-toggle {
display: none;
flex-direction: column;
gap: 4px;
cursor: pointer;
}

.nav-toggle span {
width: 18px;
height: 2px;
border-radius: 999px;
background: var(--text-main);
}

/* MOBILE NAV */

.mobile-nav {
display: none;
border-bottom: 1px solid rgba(31, 41, 55, 0.8);
background: #020617;
}

.mobile-nav-inner {
padding: 10px 20px 14px;
}

.mobile-nav-links {
display: flex;
flex-direction: column;
gap: 10px;
font-size: 14px;
color: var(--text-muted);
}

/* HERO */

.hero {
padding: 90px 0 70px;
}

.hero-inner {
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
gap: 48px;
align-items: center;
}

.pill {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 4px 14px 4px 4px;
border-radius: var(--radius-pill);
border: 1px solid rgba(56, 189, 248, 0.5);
background: rgba(15, 23, 42, 0.9);
font-size: 11px;
color: var(--accent-soft);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 18px;
}

.pill-dot {
width: 16px;
height: 16px;
border-radius: 999px;
background: radial-gradient(circle at 30% 0, var(--accent-soft), var(--accent));
box-shadow: 0 0 12px rgba(56, 189, 248, 0.85);
}

.hero-title {
font-size: clamp(34px, 4.4vw, 48px);
line-height: 1.05;
margin-bottom: 16px;
letter-spacing: -0.03em;
}

.hero-title span {
background: linear-gradient(120deg, var(--accent-soft), var(--accent));
-webkit-background-clip: text;
color: transparent;
}

.hero-subtitle {
font-size: 15px;
color: var(--text-muted);
max-width: 520px;
margin-bottom: 26px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-bottom: 20px;
}

.btn-primary,
.btn-ghost {
font-size: 14px;
font-weight: 500;
border-radius: var(--radius-pill);
padding: 10px 20px;
border: 1px solid transparent;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition:
background var(--transition-med),
transform var(--transition-fast),
box-shadow var(--transition-med),
border var(--transition-fast),
color var(--transition-fast);
}

.btn-primary {
background: #f5f5f6;
color: #020617;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 22px 54px rgba(15, 23, 42, 0.85);
}

.btn-ghost {
border-color: rgba(148, 163, 184, 0.6);
color: #e5e7eb;
background: #050814;
}

.btn-ghost:hover {
border-color: var(--accent-soft);
color: var(--accent-soft);
}

.hero-meta {
font-size: 12px;
color: var(--text-muted);
}

.hero-meta strong {
color: var(--accent-soft);
}

/* HERO VISUAL */

.hero-visual {
position: relative;
padding: 22px;
border-radius: 24px;
background: var(--bg-surface);
border: 1px solid rgba(31, 41, 55, 0.9);
box-shadow: var(--shadow-soft);
overflow: hidden;
}

.hero-visual-orbit {
position: absolute;
inset: 18px;
border-radius: 22px;
border: 1px dashed rgba(55, 65, 81, 0.6);
opacity: 0.6;
}

.hero-visual-core {
position: relative;
border-radius: 18px;
background: linear-gradient(145deg, #050814, #030712);
padding: 22px 18px 18px;
border: 1px solid rgba(31, 41, 55, 0.95);
}

.hero-visual-title {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--text-muted);
margin-bottom: 6px;
}

.hero-visual-main {
font-size: 17px;
font-weight: 600;
margin-bottom: 14px;
}

.hero-visual-badges {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 16px;
}

.badge {
font-size: 11px;
padding: 3px 9px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.5);
color: var(--text-muted);
background: #020617;
}

.metric-row {
display: flex;
justify-content: space-between;
gap: 10px;
font-size: 11px;
color: var(--text-muted);
margin-bottom: 6px;
}

.metric-row strong {
color: var(--text-main);
font-size: 12px;
}

.hero-visual-footer {
margin-top: 12px;
font-size: 11px;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 8px;
}

.dot-green {
width: 7px;
height: 7px;
border-radius: 999px;
background: #22c55e;
}

/* GENERIC SECTIONS */

section {
padding: 40px 0 32px;
}

.section-header {
margin-bottom: 22px;
display: flex;
flex-direction: column;
gap: 6px;
}

.eyebrow {
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--accent-soft);
}

.section-title {
font-size: 22px;
font-weight: 600;
}

.section-subtitle {
font-size: 14px;
color: var(--text-muted);
max-width: 560px;
}

/* CARDS */

.cards-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}

.card {
background: var(--bg-surface);
border-radius: var(--radius-xl);
padding: 18px 16px 18px;
border: 1px solid var(--border-subtle);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
position: relative;
overflow: hidden;
transition:
transform var(--transition-fast),
box-shadow var(--transition-med),
border var(--transition-fast);
}

.card::before {
content: "";
position: absolute;
inset: -30%;
opacity: 0;
background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 55%);
transition: opacity var(--transition-med), transform var(--transition-med);
pointer-events: none;
}

.card:hover {
transform: translateY(-3px);
box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
border-color: rgba(56, 189, 248, 0.4);
}

.card:hover::before {
opacity: 1;
transform: translate3d(6px, -6px, 0);
}

.card-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 8px;
}

.card-body {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 12px;
}

.card-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 2px;
}

.tag {
font-size: 11px;
padding: 2px 8px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.6);
color: var(--text-muted);
}

/* SPLIT / LISTS */

.split {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
gap: 26px;
align-items: flex-start;
}

.list {
list-style: none;
font-size: 13px;
color: var(--text-muted);
display: grid;
gap: 8px;
}

.list li {
display: flex;
gap: 8px;
align-items: flex-start;
}

.list li span {
display: block;
margin-top: 4px;
color: var(--accent-soft);
}

.sub-heading {
font-size: 15px;
font-weight: 600;
margin-bottom: 6px;
}

.sub-heading + .list {
margin-bottom: 12px;
}

.pill-stat {
display: inline-flex;
align-items: baseline;
gap: 4px;
font-size: 13px;
color: var(--accent-soft);
margin-top: 4px;
}

/* ENGAGEMENTS */

.engagements {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}

.eng-card {
background: var(--bg-surface);
border-radius: var(--radius-lg);
padding: 16px 14px 16px;
border: 1px solid var(--border-subtle);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.eng-title {
font-size: 14px;
font-weight: 600;
margin-bottom: 4px;
}

.eng-price {
font-size: 13px;
color: var(--accent-soft);
margin-bottom: 10px;
}

.eng-body {
font-size: 12px;
color: var(--text-muted);
}

/* CONTACT */

.contact-box {
margin-top: 10px;
background: var(--bg-elevated);
border-radius: 24px;
padding: 20px 18px;
border: 1px solid rgba(55, 65, 81, 0.8);
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
gap: 22px;
box-shadow: var(--shadow-soft);
}

.contact-text {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 8px;
}

.calendly-wrapper {
border-radius: 18px;
overflow: hidden;
background: #020617;
}

/* FOOTER */

footer {
padding: 18px 0 30px;
font-size: 11px;
color: var(--text-muted);
border-top: 1px solid rgba(15, 23, 42, 0.9);
margin-top: 40px;
}

.footer-inner {
display: flex;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}

/* RESPONSIVE */

@media (max-width: 900px) {
.hero-inner {
grid-template-columns: minmax(0, 1fr);
gap: 32px;
}

.cards-grid,
.engagements {
grid-template-columns: minmax(0, 1fr);
}

.split {
grid-template-columns: minmax(0, 1fr);
}

.contact-box {
grid-template-columns: minmax(0, 1fr);
}

.hero {
padding: 72px 0 52px;