    /* ============================================
   CSS VARIABLES & RESET
   ============================================ */
    :root {
      --red: #C92434;
      --red-dark: #A31E2C;
      --black: #000000;
      --near-black: #111111;
      --near-black-2: #1A1A1A;
      --cream: #EDEAE5;
      --white: #FFFFFF;
      --dark-gray: #2C2C2C;
      --mid-gray: #666666;
      --light-gray: #F5F4F0;
      --border: #E0DDD8;
      --border-dark: #333333;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', Inter, system-ui, sans-serif;
      font-size: 17px;
      line-height: 1.7;
      color: var(--dark-gray);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ============================================
   BUTTONS
   ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--red-dark);
    }

    .btn-ghost-white {
      background: transparent;
      border: 1px solid var(--white);
      color: var(--white);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-ghost-red {
      background: transparent;
      border: 2px solid var(--red);
      color: var(--red);
      padding: 12px 28px;
    }

    .btn-ghost-red:hover {
      background: var(--red);
      color: var(--white);
    }

    .btn-dark {
      background: #000000;
      color: var(--white);
    }

    .btn-dark:hover {
      background: #222222;
    }

    .btn-white-solid {
      background: var(--white);
      color: var(--red);
      border: none;
    }

    .btn-white-solid:hover {
      background: #f0f0f0;
    }

    .btn-white-outline {
      background: transparent;
      border: 2px solid var(--white);
      color: var(--white);
    }

    .btn-white-outline:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    /* ============================================
   NAVBAR
   ============================================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: transparent;
      transition: background 0.25s ease, box-shadow 0.25s ease;
    }

    .navbar.scrolled {
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .navbar-logo {
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      transition: color 0.25s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .navbar-logo .logo-sq {
      width: 32px;
      height: 32px;
      background: var(--red);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .navbar-links a {
      font-size: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      transition: all 0.2s ease;
      position: relative;
    }

    .navbar-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .navbar-links a:hover {
      opacity: 0.7;
    }

    .navbar-links a.active::after {
      transform: scaleX(1);
    }

    .navbar-ctas {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .navbar-ctas .btn {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: transparent;
      box-shadow: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
    }

    .navbar.scrolled .hamburger span {
      background: var(--white);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--near-black);
      z-index: 9999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 24px;
      font-weight: 600;
      color: var(--white);
      text-align: center;
    }

    .mobile-menu .mobile-ctas {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 280px;
      margin-top: 16px;
    }

    .mobile-menu .mobile-ctas .btn {
      width: 100%;
      justify-content: center;
    }

    .mobile-close {
      position: absolute;
      top: 24px;
      right: 40px;
      font-size: 28px;
      color: var(--white);
      cursor: pointer;
      background: none;
      border: none;
    }

    /* ============================================
   SECTION COMMON
   ============================================ */
    .section {
      padding: 96px 0;
    }

    .eyebrow {
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--red);
      margin-bottom: 16px;
    }

    .section-h2 {
      font-size: clamp(30px, 4vw, 40px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--black);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--mid-gray);
      /* max-width: 600px; */
      margin-bottom: 56px;
      line-height: 1.6;
    }

    img[src$=".svg"] {
      width: auto;
      height: auto;
    }

    /* ============================================
   HERO — SECTION 01
   ============================================ */
    .hero {
      background: radial-gradient(ellipse at center, #1A1A1A 0%, #0D0D0D 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Subtle grid texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201, 36, 52, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 36, 52, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Red glow orb */
    .hero::after {
      content: '';
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(201, 36, 52, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .hero-eyebrow {
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--red);
      margin-bottom: 8px;
    }

    .hero h1 {
      font-size: clamp(40px, 7vw, 72px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 400;
      color: #AAAAAA;
      max-width: 680px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

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

    /* ============================================
   STATS BLOCK
   ============================================ */
    .sq-hero-stats {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 0;
      margin: 48px auto 0;
      max-width: 560px;
      animation: fadeInUp 0.8s ease 0.3s both;
    }

    .sq-stat {
      flex: 1;
      text-align: center;
      padding: 0 40px;
    }

    .sq-stat:first-child {
      border-right: 1px solid #333333;
    }

    .sq-stat-number {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(48px, 6vw, 72px);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .sq-stat-label {
      font-size: 13px;
      color: #888888;
      line-height: 1.4;
      margin-top: 8px;
      max-width: 160px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================
   TYPEWRITER DEMO CARD
   ============================================ */
    .sq-demo-card {
      background: #1A1A1A;
      border: 1px solid #333333;
      border-top: 2px solid var(--red);
      border-radius: 12px;
      padding: 28px 32px;
      max-width: 680px;
      margin: 40px auto 0;
      font-family: 'DM Sans', sans-serif;
      text-align: left;
      animation: fadeInUp 0.8s ease 0.5s both;
    }

    .sq-demo-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 500;
      margin-bottom: 14px;
    }

    .sq-query-line {
      font-size: 16px;
      color: var(--white);
      font-weight: 500;
      line-height: 1.5;
      /* min-height: 50px; */
    }

    .sq-cursor {
      display: inline-block;
      width: 2px;
      height: 18px;
      background: var(--red);
      vertical-align: middle;
      margin-left: 2px;
      animation: blink 0.7s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    .sq-answer {
      font-size: 14px;
      color: #888888;
      line-height: 1.6;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #2A2A2A;
      opacity: 0;
      transition: opacity 0.4s ease;
      min-height: 44px;
      font-family: 'DM Mono', 'Courier New', monospace;
    }

    .sq-try-link {
      display: inline-block;
      margin-top: 16px;
      font-size: 13px;
      color: var(--red);
      font-weight: 500;
      text-decoration: none;
    }

    .sq-try-link:hover {
      text-decoration: underline;
    }

    /* ============================================
   TRUST STRIP
   ============================================ */
    .trust-strip {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
      animation: fadeInUp 0.8s ease 0.7s both;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #666666;
    }

    .trust-item .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #444;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border: 1px solid #333;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: #888;
    }

    .trust-badge svg {
      width: 14px;
      height: 14px;
    }

    /* ============================================
   SECTION 02 — PROBLEM
   ============================================ */
    .section-problem {
      background: var(--cream);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 0;
    }

    .problem-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .problem-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .problem-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .problem-card:hover::before {
      transform: scaleX(1);
    }

    .problem-card-num {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--red);
      /* margin-bottom: 12px; */
    }

    .problem-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .problem-card p {
      font-size: 15px;
      color: var(--dark-gray);
      line-height: 1.65;
    }

    /* ============================================
   SECTION 03 — PRODUCT MODULES
   ============================================ */
    .section-product {
      background: var(--white);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 36px 32px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    .product-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 22px;
    }

    /* .product-icon.red {
      background: rgba(201, 36, 52, 0.1);
    }

    .product-icon.dark {
      background: rgba(0, 0, 0, 0.07);
    } */

    .product-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 14px;
    }

    .product-card p {
      font-size: 15px;
      color: var(--dark-gray);
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .product-bullets {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }

    .product-bullet {
      font-size: 12px;
      font-weight: 500;
      background: var(--light-gray);
      color: var(--dark-gray);
      padding: 4px 10px;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .product-available {
      font-size: 12px;
      color: var(--mid-gray);
      padding-top: 16px;
      border-top: 1px solid var(--border);
      margin-bottom: 0;
    }

    .product-available p {
      font-size: 12px;
      color: var(--mid-gray);
      padding-top: 16px;
      margin-bottom: 0;
    }

    .product-available strong {
      color: var(--dark-gray);
    }

    /* ============================================
   SECTION 04 — AI INTEGRATIONS
   ============================================ */
    .section-integrations {
      background: var(--near-black);
    }

    .section-integrations .section-h2 {
      color: var(--white);
    }

    .section-integrations .section-sub {
      color: #AAAAAA;
    }

    .section-integrations .eyebrow {
      color: var(--red);
    }

    .integration-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      /* margin-bottom: 40px; */
    }

    .integration-tile {
      background: var(--near-black-2);
      border: 1px solid var(--border-dark);
      border-top: 2px solid var(--red);
      border-radius: 12px;
      padding: 28px 32px;
      transition: all 0.2s ease;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .integration-tile:hover {
      transform: translateY(-2px);
      border-top-color: var(--red);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    /* .integration-tile.coming-soon {
      opacity: 0.65;
    } */

    .integration-logo {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: #2A2A2A;
      border: 1px solid #3A3A3A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .integration-info {
      flex: 1;
    }

    .integration-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .integration-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
    }

    .badge {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }

    .badge-live {
      background: #1A4A1A;
      color: #4ADE80;
    }

    .badge-soon {
      background: #2A2A2A;
      color: #666666;
    }

    .integration-desc {
      font-size: 14px;
      color: #888888;
      line-height: 1.55;
    }

    .integration-scope-note {
      background: rgba(201, 36, 52, 0.08);
      border: 1px solid rgba(201, 36, 52, 0.2);
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 14px;
      color: #AAAAAA;
      line-height: 1.6;
    }

    .integration-scope-note strong {
      color: var(--white);
    }

    /* ============================================
   SECTION 05 — WHY SHERLOCQ
   ============================================ */
    .section-why {
      background: var(--cream);
    }

    .pillars-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .pillar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.2s ease;
      text-align: center;
    }

    .pillar-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .pillar-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .pillar-icon img {
      margin-left: auto;
      margin-right: auto;
    }

    .pillar-card h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .pillar-card p {
      font-size: 13px;
      color: var(--dark-gray);
      line-height: 1.6;
    }

    /* ============================================
   SECTION 06 — AUDIENCES
   ============================================ */
    .section-audiences {
      background: var(--white);
    }

    .audiences-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .audience-tile {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
      transition: all 0.2s ease;
    }

    .audience-tile:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      border-color: var(--red);
    }

    .audience-icon {
      font-size: 24px;
      margin-bottom: 14px;
    }

    .audience-tile h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
    }

    .audience-tile p {
      font-size: 14px;
      color: var(--dark-gray);
      line-height: 1.6;
    }

    /* ============================================
   SECTION 07 — ADVISORS
   ============================================ */
    .section-advisors {
      background: var(--near-black);
    }

    .section-advisors .section-h2 {
      color: var(--white);
    }

    .section-advisors .section-sub {
      color: #AAAAAA;
    }

    .section-advisors .eyebrow {
      color: var(--red);
    }

    .founder {
      margin-bottom: 24px;
    }

    .advisors-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 24px;
    }

    .advisor-card {
      background: var(--near-black-2);
      border: 1px solid var(--border-dark);
      border-top: 2px solid var(--red);
      border-radius: 12px;
      padding: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: all 0.2s ease;
    }

    .advisor-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }

    .advisor-photo {
      width: 136px;
      height: 136px;
      border-radius: 10px;
      background: #2A2A2A;
      border: 2px solid #3A3A3A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
      font-size: 18px;
      letter-spacing: -0.01em;
      filter: grayscale(0.2);
      overflow: hidden;
    }

    .advisor-photo img {
      object-fit: cover;
    }

    .advisor-header {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .advisor-header h4 {
      margin: 0;
    }

    .social-media {
      display: flex;
      gap: 4px;
    }

    .social-media img {
      width: auto;
      height: 20px;
    }

    .advisor-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
    }

    .advisor-info .advisor-title {
      font-size: 12px;
      font-weight: 500;
      color: var(--red);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .advisor-info p {
      font-size: 14px;
      color: #888888;
      line-height: 1.6;
    }

    .advisors-secondary {
      margin-top: 8px;
    }

    .advisors-secondary-label {
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .advisors-secondary-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .advisor-small {
      background: #161616;
      border: 1px solid #2A2A2A;
      border-radius: 10px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
    }

    .advisor-small-initials {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      background: #2A2A2A;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
      overflow: hidden;
    }

    .advisor-small-initials img {
      object-fit: cover;
    }

    .advisor-small h5 {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 2px;
    }

    .advisor-small p {
      font-size: 12px;
      color: #666;
    }

    /* ============================================
   SECTION 08 — PRICING
   ============================================ */
    .section-pricing {
      background: var(--cream);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    .pricing-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.2s ease;
      height: 100%;
    }

    .pricing-card:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .pricing-card.featured {
      border: 2px solid var(--red);
      border-top: 4px solid var(--red);
      padding-top: 34px;
      position: relative;
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 5px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .pricing-top {
      margin-bottom: 20px;
      min-height: 106px;
    }

    .pricing-plan {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mid-gray);
      margin-bottom: 8px;
    }

    .pricing-price {
      font-size: clamp(36px, 4vw, 48px);
      font-weight: 700;
      color: var(--black);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .pricing-price span {
      font-size: 20px;
    }

    .pricing-target {
      font-size: 14px;
      font-weight: 500;
    }

    .pricing-features {
      margin-bottom: 10px;
    }

    .pricing-features label {
      font-size: 14px;
      font-weight: 700;
    }

    .pricing-features ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-top: 4px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--dark-gray);
      position: relative;
      padding-left: 24px;
    }

    .pricing-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      width: 14px;
      height: 14px;
      background-image: url('/wp-content/uploads/2026/04/checksmall.svg');
      background-size: contain;
      background-repeat: no-repeat;
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
      margin-bottom: 20px;
    }

    .pricing-note {
      margin-top: 32px;
      text-align: center;
      font-size: 14px;
      color: var(--mid-gray);
      font-style: italic;
    }

    /* ============================================
   SECTION 09 — ABOUT & FOUNDER
   ============================================ */
    .section-about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      /* align-items: start; */
    }

    .founder-card {
      background: var(--near-black);
      border-radius: 16px;
      padding: 40px 32px;
      text-align: center;
      border: 1px solid #2A2A2A;
      border-top: 3px solid var(--red);
      height: 100%;
    }

    .founder-avatar {
      width: 190px;
      height: 190px;
      border-radius: 10px;
      background: #2A2A2A;
      border: 2px solid #3A3A3A;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
    }

    .founder-avatar img {
      object-fit: cover;
    }

    .founder-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .founder-card .founder-role {
      font-size: 13px;
      color: var(--red);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .founder-credentials {
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: left;
      margin-top: 60px;
      padding-top: 24px;
      border-top: 1px solid #2A2A2A;
    }

    .founder-cred {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #999;
      line-height: 1.5;
    }

    .founder-cred::before {
      content: '▸';
      color: var(--red);
      flex-shrink: 0;
      font-size: 10px;
      margin-top: 3px;
    }

    .about-content .section-h2 {
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 16px;
      color: var(--dark-gray);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .company-details {
      background: var(--light-gray);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px 28px;
    }

    .company-details h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mid-gray);
      margin-bottom: 16px;
    }

    .company-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 8px 16px;
      font-size: 14px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
    }

    .company-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .company-row dt {
      color: var(--mid-gray);
      font-weight: 500;
    }

    .company-row dd {
      color: var(--dark-gray);
    }

    /* ============================================
   SECTION 10 — PRESS
   ============================================ */
    .section-press {
      /* background: var(--cream); */
      text-align: center;
    }

    .press-placeholder {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 48px 40px;
      max-width: 600px;
      margin: 0 auto;
    }

    .press-placeholder .launch-date {
      font-size: 15px;
      color: var(--mid-gray);
      font-style: italic;
      margin-bottom: 0;
    }

    .press-upcoming {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }

    .press-pub {
      font-size: 12px;
      font-weight: 500;
      color: #999;
      padding: 6px 14px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--white);
    }

    /* ============================================
   SECTION 11 — CTA BAND
   ============================================ */
    .section-cta-band {
      background: var(--red);
      padding: 80px 40px;
      text-align: center;
    }

    .cta-band-h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .cta-band-sub {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 36px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    .cta-band-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============================================
   FOOTER
   ============================================ */
    .footer {
      background: var(--near-black);
      border-top: 3px solid var(--red);
      padding: 72px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid #222;
    }

    .footer-brand h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #AAAAAA;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 280px;
    }

    .footer-iso {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .iso-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border: 1px solid #3A3A3A;
      border-radius: 4px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: #AAAAAA;
      transition: color 0.2s ease;
    }

    .footer-col ul li a:hover {
      color: var(--white);
    }

    .footer-connect-email {
      font-size: 14px;
      color: var(--red);
      margin-bottom: 16px;
      display: block;
    }

    .footer-app-badges {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid #3A3A3A;
      border-radius: 8px;
      font-size: 13px;
      color: #AAAAAA;
      transition: all 0.2s ease;
    }

    .app-badge:hover {
      border-color: #666;
      color: var(--white);
    }

    .footer-social-icon {
      display: flex;
      gap: 12px;
    }

    .footer-linkedin {
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #AAAAAA;
      transition: color 0.2s ease;
    }

    .footer-linkedin:hover {
      color: var(--white);
    }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copyright {
      font-size: 13px;
      color: #666;
    }

    .footer-legal-links {
      display: flex;
      gap: 20px;
    }

    .footer-legal-links a {
      font-size: 13px;
      color: #666;
      transition: color 0.2s ease;
    }

    .footer-legal-links a:hover {
      color: #999;
    }

    /* ============================================
   ANIMATIONS
   ============================================ */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content {
      animation: fadeInUp 0.8s ease both;
    }

    /* ============================================
   RESPONSIVE
   ============================================ */
    @media (max-width: 1024px) {
      .pillars-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .advisor-photo {
        width: 95px;
        height: 95px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 24px;
      }

      .section {
        padding: 64px 0;
      }

      .navbar-inner {
        padding: 16px 24px;
      }

      .navbar-links,
      .navbar-ctas {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        padding: 120px 24px 64px;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

      .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }

      .sq-hero-stats {
        flex-direction: column;
        gap: 24px;
      }

      .sq-stat:first-child {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-bottom: 24px;
      }

      .problem-grid {
        grid-template-columns: 1fr;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }

      .integration-grid {
        grid-template-columns: 1fr;
      }

      .pillars-row {
        grid-template-columns: 1fr 1fr;
      }

      .audiences-grid {
        grid-template-columns: 1fr;
      }

      .advisors-grid {
        grid-template-columns: 1fr;
      }

      .advisors-secondary-row {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .section-h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .pillars-row {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 36px;
      }

      .advisor-card {
        flex-direction: column;
      }
    }

    /* ============================================
   COOKIE BANNER
   ============================================ */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--near-black);
      border-top: 1px solid #2A2A2A;
      padding: 16px 40px;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cookie-banner p {
      font-size: 13px;
      color: #AAAAAA;
      flex: 1;
      min-width: 200px;
    }

    .cookie-banner a {
      color: var(--red);
    }

    .cookie-banner-btns {
      display: flex;
      gap: 10px;
    }

    .cookie-banner.hidden {
      display: none;
    }

    .btn-cookie-accept {
      background: var(--red);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      padding: 9px 18px;
      border-radius: 5px;
      cursor: pointer;
      border: none;
      transition: background 0.2s;
    }

    .btn-cookie-accept:hover {
      background: var(--red-dark);
    }

    .btn-cookie-decline {
      background: transparent;
      color: #666;
      font-size: 13px;
      font-weight: 500;
      padding: 9px 18px;
      border-radius: 5px;
      cursor: pointer;
      border: 1px solid #333;
      transition: all 0.2s;
    }

    .btn-cookie-decline:hover {
      border-color: #555;
      color: #888;
    }

    /* Logo sq mark in footer */
    .logo-sq-sm {
      width: 24px;
      height: 24px;
      background: var(--red);
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 11px;
      font-weight: 700;
    }

    /* Legal page container */
    .legal-page {
      min-height: 100vh;
    }

    .legal-hero {
      background: radial-gradient(ellipse at center, #1A1A1A 0%, #0D0D0D 100%);
      text-align: center;
      color: var(--white);
      padding: 160px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(201, 36, 52, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 36, 52, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .legal-hero::after {
      content: '';
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(201, 36, 52, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .legal-hero h1 {
      font-size: clamp(40px, 7vw, 72px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--white);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .legal-hero .effective-date {
      font-size: 16px;
      color: #999;
      font-weight: 500;
    }

    /* Legal content section */
    .legal-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 40px 100px;
    }

    .legal-content h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--near-black);
      margin-top: 48px;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .legal-content h2:first-child {
      margin-top: 0;
    }

    .legal-content h3 {
      font-size: 24px;
      font-weight: 600;
      color: var(--dark-gray);
      margin-top: 36px;
      margin-bottom: 16px;
      letter-spacing: -0.01em;
      line-height: 1.4;
    }

    .legal-content h4 {
      font-size: 20px;
      font-weight: 600;
      color: var(--dark-gray);
      margin-top: 28px;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .legal-content p {
      font-size: 17px;
      line-height: 1.8;
      color: var(--dark-gray);
      margin-bottom: 20px;
    }

    .legal-content strong {
      font-weight: 600;
      color: var(--near-black);
    }

    .legal-content a {
      color: var(--red);
      text-decoration: underline;
      transition: color 0.2s ease;
    }

    .legal-content a:hover {
      color: var(--red-dark);
    }

    /* Lists */
    .legal-content ul,
    .legal-content ol {
      margin: 20px 0 24px 0;
      padding-left: 24px;
    }

    .legal-content ul {
      list-style-type: disc;
    }

    .legal-content ol {
      list-style-type: decimal;
    }

    .legal-content li {
      font-size: 17px;
      line-height: 1.8;
      color: var(--dark-gray);
      margin-bottom: 12px;
      padding-left: 8px;
    }

    .legal-content li::marker {
      color: var(--red);
      font-weight: 600;
    }

    .legal-content ul ul,
    .legal-content ol ol,
    .legal-content ul ol,
    .legal-content ol ul {
      margin: 12px 0;
    }

    /* Tables */
    .legal-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 32px 0;
      font-size: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .legal-content table thead {
      background: var(--light-gray);
    }

    .legal-content table th {
      padding: 16px;
      text-align: left;
      font-weight: 600;
      color: var(--near-black);
      border-bottom: 2px solid var(--border);
    }

    .legal-content table td {
      padding: 16px;
      border-bottom: 1px solid var(--border);
      color: var(--dark-gray);
      line-height: 1.6;
    }

    .legal-content table tr:last-child td {
      border-bottom: none;
    }

    .legal-content table tr:hover {
      background: var(--light-gray);
    }

    /* Blockquotes */
    .legal-content blockquote {
      margin: 28px 0;
      padding: 20px 24px;
      background: var(--light-gray);
      border-left: 4px solid var(--red);
      border-radius: 4px;
    }

    .legal-content blockquote p {
      margin-bottom: 0;
      font-style: italic;
      color: var(--mid-gray);
    }

    /* Code blocks */
    .legal-content code {
      padding: 2px 6px;
      background: var(--light-gray);
      border: 1px solid var(--border);
      border-radius: 3px;
      font-family: 'DM Mono', 'Courier New', monospace;
      font-size: 15px;
      color: var(--red);
    }

    .legal-content pre {
      margin: 24px 0;
      padding: 20px;
      background: var(--near-black);
      border-radius: 8px;
      overflow-x: auto;
    }

    .legal-content pre code {
      padding: 0;
      background: none;
      border: none;
      color: #4ADE80;
      font-size: 14px;
    }

    /* Dividers */
    .legal-content hr {
      margin: 48px 0;
      border: none;
      border-top: 1px solid var(--border);
    }

    /* Highlights and notices */
    .legal-notice {
      margin: 28px 0;
      padding: 20px 24px;
      background: #FEF2F2;
      border-left: 4px solid var(--red);
      border-radius: 4px;
    }

    .legal-notice p {
      margin-bottom: 0;
      color: var(--dark-gray);
    }

    .legal-notice strong {
      color: var(--red);
    }

    /* Contact section within legal pages */
    .legal-contact {
      margin-top: 48px;
      padding: 32px;
      background: var(--light-gray);
      border-radius: 8px;
      text-align: center;
    }

    .legal-contact h3 {
      margin-top: 0;
      margin-bottom: 12px;
      color: var(--near-black);
    }

    .legal-contact p {
      margin-bottom: 20px;
    }

    .legal-contact a {
      color: var(--red);
      font-weight: 600;
      text-decoration: none;
    }

    .legal-contact a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .legal-hero {
        padding: 60px 0 40px;
      }

      .legal-hero h1 {
        font-size: 36px;
      }

      .legal-content {
        padding: 60px 24px 80px;
      }

      .legal-content h2 {
        font-size: 28px;
        margin-top: 40px;
      }

      .legal-content h3 {
        font-size: 22px;
        margin-top: 32px;
      }

      .legal-content h4 {
        font-size: 19px;
      }

      .legal-content p,
      .legal-content li {
        font-size: 16px;
      }

      .legal-content table {
        font-size: 14px;
      }

      .legal-content table th,
      .legal-content table td {
        padding: 12px;
      }
    }