:root {
    --purple:       #8A63D2;
    --purple-hover: #A07AEB;
    --text-main:    #F4F4F5;
    --text-muted:   #A1A1AA;
    --bg-card:      rgba(20, 20, 30, 0.45);
    --font:         'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: #000;
    color: var(--text-main);
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── WebGL Canvas ─── */
#grainient-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ─── Navbar ─── */
.navbar-wrapper {
    position: fixed;
    top: 1.25rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
}

.navbar {
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 0.6rem 1.25rem 0.6rem 0.9rem;
    background: rgba(15, 10, 30, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    min-width: 460px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.logo-icon {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color .25s;
}
.nav-links a:hover { color: var(--text-main); }

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6rem 8% 3rem;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-photo-wrap {
    flex-shrink: 0;
    width: 320px;
    position: relative;
}

.hero-photo {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.1);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: .3px;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
    max-width: 820px;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2.2rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .85rem 2rem;
    background: var(--purple);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: background .3s, transform .25s;
}
.btn-primary:hover { background: var(--purple-hover); transform: translateY(-2px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: .85rem 2rem;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: background .3s, color .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--text-main); }

/* ─── Shared ─── */
.purple-highlight { color: var(--purple); }

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-hover);
    background: rgba(138,99,210,.1);
    border: 1px solid rgba(138,99,210,.25);
    border-radius: 999px;
    padding: .3rem .9rem;
    margin-bottom: 1.1rem;
}

.title-secondary {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: .6rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ─── Badge ─── */
.badge {
    display: inline-block;
    padding: .25rem .9rem;
    background: rgba(138,99,210,.12);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-hover);
    margin-bottom: 1rem;
}
.badge--featured { background: rgba(138,99,210,.25); color: #fff; }

/* ─── Pain Section ─── */
.pain-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 1.75rem 0;
}

.pain-item {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}
.pain-item--emphasis {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
}

.pain-block {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin: 1.5rem 0;
    text-align: left;
}

.pain-intro {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 300;
}

.pain-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pain-bullets li {
    color: var(--text-muted);
    padding-left: 1.3rem;
    position: relative;
    font-size: .92rem;
}
.pain-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--purple);
}

.pain-truth { margin-top: 1.75rem; }
.pain-truth p { color: var(--text-muted); margin-bottom: .4rem; }
.pain-quote {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-main) !important;
    font-weight: 500;
}

/* ─── Method Section ─── */
.method-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    text-align: center;
}

.method-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 820px;
    margin: 2rem auto;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
}
.pillar-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.pillar-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.pillar-card p  { color: var(--text-muted); font-size: .88rem; font-weight: 300; }

.method-cta { margin-top: .75rem; }

/* ─── About Section ─── */
.about-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    display: flex;
    justify-content: center;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05);
}

.about-photo-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(138,99,210,.85);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-hover);
    margin-bottom: .6rem;
}

.about-eyebrow {
    color: var(--text-muted);
    font-size: .92rem;
    margin-bottom: .75rem;
    font-weight: 300;
    font-style: italic;
}

.about-text {
    color: var(--text-muted);
    font-size: .94rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: .8rem;
}
.about-text--highlight {
    color: var(--text-main);
    font-weight: 400;
    margin-top: 1rem;
}

/* ─── Offers Section ─── */
.offers-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    text-align: center;
}

.grid-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: left;
}

.offer-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .875rem;
    transition: transform .3s, border-color .3s;
}
.offer-card:hover { transform: translateY(-5px); border-color: rgba(138,99,210,.3); }
.offer-card--featured {
    border-color: rgba(138,99,210,.3);
    background: rgba(138,99,210,.08);
}

.offer-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.offer-desc { color: var(--text-muted); font-size: .92rem; font-weight: 300; }

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1;
}
.offer-list li {
    color: var(--text-muted);
    font-size: .88rem;
    padding-left: 1.3rem;
    position: relative;
}
.offer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-size: .78rem;
}

.offer-note {
    color: var(--text-muted);
    font-size: .83rem;
    font-style: italic;
    line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: .875rem;
}

.offer-btn { width: 100%; justify-content: center; margin-top: .25rem; }

/* ─── For Who Section ─── */
.forwho-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    text-align: center;
}

.forwho-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 580px;
    margin: 2rem auto 1.5rem;
    text-align: left;
}

.forwho-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: .95rem;
    color: var(--text-main);
    font-weight: 400;
}

.check {
    color: var(--purple-hover);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.forwho-close {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: .5rem;
}
.forwho-close strong { color: var(--text-main); }

/* ─── Contact Section ─── */
.contact-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5%;
    display: flex;
    justify-content: center;
}

.contact-inner {
    max-width: 540px;
    width: 100%;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-form input,
.contact-form select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: .9rem 1.1rem;
    color: var(--text-main);
    font-family: var(--font);
    font-size: .92rem;
    outline: none;
    transition: border-color .25s;
}
.contact-form input::placeholder { color: var(--text-muted); }
.contact-form select { color: var(--text-muted); cursor: pointer; }
.contact-form select option { background: #111; color: var(--text-main); }
.contact-form input:focus,
.contact-form select:focus { border-color: var(--purple); }

.btn-form { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* ─── Closing Section ─── */
.closing-section {
    position: relative;
    z-index: 10;
    padding: 4.5rem 5% 3rem;
    text-align: center;
}

.closing-inner {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

.closing-line {
    color: var(--text-muted);
    font-size: .95rem;
    font-weight: 300;
}

.closing-bullets {
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 300;
}

.closing-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: .25rem 0;
}

.closing-sub {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: .25rem;
}

/* ─── Sticky Banner ─── */
.sticky-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(10, 8, 20, 0.88);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    z-index: 200;
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.sticky-banner.show { transform: translateY(0); }
.banner-text { font-size: .95rem; color: var(--text-muted); font-weight: 400; }
.banner-text .purple-highlight { color: var(--text-main); font-weight: 600; }

/* ─── Footer ─── */
.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.75rem 2rem 7rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: .82rem;
}

/* ─── Scroll Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Services (legacy) ─── */
.services {
    position: relative;
    z-index: 10;
    padding: 4rem 5% 8rem;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform .3s, border-color .3s;
}
.glass-card:hover { transform: translateY(-5px); border-color: rgba(138,99,210,.35); }
.glass-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .7rem; }
.glass-card p  { color: var(--text-muted); font-size: .92rem; line-height: 1.65; font-weight: 300; }

/* ─── Mobile ─── */
@media (max-width: 640px) {
    .navbar { min-width: unset; gap: 1.25rem; padding: .55rem .9rem; }
    .nav-links { display: none; }
    .hero { flex-direction: column; padding: 6rem 5% 2.5rem; gap: 2rem; }
    .hero-text { align-items: center; text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-photo-wrap { width: 100%; max-width: 280px; }
    .hero-title { max-width: 100%; }
    .about-split { grid-template-columns: 1fr; gap: 1.75rem; }
    .about-photo { max-width: 100%; }
    .grid-offers { grid-template-columns: 1fr; }
    .sticky-banner { flex-direction: column; gap: .75rem; text-align: center; }
}
