*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0d0d0d;
    --white: #fafafa;
    --pink: #ff2d7b;
    --pink-light: #ff5e9a;
    --pink-dark: #d41960;
    --navy: #1a1a2e;
    --gray: #666;
    --gray-light: #999;
    --gray-dark: #333;
    --card-bg: #ffffff;
    --card-border: #e5e5e5;
    --heading: 'RocknRoll One', 'Space Grotesk', sans-serif;
    --accent: 'Rock Salt', cursive;
    --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-light); }

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nav-logo img {
    height: 32px;
    width: auto;
}
.nav-logo span { color: var(--pink); }

/* LEOPARD PRINT PATTERN */
.leopard-accent {
    position: relative;
    overflow: hidden;
}
.leopard-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(ellipse 18px 14px at 20% 30%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 14px 10px at 55% 20%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 20px 16px at 80% 60%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 12px 16px at 35% 70%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 16px 12px at 70% 85%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 18px 14px at 10% 80%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 14px 18px at 90% 25%, var(--pink) 0%, transparent 70%),
        radial-gradient(ellipse 16px 12px at 45% 45%, var(--pink) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.leopard-accent > * { position: relative; z-index: 1; }

.leopard-divider {
    height: 4px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--pink) 0px, var(--pink) 8px,
            transparent 8px, transparent 14px,
            var(--pink-dark) 14px, var(--pink-dark) 20px,
            transparent 20px, transparent 28px
        );
    opacity: 0.3;
    border: none;
    max-width: 1000px;
    margin: 0 auto;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.hero h1 .highlight {
    color: var(--pink);
    font-style: italic;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-accent {
    font-family: var(--accent);
    font-size: 1rem;
    color: var(--pink);
    line-height: 2;
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--pink);
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}
.hero-cta:hover { background: var(--pink-light); color: var(--black); }

.hero-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--pink);
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.15);
}

/* STATS */
.stats-bar {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.stat-number {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.section-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.8;
}

/* PILLAR CARDS */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.pillar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--black);
    display: block;
}
.pillar:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
    color: var(--black);
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.1);
}
.pillar-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--pink);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pillar h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}
.pillar p {
    font-size: 0.92rem;
    color: var(--gray-light);
    line-height: 1.7;
}
.pillar-arrow {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--pink);
    font-size: 0.85rem;
    font-weight: 600;
}

/* SUB-PAGE HERO */
.page-hero {
    padding: 10rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}
.page-hero .highlight { color: var(--pink); }
.page-hero p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
}

/* DETAIL CARDS */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
}
.detail-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.detail-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* LIST STYLE */
.styled-list {
    list-style: none;
    margin-top: 1.5rem;
}
.styled-list li {
    font-size: 0.95rem;
    color: var(--gray-light);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.styled-list li:last-child { border: none; }
.styled-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ENGAGEMENT TIERS */
.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.tier {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s;
}
.tier:hover { border-color: var(--pink); }
.tier.recommended {
    border-color: var(--pink);
    position: relative;
}
.tier.recommended::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 12px;
    border-radius: 20px;
}
.tier h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.tier .tier-focus {
    font-size: 0.82rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.tier p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* GROWTH TRACKS */
.tracks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.track {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2.5rem 2rem;
}
.track:hover { border-color: var(--pink); }
.track h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.track .track-tag {
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.track p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* CONTACT */
.contact-section {
    text-align: center;
    padding: 6rem 2rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-section .section-text { margin: 0 auto; }
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--black);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}
.contact-link:hover { border-color: var(--pink); color: var(--pink); }
.contact-link svg { width: 16px; height: 16px; }

/* SUCCESS STORIES */
.stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.story {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
    transition: border-color 0.2s;
}
.story:hover { border-color: var(--pink); }
.story-tag {
    font-size: 0.7rem;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.story h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.story p {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* WRITING / POSTS */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.post-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
    transition: border-color 0.2s;
}
.post-card:hover { border-color: var(--pink); }
.post-tag {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.post-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.post-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* LOGO STRIP */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 0.5rem;
}
.logo-strip img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s;
}
.logo-strip img:hover {
    filter: grayscale(0%) opacity(1);
}

/* NEWSLETTER */
.newsletter-box {
    margin-top: 2rem;
    max-width: 500px;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.9rem;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--pink);
}
.newsletter-note {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
}

/* TRUST STRIPS */
.trust-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.trust-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.trust-names {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    align-items: center;
}
.trust-names span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.trust-names span.highlight-name {
    color: var(--pink);
}
.trust-divider {
    height: 1px;
    background: var(--card-border);
    margin: 2rem 0;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--gray);
    font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { padding: 1rem; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.75rem; }
    .pillars, .tiers, .posts-grid { grid-template-columns: 1fr; }
    .detail-grid, .tracks, .stories { grid-template-columns: 1fr; }
    .stats-bar { gap: 2rem; }
    section { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 250, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--card-border);
    }
    .nav-links.open { display: flex; }
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
}
