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

:root {
    --blue:        #4b20d9;
    --blue-light:  #0095ff;
    --blue-dim:    #3542e4;
    --blue-glow:   rgba(107, 127, 219, 0.25);
    --blue-subtle: rgba(107, 127, 219, 0.10);

    /* --bg:          #0a0b10; */
    --bg:          #030405;
    /* --bg-1:        #0e1018; */
    --bg-1:        #030405;
    --bg-2:        #12141f;
    /* --bg-card:     #151722; */
    --bg-card:     #0b0c11;
    /* --bg-card-2:   #1a1d2e; */
    --bg-card-2:   #141624;

    --accent: var(--blue);

    --border:      rgba(107, 127, 219, 0.18);
    --border-dim:  rgba(255,255,255,0.07);

    --white:       #ffffff;
    --text:        rgba(255,255,255,0.88);
    --text-dim:    rgba(255,255,255,0.50);
    --text-mute:   rgba(255,255,255,0.28);

    --radius-sm:   8px;
    --radius:      14px;
    --radius-lg:   20px;
    --radius-xl:   28px;

    --font: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="creators"] {
  --accent: var(--blue-light);
  --accent-light: var(--white);
  --accent-mid: var(--text);
}

[data-theme="brands"] {
  --accent: var(--blue);
  --accent-light: var(--white);
  --accent-mid: var(--text);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── GRAIN ── */
body::after {
    content: '';
    position: fixed; inset: 0;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); */
    pointer-events: none;
    z-index: 9999;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: var(--bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dim);
}

.nav-logo {
    font-size: 18px; font-weight: 800; letter-spacing: -0.3px;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-desktop {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dim));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900; color: white; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 4px; }

/* Dropdown nav items */
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 20px; font-weight: 500; color: var(--text-dim);
    text-decoration: none; cursor: pointer; background: none; border: none;
    font-family: var(--font);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.5; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); opacity: 1; }
.nav-link.active { color: var(--blue-light); }

.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 125px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.dropdown a {
    display: block; padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 400; color: var(--text-dim);
    text-decoration: none; transition: color 0.15s, background 0.15s;
}
.dropdown a:hover { color: var(--white); background: rgba(107,127,219,0.12); }
.dropdown-label {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-mute);
    padding: 8px 14px 4px;
}
.dropdown-divider { height: 1px; background: var(--border-dim); margin: 6px 0; }

.nav-cta {
    margin-left: 8px; padding: 9px 20px;
    background: var(--blue); color: var(--white);
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 20px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(107,127,219,0.35);
}
.nav-cta:hover {
    background: var(--blue-light); transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(107,127,219,0.5);
}

.logo-mobile  { display: none; }
.logo-desktop { display: block; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    background: none;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--border); }

.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--white); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--white); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 11, 16, 0.98);
    border-bottom: 1px solid var(--border-dim);
    padding: 16px;
    z-index: 99;
    backdrop-filter: blur(20px);
    animation: slideDown 0.25s var(--ease) both;
}
.mobile-menu.open { display: block; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE LINKS ── */
.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 13px 12px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    background: none;
    border: none;
    font-family: var(--font);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-align: left;
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }

.mobile-nav-link svg {
    width: 11px;
    height: 11px;
    opacity: 0.4;
    transition: transform 0.25s;
}
.mobile-section.open .mobile-nav-link svg { transform: rotate(180deg); opacity: 0.8; }

/* ── MOBILE DROPDOWNS ── */
.mobile-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
    padding-left: 12px;
}
.mobile-section.open .mobile-sub { max-height: 200px; }

.mobile-sub a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-mute);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    border-left: 1px solid var(--border-dim);
    margin-bottom: 2px;
}
.mobile-sub a:hover {
    color: var(--blue-light);
    background: rgba(107, 127, 219, 0.07);
    border-left-color: var(--blue);
}

/* ── DIVIDER + CTA ── */
.mobile-divider { height: 1px; background: var(--border-dim); margin: 8px 0; }

.mobile-cta {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}
.mobile-cta:hover { background: var(--blue-light); }


/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: visible;
}
.hero-home {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between; /* key */
    padding: 120px 80px;
    position: relative;
    overflow: visible;
    text-align: left; /* shift text left */
    z-index: 1;

}
.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}
/* Background gradient orbs */
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(120px); pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,149,255, 0.18) 70%, transparent 70%);
    top: -100px; left: 50%; transform: translateX(-50%);
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(75,32,217,0.10) 70%, transparent 70%);
    bottom: 0; right: -100px;
}

/* ── BACKGROUND ORBS ── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,149,255, 0.18) 0%, transparent 70%);
    top: 10%; left: -100px;
}
.bg-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(75,32,217,0.10) 0%, transparent 70%);
    top: 40%; right: -80px;
}
.bg-orb-3 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,149,255, 0.18) 0%, transparent 70%);
    top: 70%; left: 20%;
}
.bg-orb-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(75,32,217,0.10) 0%, transparent 70%);
    bottom: 5%; right: 10%;
}

.launch-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: rgba(107,127,219,0.12);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 16px; font-weight: 600; letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 32px;
    animation: fadeUp 0.6s var(--ease) both;
}
.launch-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline {
    font-size: clamp(38px, 6vw, 80px);
    font-weight: 800; letter-spacing: -2px; line-height: 1.08;
    color: var(--white);
    max-width: 820px;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.08s var(--ease) both;
}
.hero-headline span {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 60%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 24px; font-weight: 300; line-height: 1.7;
    color: var(--text-dim); max-width: 800px; margin: 0 0 48px;
    animation: fadeUp 0.7s 0.16s var(--ease) both;
}

.hero-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.24s var(--ease) both;
}

.hero-bottom-desc {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 480px;
  width: 100%;
  margin: 0;
  animation: fadeUp 0.7s 0.24s var(--ease) both;
}

.waitlist-input {
    flex: 1;
    height: clamp(44px, 5vw, 56px);
    padding: 0 clamp(14px, 2vw, 20px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-input::placeholder { color: var(--text-mute); }
.waitlist-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(107,127,219,0.12);
}

.waitlist-btn {
    height: clamp(44px, 5vw, 56px);
    padding: 0 clamp(16px, 2.5vw, 28px);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dim) 100%);
    color: white; border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font);
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 700;
    cursor: pointer; white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: filter 0.2s, transform 0.15s;
}
.waitlist-btn:hover { filter: brightness(1.12); transform: translateX(1px); }

.waitlist-note {
    font-size: 12px; color: var(--text-mute); margin-top: 14px;
    animation: fadeUp 0.7s 0.30s var(--ease) both;
}

.role-toggle {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 14px;
  animation: fadeUp 0.7s 0.20s var(--ease) both;
}

.role-pill {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

#creator-role {
  color: var(--blue-light);
}

#creator-role:hover {
  border-color: var(--blue-light);  
}

#brand-role {
  color: var(--blue);
}

#brand-role:hover {
  border-color: var(--blue);
}

#creator-role.active {
  border-color: var(--blue-light);
}

#brand-role.active {
  border-color: var(--blue);
}

.role-pill:hover {
  color: var(--white);
}

.role-pill.active {
  background: var(--blue-subtle);
  border-color: var(--blue);
  color: var(--blue-light);
}

.waitlist-row {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Hero logo mark right side (decorative) */
.hero-logo-right {
    margin-left: 60px;
    pointer-events: none;
    z-index: 0;
    flex-shrink: 0;
}

.hero-logo-right svg { width: 300px; height: 300px; }

/* Success state */
.waitlist-success {
    display: none; flex-direction: column; align-items: center; gap: 8px;
    animation: fadeUp 0.4s var(--ease) both;
}
.waitlist-success.show { display: flex; }
.waitlist-success-icon { font-size: 36px; }
.waitlist-success h3 { font-size: 18px; font-weight: 700; color: var(--blue-light); }
.waitlist-success p { font-size: 14px; color: var(--text-dim); }

/* About Header */
.about-head-section {
    position: relative;
    z-index: 0;
    padding: 80px 24px;
    padding-top: calc(68px + 80px);
    text-align: center;
    background: var(--bg-1);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    overflow: hidden;
    isolation: isolate;
}

.about-head-section .hero-orb {
    position: absolute;
    z-index: 0;
}

.about-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800; letter-spacing: -1.5px;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

/* ── ROTATING TEXT SECTION ── */
.rotate-section {
    padding: 40px 24px;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.rotate-headline {
    font-size: clamp(36px, 5vw, 100px);
    font-weight: 800; letter-spacing: 0px;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
}

.rotate-word-wrap {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: visible;
    vertical-align: middle;
    transition: width 0.3s var(--ease);
}

.rotate-word {
    white-space: nowrap;
    position: absolute; top: 0; left: 50%; width: auto;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translate(-50%, 1em);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    text-align: center;
    font-variant-ligatures: none;
    letter-spacing: 0px;
}
.rotate-word.active {
    opacity: 1; transform: translate(-50%, 0);
        overflow: visible;
}
.rotate-word.exit {
    opacity: 0; transform: translate(-50%, -1em);
}


    .btn-primary {
      padding: 14px 32px; border-radius: var(--radius-sm);
      background: var(--blue); color: var(--white);
      font-family: var(--font); font-size: 15px; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(107,127,219,0.35);
    }
    .btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,127,219,0.5); }
    .btn-services-creators {
      padding: 14px 32px; border-radius: var(--radius-sm);
      background: var(--blue); color: var(--white);
      font-family: var(--font); font-size: 15px; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px var(--blue);
    }
    .btn-services-creators:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px var(--blue-light); }
    .btn-services-brands {
      padding: 14px 32px; border-radius: var(--radius-sm);
      background: var(--blue-light); color: var(--white);
      font-family: var(--font); font-size: 15px; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px var(--blue-light);
    }
    .btn-services-brands:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 28px var(--blue); }
    .btn-ghost {
      padding: 14px 32px; border-radius: var(--radius-sm);
      background: transparent; color: var(--text-dim);
      font-family: var(--font); font-size: 15px; font-weight: 500;
      text-decoration: none; border: 1px solid var(--border);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { color: var(--white); border-color: rgba(107,127,219,0.4); background: rgba(107,127,219,0.08); box-shadow: 0 8px 28px rgba(107,127,219,0.08); }

    /* ── SWITCHER BANNER ── */
    .switcher {
      background: var(--bg-1);
      /* border-top: 1px solid var(--border-dim);
      border-bottom: 1px solid var(--border-dim); */
      padding: 20px 48px;
      display: flex; align-items: center; justify-content: center; gap: 12px;
    }
    .switcher-label { font-size: 20px; color: var(--text-mute); }
    .switcher-pills { display: flex; gap: 4px; padding: 4px; background: var(--bg-2); border-radius: var(--radius-sm); border: 1px solid var(--border-dim); }
    .switcher-pill {
      padding: 8px 22px; border-radius: 6px; border: none; cursor: pointer;
      font-family: var(--font); font-size: 20px; font-weight: 600;
      transition: all 0.2s var(--ease); color: var(--text-mute); background: transparent;
    }
    .switcher-pill.active { background: var(--blue); color: var(--white); box-shadow: 0 2px 10px rgba(107,127,219,0.4); }
    .switcher-pill:not(.active):hover { color: var(--text); background: rgba(255,255,255,0.04); }

    .switcher-pill[data-theme="creators"].active {
        background: var(--blue-light);
        border-color: var(--blue-light);
    }

    .switcher-pill[data-theme="brands"].active {
        background: var(--blue);
        border-color: var(--blue);
    }

    /* ── SECTIONS ── */
    .section-wrap {
      padding: 50px 48px;
      background: var(--bg);
    }
    .section-wrap.alt { background: var(--bg-1); }

    .section-inner { max-width: 1500px; margin: 0 auto; }

    .section-label {
      font-size: 20px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
      text-align: center;
      justify-content: center;
    }
    .section-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--accent); }

    .section-desc {
      font-size: 20px; font-weight: 300; line-height: 1.75;
      color: var(--text-dim);
    }
    .section-header { margin-bottom: 64px; text-align: center; justify-content: center;}

/* Scramble effect overlay */
.rotate-word.scramble { font-family: monospace; }


    /* ── COMPARISON TABLE ── */
    .table-wrap { background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); overflow: hidden; }
    table { width: 100%; border-collapse: collapse; }
    thead { background: var(--bg-card-2); border-bottom: 1px solid var(--border); }
    thead th { padding: 18px 24px; text-align: left; font-size: 13px; font-weight: 700; color: var(--text); }
    thead th:not(:first-child) { text-align: center; color: var(--blue-light); }
    tbody tr { border-bottom: 1px solid var(--border-dim); }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: rgba(107,127,219,0.04); }
    tbody td { padding: 14px 24px; font-size: 13px; color: var(--text-dim); }
    tbody td:not(:first-child) { text-align: center; }
    .check-y { color: var(--blue-light); font-weight: 900; }
    .check-n { color: var(--text-mute); }
    .highlight-col { color: var(--text); font-weight: 600; }

 /* ── MANAGED SERVICES CARDS ── */
    .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius-lg); overflow: visible; }
    .service-card { background: var(--bg-card); padding: 48px; position: relative; transition: background 0.3s; overflow: hidden; border-radius: var(--radius-lg); }
    .service-card:hover { background: var(--bg-card-2); box-shadow: 0 24px 60px var(--accent), 0 0 0 1px var(--border); z-index: 2; }
    .service-card:hover .service-list {
        max-height: 300px; /* tall enough to fit your longest list */
        opacity: 1;
        margin-top: 16px; /* spacing only appears when list does */
        margin-bottom: 16px;
    }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); transition: height 0.3s var(--ease); }
    .service-card:hover::before { height: 100px; }
    .service-card:nth-child(7) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    .service-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(107,127,219,0.12); color: var(--accent); border: 1px solid var(--border); margin-bottom: 20px; }
    .service-title { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--white); margin-bottom: 12px; }
    .service-desc { font-size: 20px; font-weight: 300; line-height: 1.75; color: var(--text-dim); margin-bottom: 24px; }
    .service-list { 
        list-style: none; 
        display: flex; 
        flex-direction: column; 
        gap: 8px; 
        margin-bottom: 32px; 
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
        opacity: 0;
        margin: 0;
        padding: 0;
    }
    .service-list li { 
        display: flex; 
        align-items: flex-start; 
        gap: 10px; 
        font-size: 18px; 
        color: var(--text-dim); 
        line-height: 1.5; 
        padding: 4px 0;
    }
    .service-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
    .service-cta {
      display: inline-block; padding: 10px 24px; border-radius: var(--radius-sm);
      background: transparent; border: 1px solid var(--border); color: var(--text-dim);
      font-family: var(--font); font-size: 18px; font-weight: 600;
      text-decoration: none; transition: all 0.2s var(--ease); cursor: pointer;
    }
    .service-cta:hover { color: var(--white); border-color: var(--blue); background: rgba(107,127,219,0.08); }

/* White label full-width card */
    .service-card-full { background: var(--bg-card); padding: 48px; position: relative; transition: background 0.3s; overflow: hidden; border-radius: 0; }
    .service-card-full:hover { background: var(--bg-card-2); }
    .service-card-full::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, transparent, var(--blue), transparent); }
    .wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .wl-pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
    .wl-stat { background: var(--bg-2); border: 1px solid var(--border-dim); border-radius: var(--radius); padding: 20px; }
    .wl-stat-val { font-size: 24px; font-weight: 900; color: var(--blue-light); margin-bottom: 4px; }
    .wl-stat-lbl { font-size: 12px; color: var(--text-mute); }


/* ── QUADRANTS ── */
.quad-section {
    padding: 20px 48px;
    background: var(--bg);
}
    .quad-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.quad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    overflow: visible;
    min-height: 400px;
}

#home-heading-brands {
    display: none;
}

#home-heading-creators {
    display: block;
}

.quad-card {
    background: var(--bg-card);
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: 
        scale 0.3s var(--ease),
        transform 0.3s var(--ease),
        background 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}

.quad-card:hover {
    background: var(--bg-card-2);
    transform: translateY(-4px);
    scale: 1.03;
    box-shadow: 0 24px 60px var(--accent), 0 0 0 1px var(--border);
    z-index: 2;
}

/* Subtle corner accent */
.quad-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transition: height 0.3s var(--ease);
}
.quad-card:hover::before { height: 100px; }

.quad-number {
    font-size: 20px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 10px;
}
.quad-number::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

/* Image/mockup placeholder */
.quad-visual {
    width: 100%; aspect-ratio: 16/9;
    border-radius: var(--radius);
    margin-bottom: 28px;
    background: var(--bg-2);
    border: 1px solid var(--border-dim);
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

.quad-title { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; color: var(--white); margin-bottom: 10px; }
.quad-desc { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text-dim); }

.quad-title {
    font-size: 20px; font-weight: 700; letter-spacing: -0.4px;
    color: var(--white); margin-bottom: 10px;
}

.quad-desc {
    font-size: 20px; font-weight: 300; line-height: 1.75;
    color: var(--text-dim);
}

.grid-carousel {
  position: relative;
  max-width: 1500px;
  margin: 30px auto 0;
}

.grid-carousel .quad-grid {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* First grid stays in flow to set the carousel height */
.grid-carousel .quad-grid:first-child {
  position: relative;
}

/* All others sit on top of it */
.grid-carousel .quad-grid:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.grid-carousel .quad-grid.active {
  opacity: 1;
  pointer-events: auto;
}

.service-icon-wrap {
    fill: var(--accent);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    position: absolute;
    top: 24px;
    right: 24px;
}

/* ── FAQ ── */
.faq-section {
    padding: 50px 48px;
    background: var(--bg-1);
    /* border-top: 1px solid var(--border-dim); */
}

.faq-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }

.faq-list {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2px;
}

.faq-item.open { border-color: var(--border); }

.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 22px 28px;
    background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: 20px; font-weight: 600;
    color: var(--text); text-align: left;
    gap: 16px;
}

.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--blue-subtle); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--blue-light); font-weight: 300;
    transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-glow); }

.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
    padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }

.faq-a p {
    font-size: 20px; font-weight: 300; line-height: 1.75;
    color: var(--text-dim);
}
.faq-a a {
    color: var(--blue-light); text-decoration: underline;
    text-underline-offset: 3px; cursor: pointer;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
    color: var(--white); margin-bottom: 20px;
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    /* border-top: 1px solid var(--border-dim); */
    padding: 48px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
}

.footer-logo {
    font-size: 20px; font-weight: 800; color: var(--white);
    text-decoration: none; align-items: center; gap: 8px;
    height: 30px;
}
.footer-logo span { color: var(--blue); }
.footer-logo-mark {
    width: auto; height: 30px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: white;
}

.footer-links {
    display: flex; gap: 28px; list-style: none;
}
.footer-links a {
    font-size: 16px; font-weight: 400; color: var(--text-mute);
    text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }

.footer-copy { font-size: 16px; color: var(--text-mute); }

.footer-socials {
    display: flex; align-items: center; gap: 6px;
}
 
.footer-social-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-mute);
    background: transparent;
    border: 1px solid var(--border-dim);
    text-decoration: none;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
    margin-right: 5px;
    margin-left: 5px;
}
.footer-social-link:hover {
    color: var(--blue-light);
    background: var(--blue-subtle);
    border-color: var(--border);
    transform: translateY(-2px);
    box-shadow: 0 0px 16px var(--blue-light);
}

    /* ── FAQ ── */
    .faq-item {
      background: var(--bg-card); border: 1px solid var(--border-dim);
      border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s;
    }

    /* ── CONTACT / CTA ── */
    .cta-section {
      padding: 40px 48px;
      background: var(--bg);
      /* border-top: 1px solid var(--border-dim); */
    }
    .cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }


    /* ── RESULTS STRIP ── */
    .results-strip {
      display: flex; gap: 2px; border-radius: var(--radius-lg);
      overflow: hidden; border: 1px solid var(--border-dim);
    }
    .result-card {
      flex: 1; background: var(--bg-card); padding: 28px 24px;
      border-right: 1px solid var(--border-dim);
      transition: background 0.2s;
    }
    .result-card:last-child { border-right: none; }
    .result-card:hover { background: var(--bg-card-2); }
    .result-quote { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text-dim); margin-bottom: 18px; font-style: italic; }
    .result-author { display: flex; align-items: center; gap: 10px; }
    .result-avatar {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), var(--blue-dim));
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800; color: white;
    }
    .result-name { font-size: 13px; font-weight: 700; color: var(--text); }
    .result-role { font-size: 11px; color: var(--text-mute); }
    .result-stars { color: #f59e0b; font-size: 11px; margin-bottom: 2px; }

 
    /* ── STORY SECTION ── */
    .story-section {
      padding: 40px 48px;
      background: var(--bg-1);
      /* border-top: 1px solid var(--border-dim); */
    }
 
    .story-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-lg);
      display: block;
    }

    .story-inner {
      max-width: 1500px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 80px; align-items: start;
    }
 
    .story-left { position: sticky; top: 100px; }

    .section-title span {
      background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 60%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
 
    .story-accent {
      display: flex; flex-direction: column; gap: 20px;
      margin-top: 40px;
    }
 
    .story-stat {
      padding: 20px 24px;
      background: var(--bg-card);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius);
      border-left: 3px solid var(--blue);
      transition: border-color 0.3s, background 0.3s;
    }
    .story-stat:hover {
      border-left-color: var(--blue-light);
      background: var(--bg-card-2);
    }
    .story-stat-val {
      font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 4px;
    }
    .story-stat-label { font-size: 13px; color: var(--text-dim); font-weight: 400; }
 
    .story-right { padding-top: 8px; }
 
    .story-body p {
      font-size: 20px; font-weight: 300; line-height: 1.85;
      color: var(--text-dim); margin-bottom: 24px;
    }
    .story-body p strong { color: var(--text); font-weight: 600; }
    .story-body p:last-child { margin-bottom: 0; }
 
    .story-quote {
      margin: 40px 0;
      padding: 32px 36px;
      background: var(--bg-card);
      /* border: 1px solid var(--border); */
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
    }
    .story-quote::before {
      content: '"';
      position: absolute; top: -10px; left: 24px;
      font-size: 120px; font-weight: 900;
      color: var(--blue); opacity: 0.12; line-height: 1;
      font-family: Georgia, serif;
    }
    .story-quote p {
      font-size: 24px; font-weight: 600; letter-spacing: -0.3px;
      line-height: 1.55; color: var(--white);
      position: relative; z-index: 1;
      margin: 0;
    }
    .story-quote p em {
      font-style: normal;
      background: linear-gradient(135deg, var(--blue-light), var(--blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── TEAM ── */
    .team-section {
      padding: 40px 48px;
      background: var(--bg);
      /* border-top: 1px solid var(--border-dim); */
    }
 
    .team-inner { max-width: 1300px; margin: 0 auto; }
    .team-header { text-align: center; margin-bottom: 64px; }
 
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
    }
 
    .team-card {
      background: var(--bg-card);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color 0.3s, background 0.3s, transform 0.3s;
    }

    .team-card:hover {
      border-color: var(--border);
      background: var(--bg-card-2);
      transform: translateY(-6px);
      scale: 1.03;
      box-shadow: 0 10px 30px var(--accent), 0 0 0 1px var(--border);
      z-index: 2;
    }
 
    /* Rounded rectangle photo placeholder */
    .team-photo {
      width: 100%;
      aspect-ratio: 2/3;
      position: relative;
      overflow: hidden;
      margin-top: -40px;
    }

    .team-photo-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-photo-img.shift-down {
        transform: translateY(20px);
    }
 
    .team-photo-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      width: 100%;
      height: 100%;
    }
 
    /* Gradient placeholder until real images added */
    .team-card:nth-child(1) .team-photo { background: linear-gradient(155deg, #0e1028 0%, #1a2050 50%, #0e1018 100%); }
    .team-card:nth-child(2) .team-photo { background: linear-gradient(155deg, #10100e 0%, #201a10 50%, #0e0e18 100%); }
    .team-card:nth-child(3) .team-photo { background: linear-gradient(155deg, #0e1820 0%, #0f2030 50%, #0a1018 100%); }
    .team-card:nth-child(4) .team-photo { background: linear-gradient(155deg, #100e18 0%, #1a1028 50%, #0e0e18 100%); }
 
    .team-photo-monogram {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(107,127,219,0.15);
      border: 2px solid rgba(107,127,219,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 800;
      color: var(--blue-light);
      letter-spacing: -1px;
    }
 
    .team-photo-label {
      position: absolute; bottom: 12px; left: 12px; right: 12px;
      font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--text-mute);
      text-align: center;
    }
 
    .team-info {
      padding: 24px;
      border-top: 1px solid var(--border-dim);
    }
 
    .team-name {
      font-size: 20px; font-weight: 700; color: var(--white);
      margin-bottom: 6px; letter-spacing: -0.3px;
    }
 
    .team-role {
        font-size: 12px; font-weight: 400; color: var(--text-dim);
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
 
    .team-role strong {
      display: block;
      font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 2px;
    }

    .team-role-left {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: column;
    }
 
    /* ── PAGE LAYOUT ── */
    .page-wrap {
      min-height: 100vh;
      padding: 100px 24px 80px;
      display: flex; align-items: flex-start; justify-content: center;
      gap: 80px;
      max-width: 1500px; margin: 0 auto;
    }

    /* ── FORM CARD ── */
    .form-card {
      flex: 1; max-width: 1500px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 48px;
      animation: fadeUp 0.6s 0.08s var(--ease) both;
      position: relative;
      overflow: hidden;
    }
    .form-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent), transparent);
    }
 
    .form-header {
      margin-bottom: 36px;
    }
    .form-header h2 {
      font-size: 30px; font-weight: 700; letter-spacing: -0.5px;
      color: var(--white); margin-bottom: 6px;
    }
    .form-header p { font-size: 20px; font-weight: 300; color: var(--text-mute); }
 
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap:20px; margin-bottom: 16px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group.full { grid-column: 1 / -1; }
 
    label {
      font-size: 18px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--text-mute);
    }
 
    input, select, textarea {
      width: 100%;
      background: var(--bg-2);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-family: var(--font); font-size: 18px; font-weight: 400;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      appearance: none;
    }
    input::placeholder, textarea::placeholder { color: var(--text-mute); }
    input:focus, select:focus, textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(167,139,250,0.10);
      background: var(--bg-card-2);
    }
    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }
    select option { background: var(--bg-card-2); color: var(--text); }
 
    textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
 
    .submit-btn {
      width: 100%; margin-top: 8px;
      height: 52px;
      background: linear-gradient(135deg, var(--accent-dim), var(--blue-dim));
      color: white; border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font); font-size: 15px; font-weight: 700;
      cursor: pointer; letter-spacing: 0.2px;
      position: relative; overflow: hidden;
      transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 16px var(--accent);
    }
    .submit-btn:hover {
      filter: brightness(1.12); transform: translateY(-1px);
      box-shadow: 0 8px 32px var(--accent);
    }
    .submit-btn:active { transform: translateY(0); }
    .submit-btn::after {
      content: '→';
      margin-left: 8px;
      display: inline-block;
      transition: transform 0.2s var(--ease);
    }
    .submit-btn:hover::after { transform: translateX(4px); }
 
    .form-note {
      text-align: center; margin-top: 16px;
      font-size: 12px; color: var(--text-mute);
    }

    .input-error {
        border-color: #e05555 !important;
        box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12) !important;
    }

    .field-error {
        display: block;
        font-size: 12px;
        color: #e05555;
        margin-top: 6px;
        font-weight: 400;
    }
 
    /* ── SUCCESS STATE ── */
    .success-overlay {
      display: none;
      position: absolute; inset: 0;
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 16px; text-align: center; padding: 48px;
    }
    .success-overlay.show { display: flex; animation: fadeUp 0.4s var(--ease) both; }
    .success-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(167,139,250,0.15);
      border: 1px solid rgba(167,139,250,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
    }
    .success-overlay h3 {
      font-size: 22px; font-weight: 700; color: var(--white);
    }
    .success-overlay p { font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.6; }


/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.stagger > * { opacity: 0; transform: translateY(14px); }
.stagger.visible > *:nth-child(1) { animation: fadeUp 0.5s 0.0s var(--ease) forwards; }
.stagger.visible > *:nth-child(2) { animation: fadeUp 0.5s 0.08s var(--ease) forwards; }
.stagger.visible > *:nth-child(3) { animation: fadeUp 0.5s 0.16s var(--ease) forwards; }
.stagger.visible > *:nth-child(4) { animation: fadeUp 0.5s 0.24s var(--ease) forwards; }
.stagger.visible > *:nth-child(5) { animation: fadeUp 0.5s 0.32s var(--ease) forwards; }
.stagger.visible > *:nth-child(6) { animation: fadeUp 0.5s 0.40s var(--ease) forwards; }
.stagger.visible > *:nth-child(7) { animation: fadeUp 0.5s 0.48s var(--ease) forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav { padding: 0 20px; }
    .section-wrap { padding: 60px 20px; }
    .nav-right { gap: 0; }
    .nav-link { padding: 8px 10px; font-size: 13px; }
    .hero { padding: 100px 20px 60px; }
    .hero-home {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 60px;
        text-align: left;
    }
    .hero-logo-right { display: none; }
    .hero-sub { font-size: 18px; max-width: 100%; }
    .hero-bottom-desc { font-size: 15px; white-space: normal; text-align: center; }
    .hero-btns { justify-content: flex-start; }
    .quad-section { padding: 60px 20px; }
    .quad-grid { grid-template-columns: 1fr; }
    .waitlist-input { font-size: 15px; }
    .waitlist-btn { font-size: 15px; width: 50%; }
    .launch-badge { font-size: 13px; }
    .faq-section { padding: 50px 20px; }
    .faq-header { margin-bottom: 40px; }
    .faq-q { font-size: 17px; padding: 18px 20px; }
    .faq-a { padding: 0 20px; }
    .faq-item.open .faq-a { padding: 0 20px 20px; }
    .faq-a p { font-size: 15px; }
    .pricing-row { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .results-strip { flex-direction: column; }
    footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
    .hero-logo-right { display: none; }
    .about-head-section { padding: 60px 20px; padding-top: calc(68px + 60px); }
    .about-headline { padding-top: 40px; gap: 12px; }
    .rotate-section { padding: 32px 20px; }
    .rotate-headline { font-size: clamp(28px, 7vw, 48px); gap: 12px; }
    .rotate-word-wrap { min-width: 50px; }
    .switcher { padding: 16px 20px; }
    .cta-section { padding: 60px 20px; }
        .team-section { padding: 40px 20px; }
    .team-header { margin-bottom: 40px; }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .page-hero { padding: 120px 20px 80px; }
    .story-section { padding: 60px 20px; }
    .story-inner { grid-template-columns: 1fr; gap: 40px; }
    .story-left { position: static; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .nav-logo .logo-desktop { display: none; }
    .nav-logo .logo-mobile  { display: block; height: 40px; width: auto; }
    .service-icon-wrap {
        width: 70px;
        height: 70px;
    }
        .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .service-card { padding: 32px; }
    .service-card:nth-child(7) {
        grid-column: 1;
        justify-self: stretch;
    }
    .service-desc { font-size: 16px; }
    .service-list li { font-size: 15px; }
    .service-cta { font-size: 15px; }

    /* Show list permanently on mobile since there's no hover */
    .service-card .service-list {
        max-height: 300px;
        opacity: 1;
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .form-card { padding: 32px; }
    .form-header h2 { font-size: 24px; }
    .form-header p { font-size: 16px; }
    label { font-size: 14px; }
    input, select, textarea { font-size: 16px; }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-name { font-size: 18px; }
    .team-info { padding: 16px; }
    .faq-q { font-size: 15px; padding: 16px; }
    .faq-a { padding: 0 16px; }
    .faq-item.open .faq-a { padding: 0 16px 16px; }
    .faq-a p { font-size: 14px; }
    .faq-icon { width: 24px; height: 24px; font-size: 16px; }
    .service-icon-wrap {
        width: 70px;
        height: 70px;
    }
    /* Hero */
    .hero-home { padding: 90px 16px 50px; }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-bottom-desc { display: none; }

    /* Waitlist — stack vertically */
    .waitlist-form { flex-direction: column; gap: 10px; max-width: 100%; }
    .waitlist-input {
        border-right: 1px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 15px;
        width: 100%;
    }
    .waitlist-btn {
        border-radius: var(--radius-sm);
        width: 50%;
        font-size: 15px;
    }

    /* Background orbs — shrink so they don't dominate small screens */
    .bg-orb-1 { width: 300px; height: 300px; }
    .bg-orb-2 { width: 250px; height: 250px; }
    .bg-orb-3 { width: 350px; height: 350px; }
    .bg-orb-4 { width: 200px; height: 200px; }

    .service-card { padding: 24px; }
    .service-title { font-size: 18px; }
    .service-desc { font-size: 15px; }
    .service-list li { font-size: 14px; }
    .service-cta { font-size: 14px; width: 100%; text-align: center; }

    .form-card { padding: 20px; }
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .form-group.full { grid-column: 1; }
    .form-header { margin-bottom: 24px; }
    .form-header h2 { font-size: 22px; }
    .form-header p { font-size: 15px; }
    label { font-size: 13px; }
    input, select, textarea { font-size: 16px; padding: 10px 14px; }
    .success-overlay { padding: 24px; }
    .success-overlay h3 { font-size: 18px; }

    .about-head-section { padding: 40px 16px; padding-top: calc(68px + 40px); }
    .about-headline { padding-top: 20px; letter-spacing: -1px; }
}