/*
Theme Name: AG WebWorx
Theme URI: https://agwebworx.com
Author: Alipio Gabriel
Description: Minimal custom dark theme for AG WebWorx. Animated aurora hero, services, team, 11-project portfolio carousel, founder block, pricing, FAQ. Built from the approved local redesign.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: agwebworx
*/
  :root {
    /* Dark mode palette */
    --bg: #060B06;
    --bg-elev: #0B130B;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-soft: rgba(20, 168, 0, 0.04);
    --ink: #F0F5EE;
    --ink-2: #C5CFC2;
    --muted: #9AA894;
    --line: rgba(255, 255, 255, 0.08);

    --green: #1FBD0A;
    --green-deep: #14A800;
    --green-soft: rgba(20, 168, 0, 0.16);
    --green-pale: rgba(20, 168, 0, 0.08);

    --gold: #E5B547;
    --gold-soft: rgba(229, 181, 71, 0.14);

    /* Glass tokens for dark mode - now less translucent, more solid panels with a hint of tint */
    --glass-bg: rgba(20, 28, 20, 0.7);
    --glass-bg-strong: rgba(28, 38, 28, 0.78);
    --glass-bg-dark: rgba(0, 30, 0, 0.85);
    --glass-bg-dark-strong: rgba(0, 30, 0, 0.92);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-soft: rgba(255, 255, 255, 0.05);
    --glass-border-dark: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 14px 40px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    --glass-shadow-dark: 0 14px 40px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    --green-glow: 0 0 24px -8px rgba(31, 189, 10, 0.2);
    --ag-logo: url('assets/img/ag-logo.png');

    --radius: 16px;
    --radius-lg: 24px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16.5px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
  }

  /* Fine noise grain over everything - very subtle film-like texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.28;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
  }

  /* === AMBIENT BACKGROUND LAYER === */
  /* These coloured blobs sit behind everything so backdrop-filter has something to blur */
  .ambient {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background-image:
      repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 60px,
        rgba(255, 255, 255, 0.012) 60px,
        rgba(255, 255, 255, 0.012) 61px
      );
  }
  .ambient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(31, 189, 10, 0.18), transparent 35%),
      radial-gradient(circle at 88% 12%, rgba(229, 181, 71, 0.1), transparent 38%),
      radial-gradient(circle at 92% 78%, rgba(31, 189, 10, 0.12), transparent 40%),
      radial-gradient(circle at 8% 88%, rgba(229, 181, 71, 0.08), transparent 40%);
  }

  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .blob-1 {
    width: 520px; height: 520px;
    background: var(--green);
    opacity: 0.22;
    top: -120px; right: -100px;
    animation: drift 22s ease-in-out infinite;
  }
  .blob-2 {
    width: 420px; height: 420px;
    background: var(--gold);
    opacity: 0.12;
    bottom: -100px; left: -80px;
    animation: drift 26s ease-in-out infinite reverse;
  }
  .blob-3 {
    width: 320px; height: 320px;
    background: var(--green);
    opacity: 0.14;
    top: 40%; left: 40%;
    animation: drift 30s ease-in-out infinite 4s;
  }
  @keyframes drift {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.08); }
    66% { transform: translate(-40px, 50px) scale(0.94); }
  }

  ::selection { background: var(--green); color: white; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 28px; position: relative; }

  h1, h2, h3, h4 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ink);
  }
  h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); letter-spacing: -0.035em; line-height: 1; }
  h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
  h3 { font-size: clamp(1.3rem, 1.8vw, 1.65rem); letter-spacing: -0.02em; }
  h4 { font-size: 1.1rem; letter-spacing: -0.015em; }

  .italic-accent {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--green);
  }

  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: ping 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--green);
  }
  @keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.22; }
  }

  /* === UPWORK BADGE - now glass === */
  .upwork-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-2);
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .upwork-badge .uw-logo {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 0.62rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 0 8px rgba(31,189,10,0.3);
  }
  .upwork-badge strong { color: var(--ink); font-weight: 700; }
  .upwork-badge.lg {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .upwork-badge.lg .uw-logo {
    width: 20px; height: 20px;
    font-size: 0.7rem;
  }
  .upwork-badge.dark {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .upwork-badge.dark strong { color: white; }
  .star-rating {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 4px rgba(212,164,55,0.2));
  }

  /* === NAV - glass pill === */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--glass-border);
    transition: top 0.4s ease, background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  }
  .nav-pill {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 0;
    transition: max-width 0.45s ease, background 0.4s ease, border-radius 0.45s ease,
      padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  }
  /* On scroll: morph into a floating rounded glass pill */
  nav.top.scrolled {
    top: 12px;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  nav.top.scrolled .nav-pill {
    max-width: 1140px;
    padding: 10px 14px 10px 22px;
    background: rgba(11, 19, 11, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-color: var(--glass-border);
    border-radius: 999px;
    box-shadow:
      0 10px 40px -10px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.2);
  }
  @media (prefers-reduced-motion: reduce) {
    nav.top, .nav-pill { transition: none; }
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.025em;
  }
  .brand-mark {
    width: 38px; height: 32px;
    background-color: var(--ink);
    -webkit-mask-image: var(--ag-logo);
    mask-image: var(--ag-logo);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    text-indent: -9999px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }
  .brand-mark::after {
    content: '';
    position: absolute;
    bottom: 1px; right: -3px;
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(31,189,10,0.5);
  }
  .nav-center { display: flex; align-items: center; gap: 24px; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-trust {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 18px;
    border-left: 1px solid var(--line);
  }
  .nav-trust strong { color: var(--green); font-weight: 600; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    text-decoration: none;
    transition: all 0.22s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-green {
    background: var(--green);
    color: white;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .btn-green:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px -4px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  }
  .btn-ink {
    background: white;
    color: var(--bg);
    box-shadow: 0 2px 6px -2px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .btn-ink:hover {
    background: var(--green);
    color: white;
    transform: translateY(-1px);
  }
  .btn-glass {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--ink);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .btn-glass:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(31,189,10,0.06);
  }
  .btn-glass-dark {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .btn-glass-dark:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
  }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
  .arrow { transition: transform 0.22s; }
  .btn:hover .arrow { transform: translate(3px, -3px); }

  .nav-toggle {
    display: none;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    background: var(--bg-card); color: var(--ink);
    border: 1px solid var(--glass-border); border-radius: var(--radius-pill);
    font-size: 1.35rem; cursor: pointer; flex-shrink: 0; margin-left: 8px;
  }
  @media (max-width: 940px) {
    .nav-toggle { display: inline-flex; }
    .nav-pill { position: relative; }
    .nav-center {
      position: absolute; top: calc(100% + 12px); left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 4px;
      background: rgba(7, 12, 7, 0.98);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--glass-shadow);
      padding: var(--space-4);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }
    nav.top.nav-open .nav-center { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-links { flex-direction: column; gap: 2px; width: 100%; }
    .nav-links a { display: block; padding: 12px 14px; border-radius: 12px; font-size: 1rem; }
    .nav-links a:hover { background: var(--green-pale); }
    .nav-trust { display: none; }
  }
  @media (max-width: 460px) {
    .nav-hire { display: none; }
    .nav-pill { padding: 8px 10px 8px 16px; }
  }

  /* === HERO === */
  .hero {
    padding: 64px 0 90px;
    position: relative;
    overflow: hidden;
  }

  /* Hero-specific atmosphere */
  .hero-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
  }
  .hero-atmosphere .blob-h1 {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.08;
    filter: blur(100px);
    top: -160px; left: -120px;
  }
  .hero-atmosphere .blob-h2 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.07;
    filter: blur(100px);
    top: 20%; right: -160px;
  }
  .hero-atmosphere .blob-h3 {
    position: absolute;
    width: 700px; height: 400px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.06;
    filter: blur(120px);
    bottom: 10%; left: 30%;
  }

  .hero-inner {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding-top: 28px;
    position: relative;
  }

  .hero-creds {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 { margin-bottom: 24px; }
  .hero h1 .underline-green {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .hero h1 .underline-green::after {
    content: '';
    position: absolute;
    left: -2px; right: -2px;
    bottom: 4px;
    height: 14px;
    background: rgba(31, 189, 10, 0.35);
    z-index: -1;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(31,189,10,0.2);
  }

  .hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
  }
  .hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-meta .tick {
    color: var(--green);
    font-weight: 700;
  }

  /* === PROFILE CARD - frosted glass === */
  .profile-card {
    max-width: 920px;
    margin: 64px auto 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    box-shadow:
      0 30px 60px -30px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 0 40px -20px rgba(31,189,10,0.1);
    position: relative;
  }
  @media (max-width: 760px) {
    .profile-card { grid-template-columns: 1fr; text-align: center; }
  }
  .pc-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 2.6rem;
    letter-spacing: -0.02em;
    position: relative;
    flex-shrink: 0;
    box-shadow:
      0 12px 30px -10px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 0 40px -8px rgba(31,189,10,0.5);
  }
  .pc-avatar .pc-online {
    position: absolute;
    bottom: 4px; right: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--bg);
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
  }
  @media (max-width: 760px) {
    .pc-avatar { margin: 0 auto; }
  }
  .pc-body { min-width: 0; }
  .pc-name {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }
  .pc-title {
    color: var(--ink-2);
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .pc-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  @media (max-width: 760px) {
    .pc-badges { justify-content: center; }
  }
  .pc-stats {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 32px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  @media (max-width: 760px) {
    .pc-stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
  }
  .pc-stat-big {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 16px rgba(31,189,10,0.25);
  }
  .pc-stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
  }

  /* === MARQUEE === */
  .marquee-wrap {
    background: rgba(11, 19, 11, 0.85);
    padding: 18px 0;
    overflow: hidden;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .marquee-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(31,189,10,0.18), transparent 70%);
    pointer-events: none;
  }
  .marquee {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    position: relative;
  }
  @keyframes scroll {
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    color: white;
    padding: 0 30px;
    font-family: 'Hanken Grotesk';
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0.85;
  }
  .marquee-item .star {
    color: var(--green);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(31,189,10,0.4));
  }

  /* === SECTIONS === */
  section { padding: clamp(56px, 7vw, 80px) 0; position: relative; }
  .section-head {
    margin-bottom: 60px;
    max-width: 820px;
  }
  .section-head .eyebrow { margin-bottom: 22px; }
  .section-head h2 { margin-bottom: 20px; }
  .section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 58ch;
    line-height: 1.55;
  }

  /* === TRUST BAND - glass === */
  .trust-band {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  .trust-band-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 50px -25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
  }
  @media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

  .trust-item {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:last-child { border-right: none; }
  @media (max-width: 760px) {
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  }
  .trust-num {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    display: block;
  }
  .trust-num.green {
    color: var(--green);
    text-shadow: 0 0 16px rgba(31,189,10,0.25);
  }
  .trust-label {
    color: var(--muted);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
  }

  /* === SERVICES - frosted glass cards === */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  @media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

  .service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    box-shadow: 0 14px 40px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .service-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05), 0 0 24px -10px rgba(31,189,10,0.15);
  }
  .service-card.featured {
    background: rgba(18, 50, 18, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: white;
    border-color: rgba(31, 189, 10, 0.3);
    box-shadow: 0 14px 40px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 24px -15px rgba(31,189,10,0.15);
  }
  .service-card.featured h3 { color: white; }
  .service-card.featured:hover {
    border-color: var(--green);
    box-shadow: 0 22px 50px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 35px -10px rgba(31,189,10,0.25);
  }
  .service-card.featured::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.12;
    filter: blur(60px);
    pointer-events: none;
  }

  .sc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--green);
    margin-bottom: 22px;
    display: block;
    letter-spacing: 0.06em;
    position: relative;
  }
  .service-card.featured .sc-num { color: var(--green); }

  .service-card h3 { margin-bottom: 14px; position: relative; }
  .service-card p {
    color: var(--ink-2);
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.55;
    position: relative;
  }
  .service-card.featured p { color: rgba(255,255,255,0.85); }

  .sc-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .service-card.featured .sc-foot { border-top-color: rgba(255,255,255,0.15); }

  .sc-price {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
  }
  .sc-price span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    display: block;
    margin-top: 2px;
  }
  .service-card.featured .sc-price span { color: rgba(255,255,255,0.55); }

  .sc-arrow {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .service-card:hover .sc-arrow {
    transform: rotate(-45deg);
    background: var(--green);
    color: white;
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(31,189,10,0.3);
  }
  .service-card.featured .sc-arrow {
    background: var(--green);
    color: white;
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 12px rgba(31,189,10,0.3);
  }

  /* === TEAM === */
  .team-section {
    position: relative;
    overflow: hidden;
  }
  .team-section::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.06;
    filter: blur(120px);
    pointer-events: none;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
  }
  @media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

  .member-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .member-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 20px -8px rgba(31,189,10,0.15);
  }
  .member-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif';
    font-style: italic;
    font-size: 1.7rem;
    margin-bottom: 16px;
    position: relative;
    box-shadow:
      0 8px 20px -8px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 0 18px -10px rgba(31,189,10,0.25);
  }
  .member-card:nth-child(2) .member-avatar { background: linear-gradient(135deg, #E5B547 0%, #B89028 100%); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 18px -10px rgba(229,181,71,0.25); }
  .member-card:nth-child(3) .member-avatar { background: linear-gradient(135deg, #4A90E2 0%, #2D5DA8 100%); box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 18px -10px rgba(74,144,226,0.25); }
  .member-card:nth-child(4) .member-avatar { background: linear-gradient(135deg, #6B7A6B 0%, #2A3A2A 100%); }
  .member-avatar .online-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 2.5px solid var(--bg-elev);
    box-shadow: 0 0 6px rgba(31,189,10,0.4);
  }
  .member-name {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .member-role {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
  .member-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--ink-2);
  }
  .member-badge .bdg-icon {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
  }
  .member-badge.gold .bdg-icon { background: var(--gold); box-shadow: 0 0 8px rgba(212,164,55,0.5); }
  .member-badge.rising .bdg-icon { background: #4A90E2; }

  /* === PROCESS - dark === */
  .process-section {
    background: #04080A;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .process-section::before,
  .process-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
  }
  .process-section::before {
    width: 400px; height: 400px;
    background: var(--green);
    opacity: 0.08;
    top: 30%; left: 10%;
  }
  .process-section::after {
    width: 350px; height: 350px;
    background: var(--gold);
    opacity: 0.05;
    bottom: 20%; right: 8%;
  }
  .process-section h2 { color: white; position: relative; }
  .process-section .section-head { position: relative; }
  .process-section .section-head p { color: rgba(255,255,255,0.6); }

  .process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }
  @media (max-width: 760px) { .process-flow { grid-template-columns: 1fr 1fr; } }

  .ps-step {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .ps-step:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(20,168,0,0.3);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px -10px rgba(20,168,0,0.15);
  }
  .ps-num {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
    line-height: 1;
    text-shadow: 0 0 16px rgba(31,189,10,0.3);
  }
  .ps-step h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .ps-step p {
    color: rgba(255,255,255,0.58);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* === WORK GALLERY === */
  .work-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .work-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.35s ease;
    box-shadow: 0 14px 40px -20px rgba(0,30,0,0.18);
  }
  .work-card:hover { transform: translateY(-4px); }
  .wk-1 { grid-column: span 4; aspect-ratio: 16/10; }
  .wk-2 { grid-column: span 2; aspect-ratio: 4/5; }
  .wk-3 { grid-column: span 2; aspect-ratio: 4/5; }
  .wk-4 { grid-column: span 2; aspect-ratio: 1/1; }
  .wk-5 { grid-column: span 2; aspect-ratio: 1/1; }

  @media (max-width: 760px) {
    .wk-1, .wk-2, .wk-3, .wk-4, .wk-5 { grid-column: span 6; aspect-ratio: 16/10; }
  }

  .wk-visual { position: absolute; inset: 0; }
  .wk-1 .wk-visual { background: linear-gradient(135deg, #2A3A2A 0%, #0B130B 100%); }
  .wk-2 .wk-visual { background: linear-gradient(160deg, #1FBD0A 0%, #0F4D0F 100%); }
  .wk-3 .wk-visual { background: linear-gradient(160deg, #1A2D1A 0%, #060B06 100%); }
  .wk-4 .wk-visual { background: linear-gradient(160deg, #E5B547 0%, #8C6818 100%); }
  .wk-5 .wk-visual { background: linear-gradient(135deg, #2A3A2A 0%, #060B06 100%); }

  .wk-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
  }
  .wk-2 .wk-content, .wk-5 .wk-content { color: white; }
  .wk-4 .wk-content { color: var(--bg); }
  .wk-title {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .wk-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .wk-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 6px 8px 6px 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .wk-2 .wk-foot, .wk-5 .wk-foot {
    background: rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .wk-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    opacity: 0.85;
  }
  .wk-arrow {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: white;
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -2px rgba(0,0,0,0.4);
  }
  .wk-3 .wk-arrow { background: var(--green); color: white; }
  .wk-4 .wk-arrow { background: var(--bg); color: white; }

  /* === FOUNDER PULL QUOTE === */
  .pull-quote-section {
    padding: clamp(56px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
  }
  .pull-quote-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.05;
    filter: blur(120px);
    top: 30%; left: 15%;
    pointer-events: none;
  }
  .pull-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 760px) { .pull-quote-grid { grid-template-columns: 1fr; gap: 40px; } }

  .pq-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(0,12,0,0.62) 0%, rgba(0,12,0,0.10) 26%, rgba(0,12,0,0.12) 55%, rgba(0,15,0,0.80) 100%), url('assets/img/pf-alipio.jpg') center top / cover no-repeat;
    background-color: #001E00;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.6),
      0 0 80px -20px rgba(31,189,10,0.4);
  }
  .pq-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(31,189,10,0.14), transparent 55%);
  }
  .pq-img-mark {
    position: absolute;
    top: 32px; left: 32px;
    color: white;
    z-index: 2;
  }
  .pq-img-mark .pim-1 {
    font-family: 'Instrument Serif';
    font-style: italic;
    font-size: 3rem;
    line-height: 1;
    display: block;
    text-shadow: 0 0 20px rgba(31,189,10,0.3);
  }
  .pq-img-mark .pim-2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-top: 8px;
    display: block;
  }
  .pq-img-footer {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    z-index: 2;
    background: rgba(6, 12, 6, 0.66);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px -22px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .pq-img-footer .pqf-text { flex: 1; min-width: 0; }
  .pq-img-footer .pqf-text strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .pq-img-footer .pqf-text small {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.005em;
  }
  .pq-img-footer .pqf-rate {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #04210a;
    padding: 9px 15px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1;
    box-shadow: 0 6px 18px -6px rgba(31,189,10,0.55);
  }
  .pq-img-footer .pqf-rate i { font-size: 0.95rem; }
  @media (max-width: 420px) {
    .pq-img-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  .pq-content .pq-tag {
    display: inline-block;
    margin-bottom: 20px;
  }
  .pq-content blockquote {
    font-family: 'Hanken Grotesk';
    font-weight: 400;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .pq-content blockquote::before {
    content: '"';
    font-family: 'Instrument Serif';
    font-style: italic;
    color: var(--green);
    font-size: 1.2em;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 4px;
    text-shadow: 0 0 16px rgba(31,189,10,0.25);
  }
  .pq-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .stack-chip {
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    color: var(--ink-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }

  /* === PRICING === */
  .pricing-section {
    padding: clamp(56px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
  }
  .pricing-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.05;
    filter: blur(120px);
    top: 35%; right: -50px;
    pointer-events: none;
  }
  .pricing-section::after {
    content: '';
    position: absolute;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.04;
    filter: blur(120px);
    bottom: 20%; left: -50px;
    pointer-events: none;
  }
  .toggle {
    display: inline-flex;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 50px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 14px -4px rgba(0,0,0,0.4);
  }
  .toggle button {
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--ink-2);
    font-family: 'Hanken Grotesk';
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .toggle button.active {
    background: var(--green);
    color: white;
    box-shadow: 0 3px 10px -4px rgba(31,189,10,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .toggle-tag {
    margin-left: 6px;
    font-size: 0.68rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 2px 7px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
  }
  .toggle button:not(.active) .toggle-tag { background: rgba(31,189,10,0.2); color: var(--green); }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
  }
  @media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

  .price-card {
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 14px 40px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .price-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05), 0 0 24px -10px rgba(31,189,10,0.15);
  }
  .price-card.featured {
    background: rgba(18, 50, 18, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: white;
    border-color: rgba(31, 189, 10, 0.35);
    box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 28px -15px rgba(31,189,10,0.15);
    overflow: hidden;
  }
  .price-card.featured::before {
    content: '';
    position: absolute;
    top: -40%; right: -40%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.12;
    filter: blur(60px);
  }
  .price-card.featured > * { position: relative; }

  .featured-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--green);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 4px 14px -4px rgba(31,189,10,0.4);
    z-index: 2;
  }
  .price-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .price-card.featured .price-tier { color: rgba(255,255,255,0.55); }

  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
  }
  .price-currency {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--muted);
  }
  .price-card.featured .price-currency { color: rgba(255,255,255,0.55); }
  .price-num {
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
  }
  .price-card.featured .price-num {
    color: white;
    text-shadow: 0 0 20px rgba(31,189,10,0.22);
  }
  .price-per {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
  }
  .price-card.featured .price-per { color: rgba(255,255,255,0.55); }

  .price-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
  }
  .price-features li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.92rem;
    color: var(--ink-2);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
  }
  .price-card.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
  }
  .price-features li:last-child { border-bottom: none; }
  .check-mark {
    width: 17px; height: 17px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 0 8px rgba(31,189,10,0.3);
  }

  /* === TESTIMONIALS === */
  .testimonials-section {
    position: relative;
    overflow: hidden;
  }
  .testimonials-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.04;
    filter: blur(120px);
    top: 30%; right: -50px;
    pointer-events: none;
  }
  .test-marquee-wrap {
    overflow: hidden;
    padding: 16px 0;
    position: relative;
  }
  .test-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: testScroll 70s linear infinite;
  }
  .test-track:hover { animation-play-state: paused; }
  @keyframes testScroll {
    to { transform: translateX(-50%); }
  }
  .test-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 26px;
    width: 360px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .test-card .stars {
    color: var(--gold);
    font-size: 0.92rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 4px rgba(212,164,55,0.18));
  }
  .test-card .quote {
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .test-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .test-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(31,189,10,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Hanken Grotesk';
    font-weight: 700;
    color: var(--green);
    font-size: 0.95rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .test-name { font-weight: 700; color: var(--ink); font-size: 0.93rem; }
  .test-co { font-size: 0.8rem; color: var(--muted); font-family: 'JetBrains Mono'; }
  .test-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(31,189,10,0.12);
    color: var(--green);
    padding: 3px 8px;
    border-radius: 999px;
    font-family: 'JetBrains Mono';
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: 6px;
  }

  /* === FAQ === */
  .faq-grid {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 16px 32px;
    box-shadow: 0 20px 50px -25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    cursor: pointer;
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: 'Hanken Grotesk';
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .faq-q .toggle-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.25s;
  }
  .faq-item.open .toggle-icon {
    background: var(--green);
    color: white;
    transform: rotate(45deg);
    border-color: var(--green);
    box-shadow: 0 0 12px rgba(31,189,10,0.3);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin 0.35s ease;
    color: var(--ink-2);
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .faq-item.open .faq-a {
    max-height: 320px;
    margin-top: 14px;
  }

  /* === CTA - heavy dark glassmorphism === */
  .cta-section {
    background: var(--bg-elev);
    padding: clamp(64px, 8vw, 96px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .cta-section::before,
  .cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
  }
  .cta-section::before {
    width: 600px; height: 600px;
    background: var(--green);
    opacity: 0.35;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-section::after {
    width: 400px; height: 400px;
    background: var(--gold);
    opacity: 0.15;
    bottom: -100px; right: -50px;
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 70px 40px;
    max-width: 880px;
    margin: 0 auto;
    box-shadow:
      0 30px 80px -20px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .cta-section .upwork-badge {
    margin-bottom: 24px;
  }
  .cta-section h2 {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    max-width: 18ch;
    margin: 0 auto 22px;
    color: white;
  }
  .cta-section h2 .italic-accent {
    color: var(--green);
    text-shadow: 0 0 20px rgba(20,168,0,0.22);
  }
  .cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 50ch;
    margin: 0 auto 36px;
  }
  .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .cta-meta {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
  }

  /* === FOOTER === */
  footer {
    background: var(--bg);
    color: var(--ink);
    padding: 80px 0 36px;
    border-top: 1px solid var(--line);
    position: relative;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
  .footer-brand .brand { margin-bottom: 18px; }
  .footer-brand p {
    color: var(--muted);
    max-width: 32ch;
    font-size: 0.94rem;
    margin-bottom: 20px;
    line-height: 1.55;
  }
  .footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

/* ===== portfolio carousel styles (was #pf-styles) ===== */
  #work .pf-bleed{position:relative;width:100vw;margin-left:50%;transform:translateX(-50%);margin-top:44px;--gap:24px;--cols:3}
  #work .pf-stage{overflow:hidden;padding:6px clamp(20px,4vw,64px) 4px}
  #work .pf-track{display:flex;gap:var(--gap);transition:transform .6s cubic-bezier(.22,.72,.2,1);will-change:transform}
  #work .pf-card{
    flex:0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
    position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:3/2;
    background:var(--bg-elev);box-shadow:var(--glass-shadow);
    border:1px solid var(--glass-border);transition:transform .4s ease,border-color .4s,box-shadow .4s;
  }
  #work .pf-card:hover{transform:translateY(-6px);border-color:rgba(31,189,10,.4);box-shadow:var(--glass-shadow),0 0 50px -16px rgba(31,189,10,.35)}
  #work .pf-shot{position:absolute;inset:0}
  #work .pf-shot img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block;transition:transform .7s cubic-bezier(.22,.72,.2,1)}
  #work .pf-card:hover .pf-shot img{transform:scale(1.05)}
  #work .pf-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(6,11,6,.92) 0%,rgba(6,11,6,.4) 30%,rgba(6,11,6,0) 56%)}
  #work .pf-meta{position:absolute;left:16px;right:16px;bottom:16px;z-index:2;padding:16px 18px;border-radius:var(--radius);background:var(--glass-bg-strong);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border:1px solid var(--glass-border)}
  #work .pf-tag{font-family:'JetBrains Mono',monospace;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--green);display:inline-block;margin-bottom:7px}
  #work .pf-name{font-family:'Instrument Serif',serif;font-weight:400;font-size:1.35rem;line-height:1.05;color:#fff;margin-bottom:11px}
  #work .pf-foot{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--glass-border);padding-top:11px}
  #work .pf-link{font-family:'JetBrains Mono',monospace;font-size:.74rem;color:var(--muted)}
  #work .pf-arrow{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:var(--green-pale);border:1px solid rgba(31,189,10,.3);color:var(--green);font-size:.85rem;transition:background .3s,color .3s}
  #work .pf-card:hover .pf-arrow{background:var(--green);color:var(--bg)}
  #work .pf-ctrl{display:flex;align-items:center;gap:18px;padding:22px clamp(20px,4vw,64px) 0;max-width:1280px;margin:0 auto}
  #work .pf-nav{width:48px;height:48px;border-radius:50%;cursor:pointer;background:var(--glass-bg);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--glass-border);color:var(--ink);font-size:1.1rem;display:grid;place-items:center;transition:background .25s,border-color .25s,transform .2s}
  #work .pf-nav:hover{background:var(--glass-bg-strong);border-color:rgba(31,189,10,.45)}
  #work .pf-nav:active{transform:scale(.93)}
  #work .pf-nav[disabled]{opacity:.3;cursor:default;pointer-events:none}
  #work .pf-bar{flex:1;height:3px;border-radius:3px;background:rgba(255,255,255,.08);overflow:hidden}
  #work .pf-bar span{display:block;height:100%;width:33%;background:var(--green);border-radius:3px;transition:width .45s ease,margin-left .45s ease}
  @media(max-width:960px){#work .pf-bleed{--cols:2;--gap:18px}}
  @media(max-width:768px){#work .pf-bleed{--cols:1;--gap:16px}}

/* ===== hero aurora keyframes (was #hero-aurora) ===== */
  @media (prefers-reduced-motion: no-preference){
    .hero-atmosphere .blob-h1{animation:auroraA 15s ease-in-out infinite alternate;will-change:transform,opacity}
    .hero-atmosphere .blob-h2{animation:auroraB 19s ease-in-out infinite alternate;will-change:transform,opacity}
    .hero-atmosphere .blob-h3{animation:auroraC 12s ease-in-out infinite alternate;will-change:transform,opacity}
  }
  @keyframes auroraA{
    0%{transform:translate(0,0) scale(.95);opacity:.05}
    50%{transform:translate(130px,90px) scale(1.28);opacity:.30}
    100%{transform:translate(220px,160px) scale(1.34);opacity:.07}
  }
  @keyframes auroraB{
    0%{transform:translate(0,0) scale(1.05);opacity:.04}
    50%{transform:translate(-120px,70px) scale(.9);opacity:.24}
    100%{transform:translate(-200px,135px) scale(.82);opacity:.05}
  }
  @keyframes auroraC{
    0%{transform:translate(0,0) scale(.9);opacity:.04}
    50%{transform:translate(90px,-70px) scale(1.2);opacity:.32}
    100%{transform:translate(150px,-120px) scale(1.3);opacity:.06}
  }

/* ===== Blog templates (reuses design tokens) ===== */
.blog-wrap { max-width: 1280px; margin: 0 auto; padding: 160px 28px 120px; position: relative; }
.blog-head { margin-bottom: 56px; max-width: 760px; }
.blog-head h1 { font-family: 'Instrument Serif', serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; color: var(--ink); margin: 14px 0 16px; font-weight: 400; }
.blog-head p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.7; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px; }
.post-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--glass-shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s ease, border-color .35s ease; }
.post-card:hover { transform: translateY(-4px); border-color: var(--green-soft); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-elev); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.post-card:hover .thumb img { transform: scale(1.04); }
.post-card .pc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .pc-meta { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.post-card h2, .post-card h3 { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.3rem; line-height: 1.3; color: var(--ink); font-weight: 600; }
.post-card h2 a, .post-card h3 a { color: inherit; text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--green); }
.post-card p { color: var(--ink-2); font-size: .95rem; line-height: 1.65; flex: 1; }
.post-card .pc-more { color: var(--green); font-weight: 600; font-size: .9rem; text-decoration: none; margin-top: 4px; }
.single-post { max-width: 800px; margin: 0 auto; }
.single-post .sp-cat { font-family: 'JetBrains Mono', monospace; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.single-post h1 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; color: var(--ink); margin: 14px 0 18px; }
.single-post .sp-meta { color: var(--muted); font-size: .9rem; margin-bottom: 30px; }
.single-post .sp-hero { width: 100%; border-radius: var(--radius-lg); margin: 0 0 38px; border: 1px solid var(--glass-border); }
.single-post .sp-content { color: var(--ink-2); font-size: 1.08rem; line-height: 1.85; }
.single-post .sp-content h2, .single-post .sp-content h3 { color: var(--ink); font-family: 'Hanken Grotesk', sans-serif; margin: 2em 0 .6em; }
.single-post .sp-content a { color: var(--green); }
.single-post .sp-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.single-post .sp-content blockquote { border-left: 3px solid var(--green); padding-left: 22px; margin: 1.6em 0; color: var(--ink); font-style: italic; }
.single-post .sp-content ul, .single-post .sp-content ol { padding-left: 1.4em; }
.sp-tags { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }
.sp-tags a { font-size: .8rem; color: var(--ink-2); border: 1px solid var(--glass-border); border-radius: 999px; padding: 6px 14px; text-decoration: none; }
.sp-tags a:hover { border-color: var(--green); color: var(--green); }
.blog-pager { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; }
.blog-pager a { color: var(--ink); text-decoration: none; border: 1px solid var(--glass-border); border-radius: 999px; padding: 12px 24px; font-size: .9rem; transition: border-color .3s; }
.blog-pager a:hover { border-color: var(--green); color: var(--green); }
.blog-empty { color: var(--ink-2); font-size: 1.1rem; }
.page-body { max-width: 800px; margin: 0 auto; color: var(--ink-2); font-size: 1.05rem; line-height: 1.8; }
.page-body h1 { font-family: 'Instrument Serif', serif; font-weight: 400; color: var(--ink); font-size: clamp(2rem,4vw,3rem); margin-bottom: 24px; }
@media (max-width: 640px){ .blog-wrap{ padding: 130px 18px 90px; } .post-grid{ grid-template-columns: 1fr; } }

/* =====================================================================
   DESIGN TOKENS — Tailwind-aligned. Single source of truth.
   Rule: never hardcode colours/spacing/radii in templates or CSS.
   Always reference these. Breakpoints can't be CSS vars (media queries
   don't read them) — use the Tailwind px values listed below verbatim.
   ===================================================================== */
:root {
  /* Spacing scale (Tailwind: 0.25rem step) */
  --space-1: .25rem;  --space-2: .5rem;   --space-3: .75rem;  --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem;  --space-8: 2rem;    --space-10: 2.5rem;
  --space-12: 3rem;   --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* Container max-widths (Tailwind breakpoints) */
  --container-sm: 640px;  --container-md: 768px;  --container-lg: 1024px;
  --container-xl: 1280px; --container-2xl: 1536px;
  --container: var(--container-xl);          /* default site container */
  --gutter: clamp(1rem, 4vw, 2rem);          /* fluid page padding */

  /* Radii (extends --radius / --radius-lg already defined above) */
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Motion */
  --transition: 180ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 320ms cubic-bezier(.4,0,.2,1);

  /* Z-index scale */
  --z-base: 1; --z-sticky: 100; --z-nav: 200; --z-overlay: 900; --z-modal: 1000;

  /* Fluid type helpers */
  --text-fluid-h1: clamp(2.2rem, 5vw, 4rem);
  --text-fluid-h2: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* Tailwind breakpoint convention (hardcode these px in @media):
   sm 640 · md 768 · lg 1024 · xl 1280 · 2xl 1536 — mobile-first (min-width). */

/* ===== Cleanup batch (2026-05-16): logo, team photos, hero, Calendly modal ===== */

/* (Old masked .brand-mark logo restored — .brand-logo image swap reverted) */

/* Skip-to-content link (visible on keyboard focus) */
.skip-link {
  position: absolute; left: var(--space-4); top: -100px;
  z-index: var(--z-modal);
  background: var(--green); color: #04210a;
  font-weight: 700; padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill); text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: var(--space-4); outline: 2px solid var(--ink); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* Smooth in-page nav + sticky-nav anchor offset */
html { scroll-behavior: smooth; }
:where(section[id], header[id], #main) { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Process step icons */
.ps-step .ps-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: var(--space-3);
  border-radius: var(--radius-pill);
  background: var(--green-pale); color: var(--green);
  font-size: 1.4rem; border: 1px solid var(--green-soft);
}
.ps-step .ps-num { opacity: .55; }

/* Profile-card avatar uses the circular logo image */
.pc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.pc-avatar:has(img) { background: none; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5), 0 0 40px -8px rgba(31,189,10,0.4); }

/* Team member photos fill the circular avatar */
.member-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  display: block;
}
.member-avatar:has(img) { background: none; }

/* Hero headline — sized so the <br> yields exactly two lines within the 920px column */
.hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.12; }
.hero h1 br { display: block; }
@media (max-width: 600px) { .hero h1 { font-size: clamp(1.8rem, 7vw, 2.2rem); text-wrap: balance; } }

/* Calendly modal */
.agw-modal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.agw-modal.is-open { display: flex; }
.agw-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 8, 0, 0.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.agw-modal__dialog {
  position: relative; z-index: 1;
  width: min(560px, 100%); max-height: 92vh; overflow: auto;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow), var(--green-glow);
  padding: var(--space-6);
}
.agw-modal__head { margin-bottom: var(--space-4); }
.agw-modal__head h3 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink);
  margin-top: var(--space-2);
}
.agw-modal__close {
  position: absolute; top: var(--space-3); right: var(--space-3);
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--glass-border); border-radius: var(--radius-pill);
  background: var(--bg-card); color: var(--ink); cursor: pointer;
  font-size: 1.1rem; transition: border-color var(--transition), color var(--transition);
}
.agw-modal__close:hover { border-color: var(--green); color: var(--green); }
@media (max-width: 640px) { .agw-modal__dialog { padding: var(--space-4); } }

/* Work card: make the image link actually clickable + de-blue the title link */
#work .pf-card { cursor: pointer; }
#work .pf-card::after { pointer-events: none; }
#work .pf-shot { z-index: 1; }
#work .pf-meta { pointer-events: none; }
#work .pf-meta a, #work .pf-arrow { pointer-events: auto; }
#work .pf-name a { color: inherit; text-decoration: none; }
#work .pf-name a:hover { color: var(--green); }

/* Slack-style image skeleton: grey shimmer until loaded, then fade in */
@keyframes agw-shimmer { 0% { background-position: -480px 0; } 100% { background-position: 480px 0; } }
#work .pf-shot { background: #0f180f; }
#work .pf-shot::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.03) 28%, rgba(255,255,255,.10) 50%, rgba(255,255,255,.03) 72%);
  background-size: 480px 100%;
  animation: agw-shimmer 1.4s ease-in-out infinite;
}
#work .pf-shot.is-loaded::before { display: none; }
#work .pf-shot img { position: relative; z-index: 1; }
img.img-fade { opacity: 0; transition: opacity .55s ease; }
img.img-fade.is-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) { #work .pf-shot::before { animation: none; } img.img-fade { transition: none; } }

/* Service cards are booking triggers */
.service-card.js-calendly { cursor: pointer; }
.service-card.js-calendly:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* Work cards on mobile: stack image (visible) above a solid meta panel */
@media (max-width: 768px) {
  #work .pf-card { aspect-ratio: auto; height: auto; display: flex; flex-direction: column; }
  #work .pf-shot {
    position: relative; display: block; inset: auto;
    aspect-ratio: 16 / 10; width: 100%; overflow: hidden; flex: 0 0 auto;
  }
  #work .pf-shot img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
  }
  #work .pf-card::after { display: none; }
  #work .pf-meta {
    position: relative; left: auto; right: auto; bottom: auto;
    border-radius: 0; border: none; border-top: 1px solid var(--glass-border);
    background: var(--glass-bg); -webkit-backdrop-filter: none; backdrop-filter: none;
  }
}

/* Subtle floating WhatsApp button */
.wa-float {
  position: fixed; right: clamp(16px, 4vw, 28px); bottom: clamp(16px, 4vw, 28px);
  z-index: var(--z-sticky);
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--green);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6), 0 0 0 0 rgba(31,189,10,0.4);
  font-size: 1.5rem; text-decoration: none;
  transition: transform var(--transition), color var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: translateY(-3px); color: #25D366; box-shadow: 0 14px 34px -10px rgba(0,0,0,0.65), 0 0 22px -6px rgba(37,211,102,0.5); }
.wa-float:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
@media (max-width: 560px) { .wa-float { width: 48px; height: 48px; font-size: 1.35rem; } }

/* Legal popup (Privacy / Terms) body */
.legal-body { color: var(--ink-2); font-size: 0.92rem; line-height: 1.65; }
.legal-body .legal-meta { color: var(--muted); font-size: 0.78rem; margin-bottom: var(--space-5); }
.legal-body h4 { color: var(--ink); font-size: 0.98rem; font-weight: 700; margin: var(--space-5) 0 var(--space-2); }
.legal-body p { margin-bottom: var(--space-3); }
.legal-body ul { margin: 0 0 var(--space-3) 1.1rem; list-style: disc; }
.legal-body li { margin-bottom: var(--space-2); }
.legal-body a { color: var(--green); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
#agwPrivacy .agw-modal__dialog, #agwTerms .agw-modal__dialog { width: min(640px, 100%); }
