@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --ink: #f4f1e8;
    --ink-deep: #14100c;
    --muted: #97a39c;
    --paper: #141a17;
    --cream: #f4f1e8;
    --line: rgba(244, 241, 232, .12);
    --coral: #ff7a52;
    --coral-dark: #ff9d7c;
    --mint: #1d2b23;
    --yellow: #f5ca62;
    --neon: #39ff88;
    --neon-soft: rgba(57, 255, 136, .35);
    --neon-line: rgba(57, 255, 136, .3);
    --sky: #5ab4ff;
    --serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #0a0f0c;
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    pointer-events: none;
}
body::before {
    top: -140px;
    left: -140px;
    background: radial-gradient(circle, rgba(57, 255, 136, .16), transparent 70%);
}
body::after {
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, rgba(57, 255, 136, .1), transparent 70%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: 100%; max-width: 1440px; margin: auto; padding: 0 5vw; padding-left: max(5vw, 200px); }

.wordmark {
    position: fixed;
    top: 24px;
    left: 28px;
    z-index: 20;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .08em;
}
.wordmark span { color: var(--coral); }
nav {
    position: fixed;
    z-index: 15;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: .82rem;
    color: var(--muted);
}
nav a { padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
nav a:hover { background: var(--neon); color: var(--ink-deep); border-color: var(--neon); box-shadow: 0 0 18px 3px var(--neon-soft); }
nav a.active { color: var(--neon); border-color: var(--neon-line); background: rgba(57, 255, 136, .08); }
.nav-cta {
    position: fixed;
    top: 20px;
    right: 28px;
    z-index: 20;
    border: 1px solid var(--neon-line);
    border-radius: 999px;
    padding: 9px 17px;
    color: var(--ink);
    font-weight: 500;
    font-size: .82rem;
    box-shadow: 0 0 12px 1px rgba(57, 255, 136, .18);
    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { background: var(--neon); color: var(--ink-deep); border-color: var(--neon); box-shadow: 0 0 22px 4px var(--neon-soft); }
.menu { display: none; position: fixed; top: 18px; right: 24px; z-index: 20; border: 0; background: transparent; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
    gap: 6vw;
    align-items: center;
    padding: 72px 0 90px;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero > div { position: relative; z-index: 1; }
.hero > div:first-child { padding-left: 4vw; min-width: 0; }
.eyebrow, .kicker {
    color: var(--coral-dark);
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
h1 {
    max-width: 100%;
    margin: 18px 0 25px;
    font-size: clamp(2.5rem, 4.5vw, 5.1rem);
    line-height: .91;
    letter-spacing: -.07em;
    font-weight: 600;
    white-space: nowrap;
}
.profile-photo {
    width: 112px;
    height: 112px;
    display: block;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 20px;
    border: 3px solid var(--ink);
    border-radius: 50%;
}
h1 em {
    color: var(--neon);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.08em;
    animation: neon-pulse 3.2s ease-in-out infinite;
}
.intro { max-width: 560px; margin: 0 0 32px; color: var(--muted); font-size: 1.05rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 19px;
    background: var(--cream);
    color: var(--ink-deep);
    font-size: .87rem;
    box-shadow: 0 0 0 1px rgba(57, 255, 136, .2), 0 0 16px 1px rgba(57, 255, 136, .16);
    transition: background .22s ease, box-shadow .22s ease, transform .18s ease, color .22s ease;
}
.button:hover {
    background: var(--neon);
    color: var(--ink-deep);
    box-shadow: 0 0 0 1px var(--neon), 0 0 26px 5px var(--neon-soft);
    transform: translateY(-2px);
}
.button.alt {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    box-shadow: none;
    transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .18s ease;
}
.button.alt:hover {
    background: var(--neon);
    border-color: var(--neon);
    color: var(--ink-deep);
    box-shadow: 0 0 0 1px var(--neon), 0 0 26px 5px var(--neon-soft);
    transform: translateY(-2px);
}

.hero-facts { max-width: 100%; margin-left: auto; width: 100%; border-top: 1px solid var(--ink); }
.hero-fact { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.hero-fact span { color: var(--muted); font-family: 'DM Mono', monospace; font-size: .75rem; }
.hero-fact strong { font-size: 1.05rem; font-weight: 500; }
.hero-fact:nth-child(3) strong { color: var(--neon); text-shadow: 0 0 6px rgba(57, 255, 136, .35); }

section { padding: 100px 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }
h2 { margin: 8px 0 0; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: .95; letter-spacing: -.06em; font-weight: 600; }
.section-note { max-width: 285px; color: var(--muted); font-size: .9rem; }

.page-intro { max-width: 720px; font-size: 1.15rem; line-height: 1.5; color: var(--muted); margin-top: 10px; }

.about-grid { display: block; }
.about-copy { font-size: 1.45rem; line-height: 1.28; max-width: 900px; }
.about-copy mark { background: transparent; color: inherit; padding: 0; }
.skills-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.skill-chip { display: inline-flex; align-items: center; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-family: 'DM Mono', monospace; font-size: .72rem; letter-spacing: .04em; color: var(--muted); transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.skill-chip:hover { background: var(--neon); border-color: var(--neon); color: var(--ink-deep); box-shadow: 0 0 16px 2px var(--neon-soft); }

.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.explore-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--card-accent, var(--line));
    background: transparent;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .22s ease;
}
.explore-card:hover {
    background: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 0 1px var(--neon), 0 0 30px 6px var(--neon-soft);
    transform: translateY(-4px);
}
.explore-grid .explore-card:nth-child(1) { --card-accent: var(--coral); }
.explore-grid .explore-card:nth-child(2) { --card-accent: var(--yellow); }
.explore-grid .explore-card:nth-child(3) { --card-accent: var(--sky); }
.explore-grid .explore-card:nth-child(4) { --card-accent: var(--neon); }
.explore-number { color: var(--card-accent, var(--coral-dark)); font-family: 'DM Mono', monospace; font-size: .7rem; transition: color .2s ease; }
.explore-card h3 { font-size: 1.2rem; margin-top: 14px; transition: color .2s ease; }
.explore-card p { margin: 8px 0 0; color: var(--muted); font-size: .85rem; transition: color .2s ease; }
.explore-card .explore-arrow { align-self: flex-end; margin-top: 14px; color: var(--neon); font-size: 1.1rem; transition: transform .2s ease, color .2s ease; }
.explore-card:hover .explore-arrow { transform: translate(3px, -3px); }
.explore-card:hover .explore-number,
.explore-card:hover h3,
.explore-card:hover p,
.explore-card:hover .explore-arrow { color: var(--ink-deep); }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.principle-card { padding: 26px 22px; border: 1px solid var(--line); border-radius: 4px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.principle-card:hover { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 0 28px 4px var(--neon-soft); }
.principle-number { color: var(--coral-dark); font-family: 'DM Mono', monospace; font-size: .7rem; display: block; margin-bottom: 12px; transition: color .2s ease; }
.principle-card h3 { font-size: 1.05rem; margin-bottom: 8px; transition: color .2s ease; }
.principle-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; transition: color .2s ease; }
.principle-card:hover .principle-number,
.principle-card:hover h3,
.principle-card:hover p { color: var(--ink-deep); }

.venture-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.venture-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.venture-link:hover { background: var(--neon); border-color: var(--neon); color: var(--ink-deep); box-shadow: 0 0 16px 2px var(--neon-soft); }

h3 { margin: 0; font-size: 1.28rem; font-weight: 600; }

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.social-card { min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.social-card:hover { transform: translateY(-6px); border-color: var(--neon); background: var(--neon); box-shadow: 0 18px 40px rgba(0, 0, 0, .35), 0 0 30px 6px var(--neon-soft); }
.social-logo { width: 68px; height: 68px; display: grid; place-items: center; color: var(--cream); background: var(--ink); border-radius: 50%; box-shadow: 0 0 0 1px rgba(57, 255, 136, .18), 0 0 20px 2px rgba(57, 255, 136, .14); transition: box-shadow .25s ease, transform .25s ease; }
.social-logo svg { width: 34px; height: 34px; fill: currentColor; }
.social-card:hover .social-logo { box-shadow: 0 0 0 3px var(--ink-deep), 0 0 0 4px var(--neon); transform: scale(1.06); }
.social-card .social-name span { transition: color .22s ease; }
.social-card:hover .social-name span { color: var(--ink-deep); }
#socials .social-card:nth-child(1) .social-logo { background: #1877f2; }
#socials .social-card:nth-child(2) .social-logo { background: #010101; }
#socials .social-card:nth-child(3) .social-logo { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
#socials .social-card:nth-child(4) .social-logo { background: #25d366; }
.social-name { display: flex; justify-content: space-between; align-items: end; gap: 12px; font-size: .95rem; font-weight: 600; }
.social-name small { display: none; }
.connect-note { max-width: 640px; margin-top: 40px; color: var(--muted); font-size: .95rem; border-top: 1px solid var(--line); padding-top: 30px; }

.business-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.business {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
    padding: 30px 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.business:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0, 0, 0, .4), 0 0 24px 2px rgba(57, 255, 136, .22); border-color: var(--neon-line); }
.business-number { order: -2; color: var(--coral-dark); font-family: 'DM Mono', monospace; font-size: .7rem; }
.business h3 { font-size: 1.3rem; margin-top: 16px; }
.business p { min-width: 0; margin: 8px 0 16px; color: var(--muted); font-size: .88rem; }
.business-logo { order: -1; width: 74px; height: 74px; object-fit: cover; background: rgba(255,255,255,.92); border-radius: 50%; margin-top: 6px; box-shadow: 0 0 0 1px rgba(57, 255, 136, .2), 0 0 18px 2px rgba(57, 255, 136, .16); }
.business-links { order: 1; margin-top: auto; min-width: 0; display: flex; justify-content: flex-start; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-family: 'DM Mono', monospace; font-size: .68rem; }
.business-links a { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; padding: 9px 14px; border: 1px solid rgba(57, 255, 136, .16); border-radius: 999px; overflow-wrap: anywhere; box-shadow: 0 0 0 rgba(57, 255, 136, 0); transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease; }
.business-links a:hover { color: var(--ink-deep); border-color: var(--neon); background: var(--neon); box-shadow: 0 0 16px 1px rgba(57, 255, 136, .35); }
.business-links svg { width: 20px; height: 20px; fill: currentColor; }
.business .business-links { color: #fff; }
.business .business-links a { color: inherit; border-color: rgba(57, 255, 136, .22); }
.site-link { color: var(--coral-dark); }
.business:nth-child(1) { background: #4b2a1c; color: #fbfaf5; }
.business:nth-child(2) { background: #d9bd55; }
.business:nth-child(3) { background: #1f472b; color: #fbfaf5; }
.business:nth-child(1) .business-number, .business:nth-child(1) .site-link { color: #f0c59d; }
.business:nth-child(2) .business-number { color: #725b00; }
.business:nth-child(3) .business-number { color: #b8d9a8; }
.business-terma { background: #4b2a1c; color: #fbfaf5; }
.business-cheap { background: #d9bd55; }
.business-make { background: #1f472b; color: #fbfaf5; }
.business-terma .business-number, .business-terma .site-link { color: #f0c59d; }
.business-cheap .business-number { color: #725b00; }
.business-make .business-number { color: #b8d9a8; }
.business-terma .business-links a, .business-make .business-links a { border-color: rgba(251,250,245,.35); color: #fbfaf5; }
.work-cta { margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--line); }
.work-cta p { max-width: 480px; color: var(--muted); margin-bottom: 22px; }

.say-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 6vw; align-items: center; }
.contact-title { max-width: 100%; margin: 18px 0 22px; font-size: clamp(2.4rem, 5.5vw, 5.2rem); line-height: .95; letter-spacing: -.06em; }
.contact-title em { font-family: var(--serif); color: var(--neon); font-weight: 400; }
.contact-note { max-width: 480px; color: var(--muted); font-size: 1.05rem; }

.status-card { border: 1px solid var(--line); border-radius: 22px; padding: 28px; background: var(--paper); }
.status-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px 2px rgba(57, 255, 136, .6); animation: status-pulse 1.8s ease-in-out infinite; }
.status-row span { font-family: 'DM Mono', monospace; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.status-facts { display: grid; gap: 16px; }
.status-fact { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.status-fact:last-child { border-bottom: none; padding-bottom: 0; }
.status-fact span:first-child { color: var(--muted); }
@keyframes status-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
.contact-method { display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.contact-method:hover { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 0 34px 6px var(--neon-soft); transform: translateY(-5px); }
.contact-method-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--ink-deep); }
.contact-method-icon svg { width: 26px; height: 26px; fill: currentColor; }
.contact-method h3 { font-size: 1.3rem; margin-top: 22px; transition: color .2s ease; }
.contact-method p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; transition: color .2s ease; }
.contact-method .method-arrow { align-self: flex-end; font-size: 1.2rem; color: var(--neon); transition: color .2s ease, transform .2s ease; }
.contact-method:hover h3, .contact-method:hover p, .contact-method:hover .method-arrow { color: var(--ink-deep); }
.contact-method:hover .method-arrow { transform: translate(3px, -3px); }

.faq-list { margin-top: 70px; border-top: 1px solid var(--line); padding-top: 50px; }
.faq-item { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.08rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

footer { padding: 46px 0 35px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); font-family: 'DM Mono', monospace; font-size: .72rem; color: var(--muted); }
.socials { display: flex; gap: 20px; }
.socials a:hover { color: var(--neon); }

@keyframes neon-pulse {
    0%, 100% { text-shadow: 0 0 8px rgba(57, 255, 136, .55), 0 0 18px rgba(57, 255, 136, .3); }
    50% { text-shadow: 0 0 14px rgba(57, 255, 136, .85), 0 0 30px rgba(57, 255, 136, .5); }
}

@media (max-width: 720px) {
    .shell { padding: 0 6vw; }
    .say-hero { grid-template-columns: 1fr; gap: 32px; }
    .contact-methods { grid-template-columns: 1fr; margin-top: 40px; }
    .faq-list { margin-top: 46px; padding-top: 36px; }
    .faq-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .wordmark { top: 20px; left: 24px; }
    .nav-wrap { display: none; position: fixed; z-index: 18; top: 62px; left: 0; right: 0; padding: 22px 6vw 26px; background: #101512; border-bottom: 1px solid var(--line); }
    .nav-wrap.open { display: block; }
    nav { position: static; transform: none; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
    nav a { padding: 12px 4px; border-radius: 0; }
    .nav-cta { display: block; position: static; margin-top: 14px; text-align: center; }
    .menu { display: block; }
    .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; padding: 48px 0 62px; gap: 42px; }
    .hero > div:first-child { padding-left: 0; }
    .profile-photo { width: 92px; height: 92px; margin-bottom: 16px; }
    h1 { font-size: clamp(2rem, 11vw, 4.5rem); margin: 12px 0 20px; }
    .intro { max-width: 100%; font-size: .98rem; margin-bottom: 24px; }
    .actions { gap: 10px; }
    .button { padding: 12px 14px; font-size: .78rem; }
    .hero-facts { margin-top: 0; max-width: 100%; }
    .hero-fact { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; padding: 16px 0; }
    .hero-fact strong { font-size: .95rem; }
    section { padding: 62px 0; }
    .section-head, .about-grid { display: block; }
    .section-note { margin-top: 22px; }
    .facts { margin-top: 38px; }
    h2 { font-size: clamp(2rem, 11vw, 3.5rem); }
    .about-copy { font-size: 1.18rem; }
    .explore-grid { grid-template-columns: 1fr; gap: 14px; }
    .principles-grid { grid-template-columns: 1fr; gap: 14px; }
    .social-grid { grid-template-columns: 1fr; gap: 20px; }
    .social-card { min-height: 148px; padding: 18px; }
    .business-list { grid-template-columns: 1fr; gap: 18px; }
    .business { width: 100%; min-height: 0; padding: 24px 20px; }
    .business h3 { font-size: 1.2rem; }
    .business-logo { width: 80px; height: 80px; }
    .business-links { justify-content: flex-start; gap: 7px; font-size: .6rem; }
    .business-links a { padding: 6px 7px; }
    .business-links svg { width: 13px; height: 13px; }
    .contact-title { font-size: clamp(1.8rem, 9vw, 3.4rem); margin-bottom: 20px; white-space: normal; }
    .contact-actions { flex-direction: column; align-items: stretch; }
    .footer-row { align-items: start; flex-direction: column; }
}