/* ===============================================================
   @javimxoficial · Personal brand — RED/BLACK PREMIUM
   Structure inspired by mikemunzvil.com · Dark, bold, HD effects
   =============================================================== */

:root {
    /* TRON LEGACY theme — violet neon + cyan accent on deep blue-black */
    --bg: #06060f;
    --bg-2: #0b0b1a;
    --bg-elev: #121226;
    --text: #ffffff;
    --text-dim: hsla(240, 12%, 100%, 0.66);
    --text-mute: hsla(240, 12%, 100%, 0.42);
    --border: hsla(255, 60%, 100%, 0.10);
    --border-strong: hsla(255, 60%, 100%, 0.18);

    /* --red* kept as names; values are now Tron violet neon */
    --red: #9d4bff;         /* primary violet neon (matches logo) */
    --red-bright: #c18cff;  /* bright violet */
    --red-deep: #5a17be;    /* deep violet */
    --gold: #29e0ef;        /* cyan accent (Tron duality) */

    --max-w: 1180px;
    --nav-h: 76px;

    --shadow-red: 0 24px 70px rgba(157, 75, 255, 0.30);
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.6);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-display: 'Poppins', system-ui, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* ============ AMBIENT BG ============ */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-orb { position: absolute; border-radius: 50%; filter: blur(120px); }
.bg-orb--1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(157, 75, 255,0.5), transparent 62%); top: -14%; left: -14%; opacity: 0.55; animation: drift 24s var(--ease) infinite; }
.bg-orb--2 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(90, 23, 190,0.5), transparent 62%); bottom: -12%; right: -12%; opacity: 0.5; animation: drift 30s var(--ease) infinite reverse; }
.bg-orb--3 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(157, 75, 255,0.28), transparent 62%); top: 45%; left: 55%; opacity: 0.35; animation: drift 26s var(--ease) infinite; animation-delay: -10s; }
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 50px) scale(0.94); }
}
body::before {
    content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(1200px 600px at 50% -8%, rgba(157, 75, 255,0.10), transparent),
        radial-gradient(900px 500px at 100% 100%, rgba(90, 23, 190,0.08), transparent);
}
.grain {
    position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-spotlight {
    position: fixed; top: 0; left: 0; width: 640px; height: 640px; border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 75, 255,0.14), rgba(90, 23, 190,0.05) 42%, transparent 70%);
    pointer-events: none; z-index: 0; transform: translate(-50%, -50%); opacity: 0;
    transition: opacity 0.4s ease; mix-blend-mode: screen; filter: blur(30px);
}
@media (hover: hover) and (pointer: fine) { body:hover .cursor-spotlight { opacity: 1; } }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ============ SHARED PRIMITIVES ============ */
.kicker {
    display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--red-bright);
    padding-left: 1.1rem; position: relative; margin-bottom: 1.25rem;
}
.kicker::before { content: ''; position: absolute; left: 0; top: 50%; width: 0.7rem; height: 2px; background: var(--red); transform: translateY(-50%); }
.kicker--gold { color: var(--gold); }
.kicker--gold::before { background: var(--gold); }

.text-red {
    background: linear-gradient(120deg, var(--red-bright), var(--red-deep));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-title {
    font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02;
    font-size: clamp(2.2rem, 5.5vw, 3.75rem); text-transform: uppercase; margin-bottom: 1rem;
}
.section-sub { color: var(--text-dim); font-size: 1.06rem; line-height: 1.65; max-width: 560px; margin: 0 auto; }

section, .hero { position: relative; z-index: 1; }

/* ============ BUTTONS ============ */
.btn {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 0.95rem 1.6rem; border-radius: 100px; font-family: var(--font-display); font-weight: 700;
    font-size: 0.95rem; letter-spacing: 0.01em; cursor: pointer; overflow: hidden; border: 1.5px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
    will-change: transform;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; margin-top: auto; }
.btn__arrow { transition: transform 0.35s var(--ease); font-size: 0.82em; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn__shine { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4), transparent 70%); transform: translateX(-120%); transition: transform 0.7s ease; }
.btn:hover .btn__shine { transform: translateX(120%); }

.btn--primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    color: #fff; box-shadow: 0 14px 38px rgba(157, 75, 255,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(157, 75, 255,0.55), inset 0 1px 0 rgba(255,255,255,0.3); }

.btn--ghost { background: rgba(255,255,255,0.04); border-color: var(--border-strong); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.09); border-color: rgba(157, 75, 255,0.5); }

/* ============ NAVBAR ============ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: hsla(250, 45%, 6%, 0.72); backdrop-filter: blur(22px) saturate(1.5); -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border-bottom: 1px solid var(--border); transition: transform 0.4s var(--ease);
}
#navbar.nav-hidden { transform: translateY(-100%); }
.nav-content { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem; }
.nav-logo { display: flex; align-items: center; }
.nav-logo__img { height: 38px; width: auto; filter: drop-shadow(0 0 14px rgba(157, 75, 255,0.5)); transition: transform 0.35s var(--ease); }
.nav-logo:hover .nav-logo__img { transform: scale(1.06); }
.nav-links { list-style: none; display: flex; gap: 1.7rem; margin-left: auto; }
.nav-links a { color: var(--text-dim); font-size: 0.9rem; font-weight: 500; position: relative; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--red-deep)); border-radius: 2px; transition: width 0.4s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 34px; height: 34px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: calc(var(--nav-h) + 3rem) 1.5rem 5rem; position: relative;
}
.hero__inner { max-width: 860px; width: 100%; margin: 0 auto; text-align: center; }
.hero__logo { margin: 0.5rem 0 1.75rem; }
.hero__logo-img {
    width: clamp(230px, 40vw, 460px); height: auto; margin: 0 auto; max-width: 100%;
    filter: drop-shadow(0 0 34px rgba(157, 75, 255,0.55)) drop-shadow(0 10px 30px rgba(0,0,0,0.55));
    animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__lead { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.hero__lead strong { color: #fff; }
.hero__headline {
    font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
    font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: 0.95; margin-bottom: 0.5rem;
}
.hero__tagline {
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.82rem;
    color: var(--text-mute); margin-bottom: 2.25rem;
}
.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.25rem; }
.hero__socials { display: flex; justify-content: center; gap: 1.4rem; }
.hero__socials a { font-size: 1.35rem; color: var(--text-dim); transition: color 0.3s, transform 0.3s; }
.hero__socials a:hover { color: #fff; transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(157, 75, 255,0.6)); }

.hero__scroll {
    position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.3em; color: var(--text-mute);
}
.hero__scroll i { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============ SECTION FRAME ============ */
.about, .ventures, .connect, .services, .contact {
    max-width: var(--max-w); margin: 0 auto; padding: 6.5rem 1.5rem;
}

/* ============ ABOUT ============ */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about__media { position: relative; display: flex; justify-content: center; }
.polaroid {
    position: relative; background: #f7f4ef; padding: 0.9rem 0.9rem 3.2rem; border-radius: 6px;
    box-shadow: var(--shadow-deep); transform: rotate(-4deg); transition: transform 0.5s var(--ease);
    max-width: 360px; width: 100%;
}
.polaroid:hover { transform: rotate(0) scale(1.02); }
.polaroid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; background: #14090f; }
.polaroid.is-empty img { display: none; }
.polaroid__fallback {
    display: none; width: 100%; aspect-ratio: 4/5; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 900; font-size: 8rem; color: var(--red);
    background: radial-gradient(circle at 40% 30%, rgba(157, 75, 255,0.35), transparent 60%), #14090f; border-radius: 3px;
}
.polaroid.is-empty .polaroid__fallback { display: flex; }
.polaroid figcaption { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: #1a1116; }
.about__badge {
    position: absolute; bottom: -0.5rem; right: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1rem; border-radius: 100px; background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; box-shadow: var(--shadow-red);
}
.about__name { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 8vw, 5rem); line-height: 0.9; letter-spacing: -0.04em; }
.about__role {
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.85rem;
    color: var(--red-bright); margin: 0.5rem 0 1.75rem;
}
.about__text { color: var(--text-dim); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1rem; }
.about__text strong { color: #fff; }
.about__pills { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0 2rem; }
.about__pills li {
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-dim);
    padding: 0.4rem 0.85rem; border: 1px solid var(--border); border-radius: 100px; background: rgba(255,255,255,0.02);
}
.about__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ============ VENTURES / PROYECTOS ============ */
.ventures__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.v-card {
    position: relative; display: flex; flex-direction: column; padding: 2.4rem 2.1rem; border-radius: 22px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.008));
    border: 1px solid var(--border); overflow: hidden; isolation: isolate; min-height: 240px;
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.v-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(157, 75, 255,0.16), transparent 45%); opacity: 0; transition: opacity 0.45s; }
.v-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease); }
.v-card:hover { transform: translateY(-8px); border-color: rgba(157, 75, 255,0.4); box-shadow: 0 30px 70px rgba(157, 75, 255,0.16), var(--shadow-deep); }
.v-card:hover::before { opacity: 1; }
.v-card:hover::after { transform: scaleX(1); }
.v-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.v-card__icon {
    display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 15px;
    background: linear-gradient(135deg, rgba(157, 75, 255,0.18), rgba(90, 23, 190,0.1)); border: 1px solid rgba(157, 75, 255,0.25);
    font-size: 1.45rem; color: var(--red); transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.v-card:hover .v-card__icon { transform: scale(1.08) rotate(-5deg); }
.v-card__index { font-family: var(--font-serif); font-style: italic; font-size: 2.5rem; color: hsla(0,0%,100%,0.14); transition: color 0.4s; }
.v-card:hover .v-card__index { color: hsla(0,0%,100%,0.3); }
.v-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -0.03em; margin-bottom: 0.3rem; }
.v-card__cat { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 0.9rem; }
.v-card__desc { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.v-card__more { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: #fff; }
.v-card__more i { color: var(--red); transition: transform 0.35s var(--ease); }
.v-card:hover .v-card__more i { transform: translateX(5px); }
.v-card--cta { background: linear-gradient(160deg, rgba(157, 75, 255,0.1), rgba(90, 23, 190,0.03)); border-color: rgba(157, 75, 255,0.24); }

/* ============ CONNECT / SOCIAL ============ */
.connect__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.s-card {
    position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 2.4rem 1.25rem; border-radius: 20px; overflow: hidden; isolation: isolate;
    background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.008)); border: 1px solid var(--border);
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.s-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(157, 75, 255,0.16), transparent 45%); opacity: 0; transition: opacity 0.45s; }
.s-card:hover { transform: translateY(-8px); border-color: rgba(157, 75, 255,0.4); box-shadow: 0 26px 60px rgba(157, 75, 255,0.16); }
.s-card:hover::before { opacity: 1; }
.s-card > i { font-size: 2rem; margin-bottom: 1rem; color: var(--text-dim); transition: color 0.4s, transform 0.4s; }
.s-card:hover > i { transform: scale(1.12); }
.s-card--ig:hover > i { color: #e4405f; }
.s-card--yt:hover > i { color: #ff0000; }
.s-card--tt:hover > i { color: #fff; }
.s-card--fb:hover > i { color: #1877f2; }
.s-card__count { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: -0.03em; line-height: 1; }
.s-card__name { font-weight: 600; font-size: 0.95rem; margin-top: 0.5rem; }
.s-card__handle { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); margin-top: 0.15rem; }

/* ============ SERVICES / PRICING ============ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.p-card {
    position: relative; display: flex; flex-direction: column; padding: 2.4rem 2rem; border-radius: 22px; overflow: hidden; isolation: isolate;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.006)); border: 1px solid var(--border);
    transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.p-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(500px circle at var(--mx,50%) var(--my,0%), rgba(157, 75, 255,0.12), transparent 45%); opacity: 0; transition: opacity 0.45s; }
.p-card:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow-deep); }
.p-card:hover::before { opacity: 1; }
.p-card--featured { background: linear-gradient(180deg, rgba(157, 75, 255,0.1), rgba(90, 23, 190,0.03)); border-color: rgba(157, 75, 255,0.4); box-shadow: 0 0 60px rgba(157, 75, 255,0.12); }
.p-card--featured:hover { transform: translateY(-14px); border-color: rgba(157, 75, 255,0.6); box-shadow: 0 24px 80px rgba(157, 75, 255,0.24); }
.p-card__badge { position: absolute; top: 1.1rem; right: 1.1rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 0.7rem; background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; border-radius: 100px; font-weight: 600; box-shadow: var(--shadow-red); }
.p-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.p-card__tier { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-bright); }
.p-card__index { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: hsla(0,0%,100%,0.16); }
.p-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 0.65rem; }
.p-card__desc { color: var(--text-dim); font-size: 0.92rem; line-height: 1.55; margin-bottom: 1.5rem; min-height: 2.9em; }
.p-card__price { display: flex; align-items: baseline; gap: 0.4rem; }
.p-card__from { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.p-card__amount { font-family: var(--font-display); font-weight: 900; font-size: 2.5rem; letter-spacing: -0.04em; line-height: 1; }
.p-card__cur { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-dim); }
.p-card__monthly { display: block; font-size: 0.8rem; color: var(--text-mute); font-style: italic; margin: 0.3rem 0 1.75rem; }
.p-card__features { list-style: none; margin-bottom: 2rem; flex: 1; }
.p-card__features li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-dim); line-height: 1.4; border-bottom: 1px dashed rgba(255,255,255,0.055); }
.p-card__features li:last-child { border-bottom: none; }
.p-card__features li i { color: var(--red); font-size: 0.72rem; margin-top: 0.32rem; flex-shrink: 0; }
.p-card__features li strong { color: #fff; }
.p-card__features li code { font-family: var(--font-mono); font-size: 0.82rem; color: var(--gold); background: rgba(41, 224, 239,0.1); padding: 0.05em 0.35em; border-radius: 4px; }

.services__diag {
    display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; margin-top: 3.5rem;
    padding: 2.75rem; border-radius: 26px; background: linear-gradient(135deg, rgba(41, 224, 239,0.07), rgba(157, 75, 255,0.04));
    border: 1px solid rgba(41, 224, 239,0.22); position: relative; overflow: hidden;
}
.services__diag::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(41, 224, 239,0.14), transparent 70%); pointer-events: none; }
.services__diag > div { position: relative; z-index: 1; }
.services__diag-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.services__diag p { color: var(--text-dim); max-width: 520px; }
.services__diag .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ============ CONTACT ============ */
.contact { text-align: center; }
.contact__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.contact__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.4rem, 7vw, 4.5rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact__sub { color: var(--text-dim); font-size: 1.06rem; max-width: 520px; margin: 0 auto 2.75rem; }
.contact__methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; width: 100%; margin-bottom: 2.75rem; }
.contact__method {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem; padding: 1.75rem 1rem; border-radius: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.contact__method:hover { transform: translateY(-5px); border-color: rgba(157, 75, 255,0.4); background: rgba(255,255,255,0.06); }
.contact__method > i { font-size: 1.5rem; color: var(--red); margin-bottom: 0.35rem; }
.contact__method-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }
.contact__method-value { font-weight: 600; font-size: 0.92rem; word-break: break-word; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 3.5rem 1.5rem 2.75rem; display: flex; flex-direction: column; align-items: center; gap: 1.35rem; position: relative; z-index: 1; }
.footer__logo img { height: 42px; filter: drop-shadow(0 0 14px rgba(157, 75, 255,0.45)); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all 0.35s; }
.footer__social a:hover { background: linear-gradient(135deg, rgba(157, 75, 255,0.3), rgba(90, 23, 190,0.25)); border-color: rgba(157, 75, 255,0.5); color: #fff; transform: translateY(-3px); }
.footer small { color: var(--text-mute); font-size: 0.76rem; font-family: var(--font-mono); text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
    .about { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .about__media { order: -1; }
    .about__badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -1.25rem; }
    .about__pills, .about__ctas { justify-content: center; }
    .about .kicker { padding-left: 0; }
    .about .kicker::before { display: none; }
    .ventures__grid { grid-template-columns: 1fr; }
    .connect__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: 1fr; }
    .p-card--featured { order: -1; }
    .services__diag { flex-direction: column; align-items: flex-start; text-align: left; }
    .services__diag .btn { width: 100%; }
}

@media (max-width: 640px) {
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; gap: 0;
        padding: 1rem 1.5rem 2rem; background: hsla(250, 45%, 6%,0.98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border); transform: translateY(-120%); opacity: 0; pointer-events: none;
        transition: all 0.35s var(--ease); margin-left: 0;
    }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links li { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .cursor-spotlight { display: none; }
    .about, .ventures, .connect, .services, .contact { padding: 4.5rem 1.25rem; }
    .connect__grid { grid-template-columns: 1fr; }
    .contact__methods { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; width: 100%; }
    .hero__ctas .btn { width: 100%; }
    .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero__headline { font-size: clamp(2rem, 10.5vw, 3rem); }
    .hero__lead { font-size: 0.98rem; }
    .kicker { letter-spacing: 0.18em; font-size: 0.62rem; }
    .hero__tagline { letter-spacing: 0.22em; font-size: 0.72rem; }
    .section-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .about__name, .contact__title { word-break: break-word; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; filter: none; }
}
