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

  :root {
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --teal: #0d9488;
    --orange: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --radius: 12px;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
  }
  .logo .logo-icon {
    width: 22px;
    height: 22px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-italic { font-style: italic; font-weight: 400; }
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
  }
  .btn-primary:hover { background: #1d4ed8; }
  .btn-primary-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 8px;
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 72px 48px 56px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-text h1 {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .hero-text p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
    max-width: 460px;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 16px 10px 12px;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
    opacity: 0;
    animation: stat-rise .55s cubic-bezier(.22, 1, .36, 1) var(--sd, 0s) forwards;
  }
  .stat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .si-green  { background: #dcfce7; }
  .si-blue   { background: #dbeafe; }
  .si-orange { background: #fef3c7; }
  .si-pink   { background: #fce7f3; }
  .btn-primary s, .cta-strip a s {
    opacity: 0.55;
    text-decoration-thickness: 2px;
  }
  .stat-copy { display: flex; flex-direction: column; line-height: 1.2; }
  .stat-copy strong {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .stat-copy small {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
  }
  @keyframes stat-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-stat { opacity: 1; animation: none; }
  }

  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-photo-wrap {
    position: relative;
    width: 380px;
  }
  .hero-photo-glow {
    position: absolute;
    inset: 8% 4%;
    background: radial-gradient(circle at 50% 40%, rgba(37, 99, 235, 0.35), rgba(124, 58, 237, 0.18) 60%, transparent 75%);
    filter: blur(44px);
    z-index: 0;
  }
  .hero-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  }

  /* Floating tool icons around the headshot */
  .tool-icon {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation:
      icon-pop .5s cubic-bezier(.34, 1.56, .64, 1) var(--pd, 0s) forwards,
      icon-float var(--fdur, 3.6s) ease-in-out calc(var(--pd, 0s) + .5s) infinite;
  }
  .ti-meta   { top: 4%;    left: -8%; }
  .ti-claude { top: -4%;   right: 7%; }
  .ti-openai { top: 36%;   right: -9%; }
  .ti-eleven { bottom: 9%; right: -5%; }
  .ti-zapier { bottom: -4%; left: 12%; }
  .ti-make   { top: 48%;   left: -10%; }

  @keyframes icon-pop {
    from { opacity: 0; transform: scale(.4); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .tool-icon { opacity: 1; animation: none; }
  }

  /* ── LOGOS ── */
  .logos-section {
    background: #f9fafb;
    padding: 56px 48px 72px;
    text-align: center;
    overflow: hidden;
  }
  .logos-eyebrow {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 44px;
  }
  .logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 44px 36px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    opacity: 0;
    transform: translateY(18px) scale(.94);
    transition: opacity .55s ease var(--d, 0ms), transform .55s ease var(--d, 0ms);
  }
  .logo-item.revealed { opacity: 1; transform: none; }
  .logo-item img {
    height: 100px;
    width: 100%;
    max-width: 215px;
    object-fit: contain;
    opacity: 0.42;
    transition: opacity .45s ease, filter .45s ease, transform .45s ease;
  }
  .logo-item.spotlight img,
  .logo-item:hover img {
    opacity: 1;
    filter: drop-shadow(0 10px 22px rgba(37, 99, 235, 0.28));
    transform: scale(1.14) translateY(-3px);
  }
  @media (prefers-reduced-motion: reduce) {
    .logo-item { opacity: 1; transform: none; transition: none; }
    .logo-item img { transition: none; }
    .logo-item.spotlight img, .logo-item:hover img { transform: none; }
  }

  /* ── PROBLEM SECTION ── */
  .section-center {
    text-align: center;
    padding: 80px 48px 48px;
    max-width: 800px;
    margin: 0 auto;
  }
  .section-center h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .section-center p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 40px auto 0;
    padding: 0 48px;
  }
  .problem-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    background: #fff;
  }
  .problem-card.teal-border { border-color: #5eead4; }
  .problem-card.pink-border { border-color: #f9a8d4; }
  .problem-card.yellow-border { border-color: #fde68a; }
  .problem-card.purple-border { border-color: #c4b5fd; }
  .problem-card.green-border { border-color: #86efac; }
  .problem-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    display: block;
  }
  .problem-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .problem-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 36px 48px;
    font-size: 15px;
    color: var(--muted);
  }
  .cta-strip strong { color: var(--text); }
  .cta-strip a {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
  }
  .cta-strip a:hover { background: #1d4ed8; }

  /* ── CREATIVE SECTION ── */
  .creative-section {
    padding: 80px 48px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .creative-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .creative-section > p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 48px;
  }
  .creative-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
  }
  .creative-card {
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    position: relative;
    aspect-ratio: 9/16;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
    opacity: 0;
    transform: translateY(26px) scale(.97);
    transition: opacity .6s ease var(--cd, 0ms), transform .6s cubic-bezier(.22,1,.36,1) var(--cd, 0ms),
                box-shadow .3s ease;
  }
  .creative-card.in { opacity: 1; transform: none; }
  .creative-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .creative-scrim {
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
    pointer-events: none;
  }
  .creative-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: 5px 11px;
  }
  .creative-card:hover {
    box-shadow: 0 26px 60px rgba(37, 99, 235, 0.26);
  }
  .creative-card:hover video { transform: scale(1.05); }
  .creative-card.stagger { margin-top: 34px; }
  @media (prefers-reduced-motion: reduce) {
    .creative-card { opacity: 1; transform: none; transition: none; }
  }

  /* ── AI SECTION ── */
  .ai-section {
    background: var(--bg-light);
    padding: 80px 48px;
  }
  .ai-section-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .ai-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
  }
  .ai-section > .ai-section-inner > p {
    text-align: center;
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 15px;
  }
  .ai-section > .ai-section-inner > p + p {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 15px;
  }
  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .ai-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 28px;
  }
  .ai-card.good { border-color: #6ee7b7; }
  .ai-card.bad { border-color: var(--border); }
  .ai-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .ai-card.good .ai-card-label { color: var(--teal); }
  .ai-card.bad .ai-card-label { color: var(--muted); }
  .ai-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .ai-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .ai-list li .icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 1px;
  }
  .icon-check { background: #d1fae5; color: var(--green); }
  .icon-x { background: #fee2e2; color: var(--red); }

  /* ── BIO SECTION ── */
  .bio-section {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
  }
  .bio-rainbow-bar {
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ec4899);
    margin-bottom: 0;
  }
  .bio-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
  }
  .bio-photo-glow {
    position: absolute;
    inset: 6% 3%;
    background: radial-gradient(circle at 50% 45%, rgba(37, 99, 235, .32), rgba(236, 72, 153, .18) 58%, transparent 74%);
    filter: blur(40px);
    z-index: 0;
  }
  .bio-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px 24px 24px 72px;
    box-shadow: 0 22px 54px rgba(17, 24, 39, .18);
  }
  .bio-text h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .bio-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .bio-text p:last-of-type { margin-bottom: 28px; }

  /* ── NEEDLE SECTION ── */
  .needle-section {
    padding: 80px 48px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .needle-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .needle-section > p {
    font-size: 15px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 48px;
  }
  .needle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
  }
  .needle-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
  .needle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity .25s ease;
  }
  .needle-item:hover {
    border-color: #fcd34d;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.07);
    transform: translateY(-3px);
  }
  .needle-item:hover::before { opacity: 1; }
  .needle-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
  }
  .needle-item h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .needle-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── PRICING SECTION ── */
  .pricing-section {
    background: var(--bg-light);
    padding: 80px 48px;
    text-align: center;
  }
  .pricing-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: left;
  }
  .pricing-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 32px;
  }
  .pricing-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .pricing-card > p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .price-label { font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
  .price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }
  .price-amount .per {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
  }
  .price-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
  }
  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
  }
  .pricing-features li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
  }
  .pricing-footer-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }
  .pricing-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .pricing-badge {
    font-size: 11px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
  }
  .pricing-card-right {
    display: flex;
    flex-direction: column;
  }
  .pricing-card-right > p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .pricing-card-right .price-sub { margin-bottom: 20px; }
  .poa { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 4px; }

  /* ── TRUST SECTION ── */
  .trust-section {
    background: var(--bg-light);
    padding: 20px 48px 80px;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 64px;
    max-width: 780px;
    margin: 0 auto;
  }
  .trust-item {}
  .trust-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    color: var(--blue);
  }
  .trust-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .trust-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── SVG ICONS ── */
  .icon-svg {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    display: block;
  }
  .icon-svg-sm {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    display: block;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    /* let headings wrap naturally on small screens instead of forced desktop breaks */
    .needle-section h2 br,
    .creative-section h2 br,
    .ai-section h2 br { display: none; }
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
    .hero-image { justify-content: center; align-items: center; }
    .hero-photo-wrap { width: min(72vw, 300px); }
    .tool-icon { width: 42px; height: 42px; border-radius: 12px; }
    .tool-icon svg { width: 21px; height: 21px; }
    .problem-grid { grid-template-columns: 1fr; padding: 0 24px; }
    .creative-scroll { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .ai-grid { grid-template-columns: 1fr; }
    .bio-section { grid-template-columns: 1fr; padding: 48px 24px; }
    .bio-photo { max-width: none; width: 100%; aspect-ratio: 1/1; }
    .bio-photo img { border-radius: 20px 20px 20px 56px; object-position: center 22%; }
    .needle-grid { grid-template-columns: 1fr; gap: 14px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .logos-section, .section-center, .creative-section, .ai-section,
    .needle-section, .pricing-section, .trust-section { padding-left: 24px; padding-right: 24px; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
    .logo-item, .logo-item img { height: 84px; }
  }

  @media (max-width: 600px) {
    .creative-scroll {
      display: flex;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 4px 24px 8px;
      margin: 0 -24px;
    }
    .creative-scroll::-webkit-scrollbar { display: none; }
    .creative-card {
      flex: 0 0 76%;
      scroll-snap-align: center;
    }
    .creative-card.stagger { margin-top: 0; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; max-width: none; }
    .hero-stat { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px; }
    .stat-copy strong { font-size: 16px; }
    .stat-copy small { font-size: 11px; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
    .logo-item, .logo-item img { height: 74px; }
    .logo-item img { max-width: 118px; }
  }

  /* Tap-to-play affordance when autoplay is blocked */
  .creative-card.needs-tap::after {
    content: '▶';
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    background: rgba(0, 0, 0, .28);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
  }

  /* ── ARTICLES ── */
  .articles-section {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .articles-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
  }
  .articles-head h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .articles-head > div > p {
    font-size: 15px;
    color: var(--muted);
  }
  .articles-all {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
  }
  .articles-all:hover { text-decoration: underline; }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
  .article-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 32px rgba(17, 24, 39, .08);
    transform: translateY(-3px);
  }
  .article-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    background: #eff6ff;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  .article-card h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .article-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .article-meta {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
  }

  /* ── QUOTE FORM ── */
  .quote-section {
    background: #0f172a;
    padding: 84px 48px;
    scroll-margin-top: 80px;
  }
  .quote-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  .quote-intro h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
  }
  .quote-intro > p {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
  }
  .quote-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .quote-points li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
  }
  .quote-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #38bdf8;
    font-weight: 700;
  }
  .quote-form {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  }
  .hp { display: none; }
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .field { display: block; margin-bottom: 14px; }
  .field > span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: #f9fafb;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 13px;
    transition: border-color .2s, box-shadow .2s, background .2s;
  }
  .field textarea { resize: vertical; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
  }
  .quote-submit {
    width: 100%;
    margin-top: 6px;
    border: none;
    font-family: inherit;
  }
  .quote-privacy {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
  }

  @media (max-width: 900px) {
    .articles-section { padding: 60px 24px; }
    .articles-grid { grid-template-columns: 1fr; gap: 14px; }
    .articles-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .quote-section { padding: 60px 24px; }
    .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 600px) {
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .quote-form { padding: 22px; }
  }

  /* ── FAQ ── */
  .faq-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 48px;
    scroll-margin-top: 80px;
  }
  .faq-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 12px;
  }
  .faq-intro {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .faq-list { display: flex; flex-direction: column; gap: 10px; }
  .faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .faq-item[open] {
    border-color: #bfdbfe;
    box-shadow: 0 8px 26px rgba(17, 24, 39, .06);
  }
  .faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2.2px solid var(--blue);
    border-bottom: 2.2px solid var(--blue);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s ease;
  }
  .faq-item[open] summary::after { transform: translateY(-25%) rotate(225deg); }
  .faq-item summary:hover { color: var(--blue); }
  .faq-body { padding: 0 22px 20px; }
  .faq-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
  }

  /* ── FOOTER ── */
  .site-footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: 64px 48px 28px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.9fr 1.05fr;
    gap: 32px;
  }
  .footer-logo { color: #fff; margin-bottom: 14px; }
  .footer-logo span { color: #fff; }
  .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 300px;
    margin-bottom: 18px;
  }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
  }
  .footer-social a:hover { background: var(--blue); color: #fff; }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-col a:hover { color: #fff; }
  .footer-plain { font-size: 14px; color: #94a3b8; }
  .footer-more { font-style: italic; opacity: .8; }
  .footer-more:hover { opacity: 1; }
  .footer-bar {
    max-width: 1100px;
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #64748b;
  }
  .footer-legal a { color: #64748b; text-decoration: none; }
  .footer-legal a:hover { color: #cbd5e1; }

  @media (max-width: 900px) {
    .faq-section { padding: 60px 24px; }
    .site-footer { padding: 48px 24px 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-col h4:empty, .footer-col h4 { min-height: 0; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bar { flex-direction: column; gap: 8px; }
  }
  @media (max-width: 600px) {
    .faq-item summary { font-size: 15px; padding: 16px 46px 16px 18px; }
    .faq-body { padding: 0 18px 18px; }
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: #f9fafb;
    padding: 80px 48px;
    text-align: center;
  }
  .testimonials-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .testimonials-intro {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 44px;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
  }
  .testimonial {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 30px 28px 24px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
  .testimonial::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0081FB, #7c3aed, #ec4899, #f59e0b);
    opacity: 0;
    transition: opacity .25s ease;
  }
  .testimonial:hover {
    border-color: #bfdbfe;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .09);
    transform: translateY(-3px);
  }
  .testimonial:hover::before { opacity: 1; }
  .quote-mark {
    position: absolute;
    top: 6px;
    right: 20px;
    font-size: 84px;
    line-height: 1;
    font-weight: 900;
    color: #eff6ff;
    pointer-events: none;
    user-select: none;
  }
  .testimonial blockquote {
    position: relative;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.005em;
  }
  .testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .testimonial figcaption img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .testimonial figcaption span {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
  }
  .testimonial figcaption strong {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text);
  }
  .testimonial figcaption small {
    font-size: 13px;
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .testimonials-section { padding: 60px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial { padding: 26px 22px 20px; }
    .testimonial blockquote { font-size: 15.5px; }
  }

  /* ── WHO I CAN HELP / SECTOR PAGES ── */
  .sector-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding: 64px 48px 56px;
  }
  .sector-hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
  .sector-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--blue);
    background: #eff6ff;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 22px;
    text-decoration: none;
  }
  .sector-eyebrow:hover { background: #dbeafe; }
  .sector-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 18px;
  }
  .sector-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 28px;
  }
  .sector-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }
  .sector-chip {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 14px;
  }

  .sector-narrow { max-width: 760px; margin: 0 auto; }
  .sector-problems, .sector-args, .sector-process { padding: 76px 48px; }
  .sector-problems { background: #fff; }
  .sector-args { background: #f9fafb; }
  .sector-problems h2, .sector-args h2, .sector-process h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .sector-lede {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 34px;
  }
  .problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .problem-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--border);
    border-left: 4px solid #fca5a5;
    border-radius: 10px;
    padding: 18px 20px;
  }
  .problem-list .x-mark {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fee2e2;
    color: var(--red);
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .problem-list p { font-size: 15.5px; line-height: 1.65; color: var(--text); }

  .sector-args-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .sector-arg {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
  .sector-arg:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 32px rgba(17,24,39,.08);
    transform: translateY(-3px);
  }
  .sector-arg h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
  .sector-arg p { font-size: 15px; line-height: 1.7; color: var(--muted); }

  .sector-steps {
    list-style: none;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .sector-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .sector-step:last-child { border-bottom: none; }
  .step-num {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
  }
  .sector-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
  .sector-step p { font-size: 15px; line-height: 1.7; color: var(--muted); }

  @media (max-width: 900px) {
    .sector-hero { padding: 44px 24px 40px; }
    .sector-problems, .sector-args, .sector-process { padding: 52px 24px; }
    .sector-args-grid { grid-template-columns: 1fr; gap: 14px; }
    .sector-sub { font-size: 16.5px; }
  }

  /* ── WHO I CAN HELP HUB ── */
  .hub-section { padding: 72px 48px; }
  .hub-section h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .hub-grid {
    max-width: 1100px;
    margin: 36px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .hub-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  }
  .hub-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 32px rgba(17,24,39,.08);
    transform: translateY(-3px);
  }
  .hub-card h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .hub-card p {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .hub-more { font-size: 13px; font-weight: 700; color: var(--blue); }
  @media (max-width: 900px) {
    .hub-section { padding: 52px 24px; }
    .hub-grid { grid-template-columns: 1fr; gap: 12px; }
    .hub-card p { font-size: 16px; }
  }

  /* ── WAYS I CAN HELP ── */
  .ways-section {
    background: #0f172a;
    color: #e2e8f0;
    padding: 84px 48px;
  }
  .ways-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
  .ways-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
  }
  .ways-head p {
    font-size: 16px;
    line-height: 1.75;
    color: #94a3b8;
  }
  .ways-list {
    list-style: none;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 48px;
  }
  .ways-list li {
    position: relative;
    padding: 18px 0 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .ways-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 27px;
    width: 8px;
    height: 2px;
    background: #475569;
    transition: width .25s ease, background .25s ease;
  }
  .ways-list li:hover::before { width: 14px; background: #38bdf8; }
  .ways-list h3 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 7px;
  }
  .ways-list li:hover h3 { color: #94a3b8; }
  .ways-list p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
  }
  .ways-list a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background-image: linear-gradient(90deg, #38bdf8, #38bdf8);
    background-size: 100% 1.5px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 2px;
    transition: background-size .25s ease, color .2s ease;
  }
  .ways-list a:hover { color: #7dd3fc; background-size: 100% 2.5px; }
  .ways-foot {
    max-width: 1060px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 15px;
    color: #94a3b8;
  }
  .ways-foot a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
  .ways-foot a:hover { color: #7dd3fc; }

  @media (max-width: 900px) {
    .ways-section { padding: 58px 24px; }
    .ways-list { grid-template-columns: 1fr; gap: 0; }
    .ways-list li { padding: 16px 0 16px 18px; }
    .ways-list li::before { top: 25px; }
    .ways-list p { font-size: 15.5px; }
  }
