/* ============================================================
   Havoc Digital — Variant A: BRIGHT GROWTH
   ============================================================
   Inspired by: SEOWorks · Drum-winning agencies · 2026 modern
   Palette: white · ink · saturated lime green
   Type:    Inter 400/600/800/900 · JetBrains Mono
   Energy:  bold, confident, social-proof heavy
   ============================================================ */

@layer reset, tokens, base, layout, components, utilities;

/* ============================================================ */
@layer reset {
  *,*::before,*::after { box-sizing: border-box; }
  * { margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  img,picture,video,svg { display: block; max-width: 100%; height: auto; }
  input,button,textarea { font: inherit; color: inherit; }
  button { background: none; border: 0; cursor: pointer; }
  ul,ol { list-style: none; }
  a { color: inherit; text-decoration: none; }
}

/* ============================================================ */
@layer tokens {
  :root {
    /* PALETTE — bright/bold */
    --bg:          #FFFFFF;
    --bg-alt:      #F4F4F2;
    --bg-soft:     #FAFAF8;
    --ink:         #0E0E10;
    --ink-soft:    #2A2A2E;
    --ink-mute:    #6B6B72;
    --rule:        #E5E5E2;
    --rule-strong: #1A1A1D;

    /* THE LIME — saturated, used aggressively */
    --lime:        #A4D900;
    --lime-deep:   #8FBE00;
    --lime-soft:   #E8F5BC;
    --lime-ink:    #0E0E10;       /* text on lime */

    /* OKLCH precision (overrides hex on supporting browsers) */
    --bg:          oklch(100% 0 0);
    --bg-alt:      oklch(96% 0.003 110);
    --bg-soft:     oklch(98% 0.002 110);
    --ink:         oklch(15% 0.005 270);
    --ink-soft:    oklch(28% 0.005 270);
    --ink-mute:    oklch(50% 0.008 270);
    --rule:        oklch(91% 0.003 110);
    --lime:        oklch(85% 0.20 122);
    --lime-deep:   oklch(75% 0.21 122);
    --lime-soft:   oklch(94% 0.10 122);

    /* TYPE */
    --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    /* SCALE — bigger and bolder than before */
    --fs-eyebrow: 0.75rem;
    --fs-body:    clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
    --fs-lede:    clamp(1.0625rem, 0.95rem + 0.4vw, 1.25rem);
    --fs-h3:      clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
    --fs-h2:      clamp(2rem, 1.5rem + 2vw, 3.25rem);
    --fs-h1:      clamp(2.25rem, 1.5rem + 2.4vw, 4.25rem);
    --fs-stat:    clamp(2.5rem, 2rem + 3vw, 4.5rem);

    --lh-tight:   1.0;
    --lh-snug:    1.2;
    --lh-body:    1.6;

    --radius-sm:  6px;
    --radius:     10px;
    --radius-lg:  18px;

    --container:  78rem;
    --ease:       cubic-bezier(0.2, 0.7, 0.25, 1);
    --dur-fast:   140ms;
    --dur:        260ms;

    --shadow-sm:  0 1px 2px rgba(14,14,16,0.05), 0 0 0 1px rgba(14,14,16,0.04);
    --shadow:     0 8px 24px -8px rgba(14,14,16,0.10), 0 0 0 1px rgba(14,14,16,0.04);
    --shadow-lg:  0 20px 48px -16px rgba(14,14,16,0.18), 0 0 0 1px rgba(14,14,16,0.06);
  }

  @media (prefers-reduced-motion: reduce) {
    *,*::before,*::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}

/* ============================================================ */
@layer base {
  html {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: var(--lh-body);
    scroll-behavior: smooth;
    font-feature-settings: 'cv11', 'ss01';
  }
  body { font-size: var(--fs-body); min-height: 100dvh; }

  h1,h2,h3,h4 {
    font-family: var(--font);
    font-weight: 800;
    line-height: var(--lh-tight);
    letter-spacing: -0.025em;
    text-wrap: balance;
    color: var(--ink);
  }
  h1 { font-size: var(--fs-h1); font-weight: 900; letter-spacing: -0.045em; }
  h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; line-height: 1.05; }
  h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.015em; }
  h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); font-family: var(--font-mono); }

  p { text-wrap: pretty; }
  ::selection { background: var(--lime); color: var(--lime-ink); }

  :focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 2px; }

  .hl {
    background: var(--lime);
    color: var(--lime-ink);
    padding: 0.04em 0.25em;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  em { font-style: italic; }
}

/* ============================================================ */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }
  main > section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }

  .section-head { max-width: 56rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
  .section-head--centered { margin-inline: auto; text-align: center; }
  .section-head h2 { margin-block: 0.4em 0.4em; }
  .section-lede {
    font-size: var(--fs-lede);
    color: var(--ink-mute);
    max-width: 44rem;
    line-height: 1.55;
  }
  .section-head--centered .section-lede { margin-inline: auto; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-mono);
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
  }
  .eyebrow--dark { color: var(--lime-soft); border-color: rgba(255,255,255,0.18); }
}

/* ============================================================ */
@layer components {

  .skip-link {
    position: absolute; top: -50px; left: 1rem;
    background: var(--ink); color: var(--bg);
    padding: 0.75rem 1.25rem; border-radius: var(--radius);
    font-weight: 600; z-index: 100; text-decoration: none;
    transition: top var(--dur-fast) var(--ease);
  }
  .skip-link:focus-visible { top: 1rem; }

  /* ANNOUNCE BAR */
  .announce {
    background: var(--ink); color: var(--bg);
    padding: 0.625rem 0;
    text-align: center;
    font-size: 0.875rem;
  }
  .announce a { color: var(--lime); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
  .announce a:hover { color: var(--bg); }

  /* WORDMARK */
  .wordmark {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font); font-weight: 900;
    font-size: 1rem; letter-spacing: -0.02em;
    color: var(--ink); text-decoration: none;
  }
  .wordmark__mark {
    flex-shrink: 0;
    width: 2.25rem; height: 2.25rem;
    color: var(--lime);
    display: block;
  }
  .wordmark__text {
    display: inline-flex; flex-direction: column;
    line-height: 0.95; gap: 0.15rem;
  }
  .wordmark__name {
    font-family: var(--font);
    font-size: 1rem; font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--ink);
  }
  .wordmark__name em {
    font-style: normal;
    color: var(--lime-deep);
    position: relative;
  }
  .wordmark__sub {
    font-family: var(--font-mono);
    font-size: 0.6rem; font-weight: 500;
    color: var(--ink-mute);
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }
  .wordmark--footer { color: var(--bg); }
  .wordmark--footer .wordmark__mark { color: var(--lime); }
  .wordmark--footer .wordmark__name { color: var(--bg); }
  .wordmark--footer .wordmark__name em { color: var(--lime); }
  .wordmark--footer .wordmark__sub { color: var(--lime); }

  /* BUTTONS */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
    padding: 0.7rem 1.15rem;
    font-family: var(--font); font-weight: 700; font-size: 0.9rem;
    letter-spacing: -0.005em; line-height: 1;
    text-decoration: none; border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--dur-fast) var(--ease);
    min-block-size: 2.6rem; cursor: pointer; white-space: nowrap;
  }
  .btn--lg { padding: 0.875rem 1.4rem; font-size: 0.95rem; min-block-size: 3rem; }
  .btn--xl { padding: 1.05rem 1.65rem; font-size: 1rem; min-block-size: 3.4rem; font-weight: 800; }

  .btn--solid { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
  .btn--solid:hover { background: var(--lime-deep); border-color: var(--lime-deep); transform: translateY(-1px); box-shadow: var(--shadow); }

  .btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn--ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }

  .btn--dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .btn--dark:hover { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); transform: translateY(-1px); }

  .btn--lime { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
  .btn--lime:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); transform: translateY(-1px); }

  /* HEADER */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid var(--rule);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding-block: 1rem;
  }
  .primary-nav ul { display: flex; gap: clamp(0.75rem, 2vw, 1.75rem); }
  .primary-nav a {
    font-size: 0.9375rem; font-weight: 600;
    color: var(--ink-soft); padding-block: 0.5rem;
    transition: color var(--dur-fast) var(--ease);
    position: relative;
  }
  .primary-nav a:hover { color: var(--ink); }
  .primary-nav a:hover::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0.2rem;
    height: 3px; background: var(--lime);
  }
  @media (max-width: 920px) { .primary-nav { display: none; } }

  /* HERO */
  .hero {
    padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem) !important;
    background: var(--bg);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle at 70% 30%, var(--lime-soft) 0%, transparent 50%);
    opacity: 0.6; pointer-events: none;
  }
  .hero__inner {
    display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 4rem);
    align-items: center; position: relative;
  }
  @media (min-width: 980px) { .hero__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); } }

  .hero__kicker {
    display: inline-block; font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--ink-soft); letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    padding: 0.45rem 0.875rem;
    background: var(--lime-soft); border-radius: 999px;
    font-weight: 500;
  }
  .hero__title {
    font-size: var(--fs-h1); font-weight: 900;
    line-height: 0.95; letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero__title-em { color: var(--lime-deep); }
  .hero__sub {
    font-size: var(--fs-lede); color: var(--ink-soft);
    max-width: 32rem; margin-bottom: 2rem; line-height: 1.45;
  }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2.5rem; }

  .hero__stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 8rem), 1fr));
    gap: 0; padding: 1rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  }
  .hero__stats li { padding: 0.5rem 1rem 0.5rem 0; }
  .hero__stats strong { display: block; font-size: 1.875rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
  .hero__stats span { display: block; margin-top: 0.25rem; font-size: 0.7rem; font-family: var(--font-mono); color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; }

  /* HERO VISUAL */
  .hero__visual { position: relative; min-height: 24rem; }
  .hero__photo {
    aspect-ratio: 4/5;
    background: var(--ink);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
    margin: 0;
  }
  .hero__photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
  }
  .hero__photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.45) 100%);
    pointer-events: none;
  }
  .hero__photo-overlay {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    display: flex; justify-content: flex-start;
  }
  .hero__chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
    color: var(--ink);
  }
  .hero__chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2.4s var(--ease) infinite; }

  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--lime-deep) 60%, transparent); }
    70%  { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
  }

  .hero__badge {
    position: absolute; padding: 0.875rem 1.1rem;
    background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-family: var(--font-mono); font-size: 0.7rem;
    line-height: 1.3; text-align: left;
    display: flex; flex-direction: column; gap: 0.15rem;
    color: var(--ink-mute);
  }
  .hero__badge svg { color: var(--lime-deep); margin-bottom: 0.25rem; }
  .hero__badge strong { display: block; color: var(--ink); font-size: 0.875rem; font-family: var(--font); font-weight: 700; }
  .hero__badge .stars { display: inline-flex; gap: 1px; color: var(--lime-deep); margin-bottom: 0.25rem; }
  .hero__badge--1 { top: -0.75rem; left: -1.25rem; transform: rotate(-3deg); }
  .hero__badge--2 { bottom: 2.5rem; right: -1.5rem; transform: rotate(2deg); }
  @media (max-width: 980px) {
    .hero__photo { aspect-ratio: 16/10; }
    .hero__badge--1 { top: -0.5rem; left: 0; }
    .hero__badge--2 { bottom: 0.5rem; right: 0; }
  }

  /* AWARDS STRIP */
  .awards { background: var(--bg-alt); padding-block: clamp(2rem, 4vw, 3rem) !important; }
  .awards__label {
    text-align: center; font-family: var(--font-mono); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute);
    margin-bottom: 1.5rem;
  }
  .awards__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .awards__list li {
    background: var(--bg);
    padding: 1.1rem 1rem;
    text-align: center;
    display: flex; flex-direction: column; gap: 0.5rem;
    align-items: center; justify-content: center;
  }
  .award-mark {
    width: 100%; max-width: 9rem; height: 1.6rem;
    display: block;
  }
  .award { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
  .award__sub { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; }

  /* CLIENT LOGO WALL */
  .logos { padding-block: clamp(2.5rem, 4vw, 3.5rem) !important; border-top: 1px solid var(--rule); }
  .logos__label {
    text-align: center; font-family: var(--font-mono); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute);
    margin-bottom: 2rem;
  }
  .logos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 8rem), 1fr));
    gap: 0;
  }
  .logos__grid li {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    min-height: 5rem;
    filter: grayscale(0.4) opacity(0.85);
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .logos__grid li:hover { filter: grayscale(0) opacity(1); transform: translateY(-1px); }
  .client-logo {
    width: 100%; max-width: 8rem;
    height: 2.4rem;
    display: block;
  }

  /* INTRO */
  .intro__inner {
    display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }
  @media (min-width: 880px) { .intro__inner { grid-template-columns: 1fr 1.1fr; } }

  .intro__photo {
    aspect-ratio: 4/3;
    background: var(--ink);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
    margin: 0;
  }
  .intro__photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
  }
  .intro__photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.4) 100%);
    pointer-events: none;
  }
  .intro__chip {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.875rem;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
    color: var(--ink); letter-spacing: 0.04em;
  }

  .intro__copy h2 { margin-block: 0.5rem 1.5rem; }
  .intro__copy p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; margin-bottom: 1rem; max-width: 36rem; }
  .intro__bullets { display: flex; flex-direction: column; gap: 0.65rem; margin-block: 1.5rem; }
  .intro__bullets li { display: flex; align-items: baseline; gap: 0.75rem; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
  .check-svg {
    flex-shrink: 0; display: inline-grid; place-items: center;
    width: 1.4rem; height: 1.4rem;
    background: var(--lime); color: var(--lime-ink);
    border-radius: 50%; padding: 0.3rem;
  }
  .stars { display: inline-flex; align-items: center; gap: 1px; color: var(--lime-deep); }
  .link-arrow {
    display: inline-flex; align-items: center; gap: 0.4em;
    font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink); padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--lime);
    transition: gap var(--dur-fast) var(--ease);
  }
  .link-arrow:hover { gap: 0.7em; color: var(--lime-deep); }

  /* SERVICES GRID */
  .services { background: var(--bg-alt); }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: 1.25rem;
  }
  .svc-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex; flex-direction: column; gap: 0.875rem;
    transition: all var(--dur) var(--ease);
    position: relative; overflow: hidden;
  }
  .svc-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 4px; background: var(--lime);
    transition: width var(--dur) var(--ease);
  }
  .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
  .svc-card:hover::before { width: 100%; }
  .svc-card__visual {
    width: 3rem; height: 3rem;
    background: var(--lime-soft);
    border-radius: var(--radius);
    display: grid; place-items: center;
    color: var(--ink);
  }
  .svc-card h3 { font-size: 1.25rem; font-weight: 800; }
  .svc-card p { color: var(--ink-mute); font-size: 0.9375rem; line-height: 1.55; flex: 1; }
  .svc-card__link {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink);
    padding-top: 0.5rem; border-top: 1px solid var(--rule);
    transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
    display: inline-flex; gap: 0.3em;
  }
  .svc-card__link:hover { color: var(--lime-deep); gap: 0.6em; }

  /* FOUNDER SECTION */
  .founder { background: var(--bg); border-block: 1px solid var(--rule); }
  .founder__inner {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }
  @media (min-width: 880px) { .founder__inner { grid-template-columns: 0.85fr 1.15fr; } }

  .founder__photo {
    aspect-ratio: 1/1;
    background: var(--ink);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
    margin: 0;
    max-width: 28rem;
    margin-inline: auto;
    width: 100%;
  }
  .founder__photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(0.95) contrast(1.05);
  }
  .founder__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14,14,16,0.55) 100%);
    pointer-events: none;
  }
  .founder__photo-caption {
    position: absolute; bottom: 1rem; left: 1rem;
    display: inline-flex; align-items: center;
    padding: 0.5rem 0.875rem;
    background: var(--lime); color: var(--lime-ink);
    border-radius: 999px;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    z-index: 1;
  }

  .founder__copy h2 {
    margin-block: 0.6rem 1.5rem;
    font-style: italic; font-weight: 400;
    font-family: 'Inter', serif;
    line-height: 1.15; letter-spacing: -0.02em;
    text-wrap: pretty;
    max-width: 32rem;
  }
  .founder__copy > p {
    color: var(--ink-soft); font-size: 1.0625rem;
    line-height: 1.65; max-width: 36rem; margin-bottom: 1.5rem;
  }
  .founder__credits {
    display: flex; flex-direction: column; gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-alt);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    max-width: 32rem;
  }
  .founder__credits li {
    font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--ink-soft);
    padding-left: 1.1rem;
    position: relative;
    letter-spacing: 0.02em;
  }
  .founder__credits li::before {
    content: '';
    position: absolute; left: 0; top: 0.55em;
    width: 0.4rem; height: 0.4rem;
    background: var(--lime-deep);
    border-radius: 50%;
  }

  /* RESULTS BAND — THE LIME */
  .results-band {
    background: var(--lime); color: var(--lime-ink);
    text-align: center;
    padding-block: clamp(4rem, 8vw, 7rem) !important;
    position: relative; overflow: hidden;
  }
  .results-band::before {
    content: ''; position: absolute;
    top: -50%; left: -10%; width: 50%; height: 200%;
    background: rgba(255,255,255,0.06);
    transform: rotate(-20deg); pointer-events: none;
  }
  .results-band h2 {
    font-size: clamp(2.5rem, 1.8rem + 3vw, 4.25rem);
    font-weight: 900; letter-spacing: -0.04em;
    text-transform: uppercase; margin-bottom: 0.65em;
  }
  .results-band h2 em { font-style: italic; font-weight: 800; }
  .results-band__lede {
    font-size: var(--fs-lede); max-width: 44rem; margin: 0 auto 2.5rem;
    line-height: 1.55; color: var(--ink);
  }
  .results-band__stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    gap: 2rem; margin-bottom: 3rem;
    text-align: center;
  }
  .results-band__stats div { padding: 0 0.5rem; }
  .results-band__stats strong {
    display: block; font-size: var(--fs-stat); font-weight: 900;
    line-height: 0.95; letter-spacing: -0.045em; color: var(--lime-ink);
  }
  .results-band__stats span {
    display: block; margin-top: 0.5rem;
    font-family: var(--font-mono); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--lime-ink); opacity: 0.75;
  }

  /* SECTORS */
  .sectors { background: var(--bg); border-top: 1px solid var(--rule); }
  .sectors__layout {
    display: grid; grid-template-columns: 1fr; gap: 2rem;
  }
  @media (min-width: 880px) { .sectors__layout { grid-template-columns: 14rem 1fr; gap: 0; } }

  .sectors__nav {
    display: flex; flex-direction: column;
    border-right: 0;
  }
  @media (min-width: 880px) { .sectors__nav { border-right: 1px solid var(--rule); padding-right: 1rem; } }
  .sectors__nav li {
    padding: 0.75rem 1rem;
    font-weight: 600; font-size: 0.95rem;
    color: var(--ink-mute);
    border-left: 3px solid transparent;
    cursor: pointer; transition: all var(--dur-fast) var(--ease);
  }
  .sectors__nav li:hover { color: var(--ink); }
  .sectors__nav li.is-active {
    background: var(--lime); color: var(--lime-ink);
    border-left-color: var(--lime-deep);
    font-weight: 700;
  }

  .sectors__panel {
    padding-left: 0;
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  @media (min-width: 880px) { .sectors__panel { padding-left: 2.5rem; } }
  .case-card {
    background: var(--bg-alt);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .case-card__logo {
    align-self: flex-start;
    padding: 0.4rem 0.75rem;
    background: var(--ink); color: var(--bg);
    font-family: var(--font); font-weight: 800; font-size: 0.75rem;
    letter-spacing: 0.08em; border-radius: 4px;
    text-transform: uppercase;
  }
  .case-card h3 { font-size: 1.375rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
  .case-card p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
  .case-card__meta {
    font-family: var(--font-mono); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-mute);
  }
  .sectors__cta { text-align: center; margin-top: 2.5rem; }

  /* TESTIMONIALS */
  .testimonials { background: var(--rule-strong); color: var(--bg); position: relative; overflow: hidden; }
  .testimonials::before {
    content: ''; position: absolute; top: 0; right: 0; width: 30%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(164,217,0,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .testimonials .eyebrow { color: var(--lime); border-color: rgba(255,255,255,0.18); }
  .testimonials h2 { color: var(--bg); }
  .t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
  }
  .t-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .t-card:hover { border-color: var(--lime); transform: translateY(-3px); }
  .testimonials .stars { color: var(--lime); }
  .t-card blockquote {
    font-size: 1rem; line-height: 1.55; color: var(--bg);
    quotes: "\201C" "\201D"; font-style: normal;
  }
  .t-card footer {
    padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .t-card__avatar {
    flex-shrink: 0;
    width: 2.75rem; height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lime);
  }
  .t-card footer strong { display: block; font-size: 0.95rem; color: var(--bg); line-height: 1.2; }
  .t-card footer span { display: block; margin-top: 0.15rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--lime); letter-spacing: 0.05em; }

  /* AWARDS BLOCK */
  .awards-block { background: var(--bg); }
  .awards-block__inner {
    display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
  @media (min-width: 880px) { .awards-block__inner { grid-template-columns: 1fr 1fr; } }
  .awards-block h2 { margin-block: 0.5rem 1.25rem; max-width: 24rem; }
  .awards-block p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.6; max-width: 30rem; margin-bottom: 1.75rem; }
  .awards-block__photo {
    aspect-ratio: 4/3;
    background: var(--ink);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
    margin: 0;
  }
  .awards-block__photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.05);
  }
  .awards-block__photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.35) 100%);
    pointer-events: none;
  }

  /* THINKING (BLOG) */
  .thinking { background: var(--bg-alt); }
  .thinking .section-head {
    display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
    gap: 1.5rem;
  }
  .thinking__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: 1.25rem;
  }
  .post {
    background: var(--bg); border: 1px solid var(--rule);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: all var(--dur) var(--ease);
  }
  .post:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .post__visual {
    aspect-ratio: 16/9;
    position: relative; overflow: hidden;
    background: var(--ink);
    border-bottom: 1px solid var(--rule);
    margin: 0;
  }
  .post__visual img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
    transition: transform 320ms var(--ease);
  }
  .post:hover .post__visual img { transform: scale(1.04); }
  .post__visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.35) 100%);
    pointer-events: none;
  }
  .post__cat {
    position: absolute; bottom: 0.85rem; left: 0.85rem; z-index: 1;
    display: inline-block;
    padding: 0.35rem 0.65rem;
    background: var(--lime); color: var(--lime-ink);
    border-radius: 4px;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .post__meta { padding: 1.25rem 1.5rem 0; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); }
  .post h3 { padding: 0.5rem 1.5rem 1.5rem; font-size: 1.125rem; font-weight: 700; line-height: 1.35; letter-spacing: -0.015em; }
  .post h3 a { color: var(--ink); }
  .post h3 a:hover { color: var(--lime-deep); }

  /* CTA BAND */
  .cta-band {
    background: var(--ink); color: var(--bg);
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; top: -30%; right: -20%;
    width: 60%; height: 160%;
    background: radial-gradient(ellipse at center, rgba(164,217,0,0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-band__inner {
    display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center; position: relative;
  }
  @media (min-width: 880px) { .cta-band__inner { grid-template-columns: 1.5fr 1fr; } }
  .cta-band h2 { color: var(--bg); margin-block: 0.5rem 1.25rem; }
  .cta-band p { color: rgba(255,255,255,0.78); font-size: var(--fs-lede); line-height: 1.55; max-width: 32rem; }
  .cta-band__cta { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  @media (min-width: 880px) { .cta-band__cta { align-items: flex-end; } }
  .cta-band__alt { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
  .cta-band__alt a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }

  /* FOOTER */
  .site-footer { background: var(--rule-strong); color: var(--bg); padding-block: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 3vw, 2.5rem); }
  .site-footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
  @media (min-width: 720px) { .site-footer__inner { grid-template-columns: 1fr 2.5fr; grid-template-areas: "brand nav" "legal legal"; } .site-footer__brand { grid-area: brand; } .site-footer__nav { grid-area: nav; } .site-footer__legal { grid-area: legal; } }

  .site-footer__brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-block: 1rem 1rem; line-height: 1.55; }
  .site-footer__rating { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.75rem; background: rgba(255,255,255,0.06); border-radius: 999px; font-size: 0.8rem; }
  .site-footer__rating .stars { color: var(--lime); }
  .site-footer .stars { color: var(--lime); }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    gap: 1.75rem;
  }
  .site-footer__nav h4 { color: var(--lime); margin-bottom: 0.85rem; font-size: 0.7rem; }
  .site-footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
  .site-footer__nav a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
  .site-footer__nav a:hover { color: var(--lime); }
  .site-footer__contact strong { color: var(--bg); display: inline-block; min-width: 4rem; font-size: 0.75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 0.5rem; }
  .site-footer__contact a { color: rgba(255,255,255,0.7); }

  .site-footer__legal {
    margin-top: 2rem; padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1rem;
  }
  .site-footer__legal p { color: rgba(255,255,255,0.5); font-size: 0.8rem; font-family: var(--font-mono); }
  .site-footer__legal ul { display: flex; gap: 1.25rem; }
  .site-footer__legal a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
  .site-footer__legal a:hover { color: var(--lime); }
}

/* ============================================================ */
@layer utilities {
  .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
}

/* View Transitions */
@view-transition { navigation: auto; }
