.elementor-1154 .elementor-element.elementor-element-2482e91{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for global, class: .elementor-global-1116 */:root {
    --navy: #080C1A;
    --navy-mid: #0F1628;
    --lavender: #CDB4FF;
    --volt: #DFFF00;
    --coral: #FF4C61;
    --white: #F7F4EF;
    --muted: #8A8FA8;
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  html { scroll-behavior: smooth; background-color: #080C1A; color-scheme: dark; }
 
  body { background-color: #080C1A !important;
    background: #080C1A !important;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }
 
  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 5vw;
    background: rgba(8,12,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205,180,255,0.1);
  }
 
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--lavender);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--volt); }
 
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
 
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--lavender); }
 
  .nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    opacity: 1 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #e03548 !important; }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 5vw 6rem;
    position: relative;
    overflow: hidden;
  }
 
  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(205,180,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
 
  .hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(255,76,97,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
 
  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--volt);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
 
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: 14ch;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }
 
  .hero h1 em {
    font-style: italic;
    color: var(--lavender);
  }
 
  .hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 52ch;
    color: rgba(247,244,239,0.75);
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }
 
  .hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }
 
  .btn-primary {
    background: var(--coral);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #e03548; transform: translateY(-2px); }
 
  .btn-ghost {
    color: var(--lavender);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--lavender);
    padding-bottom: 2px;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 0.7; }
 
  .hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--volt);
    color: var(--navy);
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
  }
 
  .ticker-inner {
    display: inline-block;
    animation: ticker 25s linear infinite;
  }
 
  /* ── PROBLEM SECTION ── */
  .section-problem {
    padding: 8rem 5vw;
    position: relative;
  }
 
  .section-problem::before {
    content: '"';
    position: absolute;
    top: 4rem;
    right: 5vw;
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(205,180,255,0.04);
    line-height: 1;
    pointer-events: none;
  }
 
  .label-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.25rem;
    display: block;
  }
 
  .section-problem h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 22ch;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
  }
 
  .section-problem h2 em {
    font-style: italic;
    color: var(--lavender);
  }
 
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 960px;
  }
 
  .problem-col p {
    color: rgba(247,244,239,0.72);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
 
  .problem-col p strong {
    color: var(--white);
    font-weight: 600;
  }
 
  .divider-volt {
    width: 48px;
    height: 3px;
    background: var(--volt);
    margin-bottom: 2rem;
  }
 
  /* ── WHAT WE DO ── */
  .section-seo {
    padding: 8rem 5vw;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
  }
 
  .section-seo::after {
    content: 'SEO';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Playfair Display', serif;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(223,255,0,0.03);
    pointer-events: none;
    white-space: nowrap;
  }
 
  .seo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1100px;
  }
 
  .seo-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
  }
 
  .seo-left h2 span { color: var(--volt); }
 
  .seo-left p {
    color: rgba(247,244,239,0.72);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
 
  .channel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
 
  .channel-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--white);
  }
 
  .channel-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
  }
 
  .channel-list li span {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--lavender);
    margin-left: auto;
  }
 
  .seo-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
 
  .seo-card {
    border: 1px solid rgba(205,180,255,0.15);
    padding: 1.75rem;
    position: relative;
    transition: border-color 0.3s;
  }
  .seo-card:hover { border-color: var(--lavender); }
 
  .seo-card-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--volt);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
  }
 
  .seo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
  }
 
  .seo-card p {
    font-size: 0.9rem;
    color: rgba(247,244,239,0.65);
    line-height: 1.65;
  }
 
  /* ── PROOF ── */
  .section-proof {
    padding: 8rem 5vw;
  }
 
  .proof-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
 
  .proof-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 20ch;
  }
 
  .proof-header h2 em { color: var(--coral); font-style: italic; }
 
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(205,180,255,0.08);
  }
 
  .proof-card {
    background: #080C1A !important;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .proof-card:hover { background: var(--navy-mid); }
 
  .proof-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--coral);
    transition: height 0.4s ease;
  }
  .proof-card:hover::before { height: 100%; }
 
  .proof-card-industry {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 2rem;
    display: block;
  }
 
  .proof-stat {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--volt);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
 
  .proof-card:nth-child(2) .proof-stat { color: var(--lavender); }
 
  .proof-stat-label {
    font-size: 0.9rem;
    color: rgba(247,244,239,0.65);
    margin-bottom: 1.5rem;
  }
 
  .proof-card-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    border-top: 1px solid rgba(205,180,255,0.15);
    padding-top: 1.25rem;
  }
 
  /* ── WHO WE SERVE ── */
  .section-who {
    padding: 8rem 5vw;
    background: var(--navy-mid);
  }
 
  .who-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
 
  .who-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }
 
  .who-left h2 em { color: var(--lavender); font-style: italic; }
 
  .who-left p {
    color: rgba(247,244,239,0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }
 
  .business-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
 
  .biz-tag {
    background: transparent;
    border: 1px solid rgba(205,180,255,0.3);
    color: var(--lavender);
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    cursor: default;
  }
  .biz-tag:hover {
    background: var(--lavender);
    color: var(--navy);
    border-color: var(--lavender);
  }
 
  .who-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(205,180,255,0.08);
  }
 
  .who-feature {
    background: #080C1A !important;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
 
  .who-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(223,255,0,0.1);
    border: 1px solid rgba(223,255,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
  }
 
  .who-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--white);
  }
 
  .who-feature-text p {
    font-size: 0.87rem;
    color: rgba(247,244,239,0.6);
    line-height: 1.6;
  }
 
  /* ── FOUND REPORT CTA ── */
  .section-found {
    padding: 8rem 5vw;
    position: relative;
    overflow: hidden;
  }
 
  .found-box {
    background: var(--lavender);
    color: var(--navy);
    padding: 5rem 6rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
 
  .found-box::before {
    content: 'FOUND';
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(8,12,26,0.06);
    line-height: 1;
    pointer-events: none;
  }
 
  .found-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--navy);
  }
 
  .found-box p {
    font-size: 1rem;
    color: rgba(8,12,26,0.72);
    line-height: 1.75;
    max-width: 48ch;
  }
 
  .found-box-cta {
    flex-shrink: 0;
  }
 
  .btn-dark {
    background: #080C1A !important;
    color: var(--volt);
    padding: 1.1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }
  .btn-dark:hover { background: #0F1628; transform: translateY(-2px); }
 
  /* ── FOOTER CTA BAND ── */
  .footer-band {
    background: var(--navy-mid);
    border-top: 1px solid rgba(205,180,255,0.1);
    padding: 3rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
 
  .footer-band p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    max-width: 40ch;
  }
 
  .footer-band p span { color: var(--lavender); }
 
  /* ── FOOTER ── */
  footer {
    background: #080C1A !important;
    padding: 4rem 5vw 2.5rem;
    border-top: 1px solid rgba(205,180,255,0.08);
  }
 
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }
 
  .footer-brand .nav-logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }
 
  .footer-brand p {
    font-size: 0.9rem;
    color: rgba(247,244,239,0.5);
    line-height: 1.7;
    max-width: 36ch;
  }
 
  .footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--volt);
    margin-bottom: 1.25rem;
  }
 
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a {
    color: rgba(247,244,239,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--lavender); }
 
  .footer-bottom {
    border-top: 1px solid rgba(205,180,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
 
  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(247,244,239,0.35);
  }
 
  /* ── KEYFRAMES ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
 
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .problem-grid,
    .seo-inner,
    .who-inner { grid-template-columns: 1fr; gap: 2.5rem; }
 
    .proof-grid { grid-template-columns: 1fr; }
 
    .found-box {
      grid-template-columns: 1fr;
      padding: 3rem 2rem;
    }
 
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
 
    nav .nav-links { display: none; }
  }
 
  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #080C1A;
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 6rem 5vw 3rem;
  }
  .nav-mobile-menu.open { display: flex; }
 
  .nav-mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(205,180,255,0.1);
    width: 100%;
    text-align: center;
    transition: color 0.2s;
  }
  .nav-mobile-menu a:hover { color: var(--lavender); }
  .nav-mobile-menu a:last-child { border-bottom: none; }
  .nav-mobile-menu .mobile-cta {
    margin-top: 2rem;
    background: var(--coral);
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: none !important;
    width: auto !important;
  }
 
  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }
  }
 
  * { box-sizing: border-box; }
  html, body { background-color: #080C1A !important; color: #F7F4EF !important; }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-65e2333 */:root {
    --navy: #080C1A;
    --navy-mid: #0F1628;
    --lavender: #CDB4FF;
    --volt: #DFFF00;
    --coral: #FF4C61;
    --white: #F7F4EF;
    --muted: #8A8FA8;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; background-color: #080C1A; color-scheme: dark; }
  body {
    background-color: #080C1A !important;
    background: #080C1A !important;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }
 
  /* BREADCRUMB */
  .breadcrumb {
    padding: 8rem 5vw 0;
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards;
  }
  .breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--lavender); }
  .breadcrumb span { color: var(--muted); }
  .breadcrumb .current { color: var(--lavender); }
 
  /* HERO */
  .case-hero {
    padding: 3rem 5vw 6rem;
    position: relative; overflow: hidden;
    background: var(--navy-mid);
  }
 
  .case-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--volt), var(--lavender), var(--coral));
  }
 
  .case-hero::after {
    content: '225';
    position: absolute; right: -1rem; bottom: -4rem;
    font-family: 'Playfair Display', serif; font-size: clamp(10rem, 22vw, 22rem);
    font-weight: 900; color: rgba(223,255,0,0.035); line-height: 1; pointer-events: none;
  }
 
  .hero-meta {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
  }
 
  .hero-tag {
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(223,255,0,0.3);
    color: var(--volt);
  }
  .hero-tag.industry { border-color: rgba(205,180,255,0.3); color: var(--lavender); }
  .hero-tag.location { border-color: rgba(247,244,239,0.15); color: rgba(247,244,239,0.55); }
 
  .case-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 900; line-height: 1.0; letter-spacing: -0.03em;
    max-width: 20ch; margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.8s ease 0.35s forwards;
  }
  .case-hero h1 em { font-style: italic; color: var(--volt); }
 
  .case-hero-sub {
    font-size: 1.1rem; font-weight: 300;
    color: rgba(247,244,239,0.7); max-width: 58ch; line-height: 1.75;
    opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
  }
 
  /* STAT BAR */
  .stat-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px;
    background: rgba(205,180,255,0.1);
    margin: 0; padding: 0;
  }
 
  .stat-item {
    background: #080C1A !important;
    padding: 2.25rem 2rem;
    position: relative; overflow: hidden;
  }
 
  .stat-item::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--volt); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s ease;
  }
  .stat-item:hover::after { transform: scaleX(1); }
 
  .stat-value {
    font-family: 'Playfair Display', serif; font-size: 2.75rem;
    font-weight: 900; line-height: 1; letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
  }
 
  .stat-item:nth-child(1) .stat-value { color: var(--volt); }
  .stat-item:nth-child(2) .stat-value { color: var(--lavender); }
  .stat-item:nth-child(3) .stat-value { color: var(--coral); }
  .stat-item:nth-child(4) .stat-value { color: var(--volt); }
 
  .stat-label {
    font-size: 0.82rem; color: rgba(247,244,239,0.55); line-height: 1.5;
  }
  .stat-note {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 0.4rem; display: block;
  }
 
  /* BODY SECTIONS */
  .section-story {
    padding: 8rem 5vw;
  }
 
  .story-inner {
    display: grid; grid-template-columns: 1fr 1.25fr; gap: 8rem; align-items: start;
  }
 
  .story-left { position: sticky; top: 8rem; }
 
  .story-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.75rem;
  }
  .story-left h2 em { color: var(--lavender); font-style: italic; }
 
  .story-pull {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.15rem; color: var(--lavender); line-height: 1.6;
    border-left: 3px solid var(--volt); padding-left: 1.5rem;
    margin-top: 2.5rem;
  }
 
  .story-right p {
    font-size: 1.05rem; color: rgba(247,244,239,0.75);
    line-height: 1.85; margin-bottom: 1.75rem;
  }
  .story-right p strong { color: var(--white); font-weight: 600; }
 
  .story-right .highlight-line {
    font-family: 'Playfair Display', serif; font-size: 1.25rem;
    font-weight: 700; color: var(--white); line-height: 1.4;
    margin: 2.5rem 0;
  }
 
  /* WHAT WE FOUND */
  .section-audit {
    padding: 8rem 5vw;
    background: var(--navy-mid);
    position: relative; overflow: hidden;
  }
  .section-audit::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--coral), transparent);
  }
 
  .audit-header { margin-bottom: 4rem; max-width: 52ch; }
  .audit-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  }
  .audit-header h2 em { color: var(--coral); font-style: italic; }
  .audit-header p {
    font-size: 1rem; color: rgba(247,244,239,0.7); line-height: 1.75; margin-top: 1.25rem;
  }
 
  .audit-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: rgba(205,180,255,0.08);
  }
 
  .audit-card {
    background: #080C1A !important; padding: 2.25rem 2rem;
  }
 
  .audit-card-label {
    font-family: 'Space Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 1rem; display: block;
  }
  .audit-card:nth-child(1) .audit-card-label { color: var(--coral); }
  .audit-card:nth-child(2) .audit-card-label { color: var(--lavender); }
  .audit-card:nth-child(3) .audit-card-label { color: var(--volt); }
  .audit-card:nth-child(4) .audit-card-label { color: var(--lavender); }
  .audit-card:nth-child(5) .audit-card-label { color: var(--coral); }
  .audit-card:nth-child(6) .audit-card-label { color: var(--volt); }
 
  .audit-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    font-weight: 700; margin-bottom: 0.75rem; line-height: 1.2; color: var(--white);
  }
 
  .audit-card p {
    font-size: 0.88rem; color: rgba(247,244,239,0.62); line-height: 1.7;
  }
 
  /* TIMELINE / WHAT WE BUILT */
  .section-built {
    padding: 8rem 5vw;
  }
 
  .built-header { margin-bottom: 5rem; }
  .built-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; max-width: 24ch;
  }
  .built-header h2 em { color: var(--volt); font-style: italic; }
  .built-header p {
    font-size: 1rem; color: rgba(247,244,239,0.7); line-height: 1.75;
    max-width: 56ch; margin-top: 1.25rem;
  }
 
  .built-phases {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid rgba(205,180,255,0.1);
  }
 
  .built-phase {
    display: grid; grid-template-columns: 180px 1fr; gap: 0;
    border-bottom: 1px solid rgba(205,180,255,0.08);
  }
  .built-phase:last-child { border-bottom: none; }
 
  .phase-marker {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(205,180,255,0.08);
    display: flex; flex-direction: column; gap: 0.5rem;
  }
 
  .phase-num {
    font-family: 'Space Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
  }
 
  .phase-title {
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    font-weight: 700; color: var(--white); line-height: 1.2;
  }
 
  .phase-built:nth-child(1) .phase-title { color: var(--coral); }
  .built-phase:nth-child(1) .phase-title { color: var(--coral); }
  .built-phase:nth-child(2) .phase-title { color: var(--lavender); }
  .built-phase:nth-child(3) .phase-title { color: var(--volt); }
  .built-phase:nth-child(4) .phase-title { color: var(--lavender); }
 
  .phase-time {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.1em; color: var(--volt); margin-top: 0.5rem;
  }
 
  .phase-detail {
    padding: 2.5rem 2.5rem;
  }
 
  .phase-detail p {
    font-size: 0.95rem; color: rgba(247,244,239,0.72); line-height: 1.8; margin-bottom: 0;
  }
  .phase-detail p strong { color: var(--white); font-weight: 600; }
 
  .phase-detail ul {
    list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
    margin-top: 1.25rem;
  }
 
  .phase-detail ul li {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 0.88rem; color: rgba(247,244,239,0.65); line-height: 1.55;
  }
 
  .phase-detail ul li::before {
    content: '→'; color: var(--volt); flex-shrink: 0;
    font-size: 0.8rem; margin-top: 0.1rem;
  }
 
  /* RESULTS SECTION */
  .section-results {
    padding: 8rem 5vw;
    background: var(--navy-mid);
    position: relative; overflow: hidden;
  }
 
  .section-results::before {
    content: 'FOUND';
    position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
    font-family: 'Playfair Display', serif; font-size: 18rem;
    font-weight: 900; color: rgba(205,180,255,0.025); line-height: 1;
    pointer-events: none; white-space: nowrap;
  }
 
  .results-header { margin-bottom: 4rem; }
  .results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  }
  .results-header h2 em { color: var(--lavender); font-style: italic; }
  .results-header p {
    font-size: 1rem; color: rgba(247,244,239,0.7); line-height: 1.75;
    max-width: 56ch; margin-top: 1.25rem;
  }
 
  .results-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
    background: rgba(205,180,255,0.08); margin-bottom: 3rem;
  }
 
  .result-card {
    background: #080C1A !important; padding: 2.75rem 2.5rem;
  }
 
  .result-before-after {
    display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem;
  }
 
  .before, .after {
    display: flex; gap: 1.5rem; align-items: baseline;
  }
 
  .ba-label {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase; flex-shrink: 0; width: 4rem;
  }
 
  .before .ba-label { color: var(--muted); }
  .after .ba-label { color: var(--volt); }
 
  .ba-value {
    font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1;
  }
 
  .before .ba-value { font-size: 2rem; color: rgba(247,244,239,0.25); }
  .after .ba-value { font-size: 2.5rem; color: var(--white); }
 
  .result-card h4 {
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
    color: var(--lavender); margin-bottom: 0.5rem;
  }
 
  .result-card p {
    font-size: 0.87rem; color: rgba(247,244,239,0.6); line-height: 1.65;
  }
 
  .result-divider {
    height: 1px; background: rgba(205,180,255,0.1); margin: 1.25rem 0;
  }
 
  /* THE REDIRECT CALLOUT */
  .redirect-callout {
    background: rgba(223,255,0,0.04);
    border: 1px solid rgba(223,255,0,0.2);
    padding: 3rem 3rem;
    display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
  }
 
  .redirect-stat {
    font-family: 'Playfair Display', serif; font-size: 3.5rem;
    font-weight: 900; color: var(--volt); line-height: 1;
    flex-shrink: 0; white-space: nowrap;
  }
 
  .redirect-detail h4 {
    font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem;
  }
 
  .redirect-detail p {
    font-size: 0.92rem; color: rgba(247,244,239,0.68); line-height: 1.7;
  }
 
  /* WHAT THIS MEANT SECTION */
  .section-meaning {
    padding: 8rem 5vw;
  }
 
  .meaning-inner {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 8rem; align-items: start;
  }
 
  .meaning-left p {
    font-size: 1.05rem; color: rgba(247,244,239,0.75);
    line-height: 1.85; margin-bottom: 1.75rem;
  }
  .meaning-left p strong { color: var(--white); font-weight: 600; }
 
  .meaning-right { position: sticky; top: 8rem; }
 
  .meaning-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.75rem;
  }
  .meaning-right h2 em { color: var(--coral); font-style: italic; }
 
  .metric-list {
    list-style: none; display: flex; flex-direction: column; gap: 0;
    border: 1px solid rgba(205,180,255,0.12);
  }
 
  .metric-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(205,180,255,0.08);
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .metric-item:last-child { border-bottom: none; }
 
  .metric-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0; margin-top: 0.5rem;
  }
  .metric-item:nth-child(1) .metric-dot { background: var(--volt); }
  .metric-item:nth-child(2) .metric-dot { background: var(--lavender); }
  .metric-item:nth-child(3) .metric-dot { background: var(--coral); }
  .metric-item:nth-child(4) .metric-dot { background: var(--volt); }
  .metric-item:nth-child(5) .metric-dot { background: var(--lavender); }
 
  .metric-text {
    font-size: 0.92rem; color: rgba(247,244,239,0.75); line-height: 1.6;
  }
  .metric-text strong { color: var(--white); font-weight: 600; }
 
  /* CLOSING / SOAPBOX */
  .section-closing {
    padding: 8rem 5vw;
    background: var(--navy-mid);
    position: relative; overflow: hidden;
  }
 
  .section-closing::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(205,180,255,0.04) 0%, transparent 60%);
  }
 
  .closing-inner {
    max-width: 68ch;
  }
 
  .closing-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 2rem;
  }
  .closing-inner h2 em { color: var(--lavender); font-style: italic; }
 
  .closing-inner p {
    font-size: 1.05rem; color: rgba(247,244,239,0.75);
    line-height: 1.85; margin-bottom: 1.75rem;
  }
  .closing-inner p strong { color: var(--white); font-weight: 600; }
 
  /* CTA SECTION */
  .section-case-cta {
    padding: 8rem 5vw;
    position: relative; overflow: hidden;
  }
 
  .section-case-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,76,97,0.04) 0%, transparent 70%);
  }
 
  .cta-inner {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 6rem; align-items: start;
  }
 
  .cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
  }
  .cta-left h2 em { color: var(--coral); font-style: italic; }
 
  .cta-left p {
    font-size: 1rem; color: rgba(247,244,239,0.7); line-height: 1.75; margin-bottom: 2rem;
  }
 
  .btn-primary {
    background: var(--coral); color: var(--white);
    padding: 1rem 2.2rem; font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    display: inline-block; transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #e03548; transform: translateY(-2px); }
 
  .cta-right {
    background: var(--navy-mid);
    border: 1px solid rgba(205,180,255,0.15);
    padding: 2.5rem;
  }
 
  .cta-right h3 {
    font-family: 'Playfair Display', serif; font-size: 1.25rem;
    font-weight: 700; color: var(--lavender); margin-bottom: 0.75rem;
  }
 
  .cta-right p {
    font-size: 0.92rem; color: rgba(247,244,239,0.65); line-height: 1.7;
    margin-bottom: 1.25rem;
  }
 
  .btn-ghost-lavender {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--lavender); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; border-bottom: 1px solid rgba(205,180,255,0.4);
    padding-bottom: 2px; transition: opacity 0.2s;
  }
  .btn-ghost-lavender:hover { opacity: 0.7; }
 
  /* FOOTER */
  footer {
    background: #080C1A !important; padding: 4rem 5vw 2.5rem;
    border-top: 1px solid rgba(205,180,255,0.08);
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem;
  }
  .footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.75rem; }
  .footer-brand p { font-size: 0.9rem; color: rgba(247,244,239,0.5); line-height: 1.7; max-width: 36ch; }
  .footer-col h4 {
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--volt); margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { color: rgba(247,244,239,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--lavender); }
  .footer-bottom {
    border-top: 1px solid rgba(205,180,255,0.08); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.8rem; color: rgba(247,244,239,0.35); }
 
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  @media (max-width: 1024px) {
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 900px) {
    .story-inner, .meaning-inner, .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    .story-left, .meaning-right { position: static; }
    .audit-grid { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .redirect-callout { grid-template-columns: 1fr; }
    .built-phase { grid-template-columns: 1fr; }
    .phase-marker { border-right: none; border-bottom: 1px solid rgba(205,180,255,0.08); padding: 1.5rem 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    nav .nav-links { display: none; }
    .nav-hamburger { display: flex; }
  }
 
  @media (max-width: 600px) {
    .stat-bar { grid-template-columns: 1fr 1fr; }
    .audit-grid { grid-template-columns: 1fr; }
  }
 
  * { box-sizing: border-box; }
  html, body { background-color: #080C1A !important; color: #F7F4EF !important; }
</style>
</head>/* End custom CSS */