  @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

  :root {
      --bg: #050A16;
      --navy: #0A1428;
      --navy-2: #0E1C3A;
      --navy-3: #14264E;
      --white: #F7F5F0;
      --dim: rgba(247, 245, 240, 0.62);
      --dimmer: rgba(247, 245, 240, 0.38);
      --gold: #FFD700;
      --amber: #FFA928;
      --gold-deep: #B8860B;
      --green: #7CE38B;
      --glass: rgba(150, 180, 255, 0.05);
      --glass-2: rgba(150, 180, 255, 0.09);
      --stroke: rgba(170, 200, 255, 0.15);
      --stroke-soft: rgba(170, 200, 255, 0.08);
      --gold-stroke: rgba(255, 215, 0, 0.28);
      --g-blue: #4285F4;
      --g-red: #EA4335;
      --g-yellow: #FBBC05;
      --g-green: #34A853;
      --g-link: #1a0dab;
      --g-text: #202124;
      --g-sub: #4d5156;
      --g-grey: #70757a;
      --g-line: #ebecf0;
      --g-purple: #9B72CB;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Instrument Sans', sans-serif;
      background:
          radial-gradient(ellipse 120% 60% at 50% -10%, var(--navy-2), transparent 60%),
          radial-gradient(ellipse 80% 50% at 100% 110%, rgba(20, 38, 78, 0.6), transparent 65%),
          var(--bg);
      background-attachment: fixed;
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      font-size: 17px;
  }

  ::selection {
      background: var(--gold);
      color: #000;
  }

  @property --angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
  }

  @keyframes spin {
      to {
          --angle: 360deg;
      }
  }

  @keyframes gradShift {
      0% {
          background-position: 0% 50%;
      }

      100% {
          background-position: 100% 50%;
      }
  }

  .hl {
      background: linear-gradient(100deg, var(--gold), var(--amber));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  /* Backdrop */
  .bg-fx {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
  }

  .bg-fx::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(170, 200, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(170, 200, 255, 0.04) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black, transparent 82%);
  }

  .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(110px);
  }

  .orb-1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
      top: -260px;
      left: 50%;
      transform: translateX(-50%);
  }

  .orb-2 {
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(41, 98, 255, 0.14), transparent 70%);
      top: 100vh;
      left: -200px;
  }

  .orb-3 {
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(155, 114, 203, 0.1), transparent 70%);
      top: 190vh;
      right: -200px;
  }

  main,
  .nav-wrap,
  footer {
      position: relative;
      z-index: 1;
  }

  /* Pills (shared button language) */
  .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      position: relative;
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.01em;
      text-decoration: none;
      padding: 0.72rem 1.55rem;
      border-radius: 16px;
      border: 2px solid transparent;
      cursor: pointer;
      color: #1a1400;
      background:
          linear-gradient(115deg, #FFE968, var(--gold), var(--amber), var(--gold), #FFE968) padding-box,
          conic-gradient(from var(--angle), #fff, var(--gold), var(--gold-deep), var(--amber), #fff) border-box;
      background-size: 300% 100%, 100% 100%;
      animation: gradShift 3.5s linear infinite alternate, spin 3s linear infinite;
      box-shadow: 0 0 20px -2px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(2, 6, 18, 0.55);
      transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .pill i {
      font-size: 0.85em;
      transition: transform 0.2s ease;
  }

  .pill:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 0 34px 0 rgba(255, 215, 0, 0.65), 0 6px 18px rgba(2, 6, 18, 0.55);
  }

  .pill:hover i {
      transform: translateX(4px);
  }

  .pill:active {
      transform: translateY(1px) scale(0.98);
  }

  .pill-ghost {
      background:
          linear-gradient(rgba(10, 18, 38, 0.92), rgba(10, 18, 38, 0.92)) padding-box,
          conic-gradient(from var(--angle), var(--gold), rgba(170, 200, 255, 0.55), var(--amber), var(--gold)) border-box;
      border: 1.5px solid transparent;
      animation: spin 4s linear infinite;
      color: var(--white);
      box-shadow: 0 4px 14px rgba(2, 6, 18, 0.5);
      text-shadow: none;
  }

  .pill-ghost:hover {
      color: var(--gold);
      filter: none;
      box-shadow: 0 0 24px -4px rgba(255, 215, 0, 0.4), 0 4px 14px rgba(2, 6, 18, 0.5);
  }

  .pill-big {
      font-size: 1rem;
      padding: 1.05rem 2.4rem;
  }

  /* Nav */
  .nav-wrap {
      position: fixed;
      top: 14px;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      padding: 0 4%;
  }

  nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.4rem;
      background: rgba(8, 14, 30, 0.6);
      backdrop-filter: blur(24px) saturate(1.5);
      -webkit-backdrop-filter: blur(24px) saturate(1.5);
      border: 1px solid var(--stroke-soft);
      border-radius: 100px;
      padding: 0.65rem 0.7rem 0.65rem 1.4rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
      max-width: 980px;
      width: 100%;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
  }

  .brand-logo {
      height: 34px;
      width: auto;
      display: block;
  }

  .brand-fallback {
      display: none;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Bricolage Grotesque';
      font-weight: 700;
      color: var(--white);
  }

  .brand-icon {
      width: 28px;
      height: 28px;
      border-radius: 30%;
      background: linear-gradient(135deg, var(--gold), var(--amber));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.5rem;
      font-weight: 800;
      color: #1a1400;
      font-family: 'Bricolage Grotesque';
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 0.2rem;
  }

  .nav-links a {
      color: var(--dim);
      text-decoration: none;
      font-size: 0.96rem;
      font-weight: 500;
      padding: 0.6rem 1.05rem;
      border-radius: 100px;
      transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
      color: var(--gold);
      background: var(--glass);
  }

  .menu-btn {
      display: none;
      background: var(--glass-2);
      border: 1px solid var(--stroke);
      border-radius: 100px;
      color: var(--white);
      font-size: 0.84rem;
      font-weight: 600;
      padding: 0.5rem 1rem;
      cursor: pointer;
      font-family: 'Instrument Sans';
  }

  .mobile-sheet {
      display: none;
      position: fixed;
      top: 78px;
      left: 4%;
      right: 4%;
      z-index: 99;
      background: rgba(10, 18, 38, 0.94);
      backdrop-filter: blur(28px);
      border: 1px solid var(--stroke);
      border-radius: 24px;
      padding: 0.75rem;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  }

  .mobile-sheet.open {
      display: block;
  }

  .mobile-sheet a {
      display: block;
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      padding: 0.9rem 1rem;
      border-radius: 14px;
  }

  .mobile-sheet a:hover {
      background: var(--glass);
  }

  .mobile-sheet a:last-child {
      color: var(--gold);
  }

  /* Reveal */
  .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
  }

  .reveal.in {
      opacity: 1;
      transform: none;
  }

  /* ---------- Hero: knowledge panel ---------- */
  .about-hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10.5rem 5% 0;
      position: relative;
  }

  .about-hero-bg {
      position: absolute;
      top: -60px;
      left: 50%;
      width: 100vw;
      height: 720px;
      transform: translateX(-50%);
      background-image: url('https://seoapp.io/assets/themes/theme_v1/images/seo-app-team1.jpg');
      background-size: cover;
      background-position: center 25%;
      filter: blur(60px) brightness(0.28) saturate(1.25);
      z-index: -1;
      -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 32%, black 22%, transparent 74%);
      mask-image: radial-gradient(ellipse 70% 62% at 50% 32%, black 22%, transparent 74%);
      pointer-events: none;
  }

  .kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'JetBrains Mono';
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.3rem;
  }

  .kicker i {
      font-size: 0.8rem;
  }

  .about-hero h1 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(2.2rem, 5.4vw, 4rem);
      letter-spacing: -0.02em;
      line-height: 1.08;
      max-width: 18ch;
  }

  .about-hero .lede {
      color: var(--dim);
      font-size: 1.15rem;
      margin-top: 1.3rem;
      max-width: 54ch;
  }

  .kp-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2.5rem;
      margin-top: 3rem;
      align-items: start;
  }

  /* knowledge panel */
  .kpanel {
      background: var(--glass);
      backdrop-filter: blur(24px) saturate(1.5);
      border: 1px solid var(--stroke);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .kp-band {
      background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(14, 28, 58, 0.6));
      border-bottom: 1px solid var(--stroke-soft);
      padding: 1.6rem 1.7rem;
      display: flex;
      align-items: center;
      gap: 0.9rem;
  }

  .kp-band .kp-logo {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      padding: 6px;
  }

  .kp-band .kp-logo img {
      max-width: 100%;
      max-height: 100%;
  }

  .kp-band .disp {
      font-family: 'Bricolage Grotesque';
      font-size: 1.35rem;
      font-weight: 700;
  }

  .kp-band span {
      font-size: 0.82rem;
      color: var(--dim);
  }

  .kp-body {
      padding: 1.25rem 1.7rem 1.7rem;
  }

  .kp-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.62rem 0;
      border-bottom: 1px solid var(--stroke-soft);
      font-size: 0.92rem;
  }

  .kp-row:last-of-type {
      border: none;
  }

  .kp-row span {
      color: var(--dimmer);
  }

  .kp-row b {
      text-align: right;
      color: var(--white);
  }

  .kp-row b a {
      color: var(--gold);
      text-decoration: none;
  }

  .kp-row b a:hover {
      text-decoration: underline;
  }

  /* about copy card (left) */
  .about-copy {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--stroke-soft);
      border-radius: 28px;
      padding: 2.2rem 2.3rem;
  }

  .about-copy h2 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
  }

  .about-copy p {
      color: var(--dim);
      font-size: 1.04rem;
      margin-bottom: 1rem;
  }

  .about-copy p:last-child {
      margin-bottom: 0;
  }

  .about-copy b {
      color: var(--white);
  }

  .promises {
      list-style: none;
      margin-top: 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
  }

  .promises li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: var(--white);
  }

  .promises .tick {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(124, 227, 139, 0.14);
      border: 1px solid rgba(124, 227, 139, 0.35);
      color: var(--green);
      font-size: 0.68rem;
  }

  .promises span {
      color: var(--dim);
  }

  .promises b {
      color: var(--white);
  }

  /* ---------- Section scaffolding ---------- */
  .section {
      max-width: 1150px;
      margin: 0 auto;
      padding: 5.5rem 5% 0;
  }

  .sec-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 3rem;
  }

  .sec-head .eyebrow {
      font-family: 'JetBrains Mono';
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--dimmer);
      margin-bottom: 0.8rem;
  }

  .sec-head h2 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      letter-spacing: -0.02em;
  }

  .sec-head p {
      color: var(--dim);
      font-size: 1.08rem;
      margin-top: 0.8rem;
  }

  /* ---------- Stats ---------- */
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem;
  }

  .stat {
      background: var(--glass);
      border: 1px solid var(--stroke-soft);
      border-radius: 22px;
      padding: 1.9rem 1.4rem;
      text-align: center;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .stat:hover {
      transform: translateY(-4px);
      border-color: var(--gold-stroke);
      box-shadow: 0 0 34px -10px rgba(255, 215, 0, 0.3);
  }

  .stat .num {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(2.2rem, 4.5vw, 3rem);
      line-height: 1;
      background: linear-gradient(120deg, var(--gold), var(--amber));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 22px rgba(255, 215, 0, 0.3));
  }

  .stat .lbl {
      color: var(--dim);
      font-size: 0.92rem;
      margin-top: 0.6rem;
  }

  @media (max-width: 760px) {
      .stats-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* ---------- Timeline ---------- */
  .timeline {
      position: relative;
      max-width: 820px;
      margin: 0 auto;
      padding-left: 2.5rem;
  }

  .timeline::before {
      content: '';
      position: absolute;
      left: 9px;
      top: 6px;
      bottom: 6px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold), rgba(255, 169, 40, 0.15));
  }

  .tl-item {
      position: relative;
      padding-bottom: 2.2rem;
  }

  .tl-item:last-child {
      padding-bottom: 0;
  }

  .tl-item::before {
      content: '';
      position: absolute;
      left: -2.5rem;
      top: 4px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--bg);
      border: 3px solid var(--gold);
      box-shadow: 0 0 14px rgba(255, 215, 0, 0.6);
  }

  .tl-year {
      font-family: 'JetBrains Mono';
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-weight: 700;
  }

  .tl-item h4 {
      font-family: 'Bricolage Grotesque';
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0.25rem 0 0.4rem;
  }

  .tl-item p {
      color: var(--dim);
      font-size: 1rem;
  }

  /* ---------- Founder ---------- */
  .founder-wrap {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2.5rem;
      align-items: center;
  }

  .founder-story {
      background: linear-gradient(160deg, rgba(255, 215, 0, 0.08), rgba(14, 28, 58, 0.5) 55%);
      backdrop-filter: blur(22px);
      border: 1px solid var(--gold-stroke);
      border-radius: 28px;
      padding: 2.4rem 2.4rem;
  }

  .founder-story .src-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'JetBrains Mono';
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
  }

  .founder-story h3 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(1.5rem, 3vw, 2rem);
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
  }

  .founder-story p {
      color: var(--dim);
      font-size: 1.04rem;
      margin-bottom: 0.95rem;
  }

  .founder-story b {
      color: var(--white);
  }

  .founder-story .sig {
      font-family: 'Bricolage Grotesque';
      font-weight: 700;
      color: var(--gold);
      font-size: 1.02rem;
      margin-top: 1.3rem;
  }

  .founder-card {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.1rem;
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--gold-stroke);
      border-radius: 28px;
      padding: 2.4rem 1.8rem;
  }

  .founder-pic {
      width: min(230px, 62vw);
      height: min(230px, 62vw);
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 3px solid var(--gold);
      box-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 18px 40px -14px rgba(0, 0, 0, 0.8);
  }

  .founder-card .role {
      font-family: 'JetBrains Mono';
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gold);
      font-weight: 700;
  }

  .founder-card h4 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: 1.6rem;
  }

  .founder-card p {
      color: var(--dim);
      font-size: 0.95rem;
      max-width: 30ch;
  }

  .founder-builds {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 0.3rem;
  }

  .founder-builds a {
      font-family: 'JetBrains Mono';
      font-size: 0.72rem;
      color: var(--dim);
      border: 1px solid var(--stroke);
      border-radius: 100px;
      padding: 0.35rem 0.85rem;
      text-decoration: none;
      transition: all 0.15s ease;
  }

  .founder-builds a:hover {
      color: var(--gold);
      border-color: var(--gold-stroke);
  }

  /* ---------- Blog ---------- */
  .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
  }

  .post {
      background: var(--glass);
      border: 1px solid var(--stroke-soft);
      border-radius: 22px;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .post:hover {
      transform: translateY(-5px);
      border-color: var(--gold-stroke);
      box-shadow: 0 22px 46px -20px rgba(0, 0, 0, 0.8), 0 0 30px -12px rgba(255, 215, 0, 0.3);
  }

  .post-img {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--navy-2);
  }

  .post-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
  }

  .post:hover .post-img img {
      transform: scale(1.05);
  }

  .post-body {
      padding: 1.4rem 1.5rem 1.6rem;
  }

  .post-tag {
      font-family: 'JetBrains Mono';
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--amber);
  }

  .post-body h4 {
      font-family: 'Bricolage Grotesque';
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--white);
      line-height: 1.35;
      margin: 0.6rem 0 0.5rem;
  }

  .post-body p {
      color: var(--dim);
      font-size: 0.94rem;
  }

  .post-meta {
      font-family: 'JetBrains Mono';
      font-size: 0.74rem;
      color: var(--dimmer);
      margin-top: 1rem;
  }

  @media (max-width: 860px) {
      .blog-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ---------- CTA ---------- */
  .cta {
      max-width: 900px;
      margin: 5.5rem auto 0;
      padding: 0 5% 7rem;
      text-align: center;
  }

  .cta h2 {
      font-family: 'Bricolage Grotesque';
      font-weight: 800;
      font-size: clamp(2.1rem, 5.5vw, 3.6rem);
      letter-spacing: -0.02em;
      line-height: 1.06;
      margin-bottom: 1.1rem;
  }

  .cta p {
      font-size: 1.15rem;
      color: var(--dim);
      margin-bottom: 2.2rem;
  }

  .cta .micro {
      display: block;
      font-family: 'JetBrains Mono';
      font-size: 0.74rem;
      color: var(--dimmer);
      margin-top: 1rem;
  }

  /* Footer */
  footer {
      border-top: 1px solid var(--stroke-soft);
      padding: 3.75rem 5% 2.5rem;
      background: linear-gradient(180deg, transparent, rgba(10, 20, 40, 0.7));
  }

  .foot-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 0.9fr 0.9fr 1fr;
      gap: 2.25rem;
      padding-bottom: 2.5rem;
  }

  .foot-col h5 {
      font-family: 'JetBrains Mono';
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
  }

  .foot-col a {
      display: block;
      color: var(--dim);
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.25rem 0;
  }

  .foot-col a:hover {
      color: var(--gold);
  }

  .foot-brand p {
      font-size: 0.9rem;
      color: var(--dim);
      max-width: 270px;
      margin-top: 0.85rem;
  }

  .foot-brand .brand-logo {
      height: 34px;
  }

  .foot-social {
      display: flex;
      gap: 0.6rem;
      margin-top: 1.1rem;
  }

  .foot-col .foot-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      padding: 0;
      color: #fff;
      border: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .foot-col .foot-social a svg {
      display: block;
      margin: 0 auto;
  }

  .foot-col .foot-social a.s-fb {
      background: #1877F2;
  }

  .foot-col .foot-social a.s-x {
      background: #16181c;
      border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .foot-col .foot-social a:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
      color: #fff;
  }

  .foot-base {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid var(--stroke-soft);
      padding-top: 1.8rem;
      font-size: 0.78rem;
      color: var(--dimmer);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .foot-legal a {
      color: var(--dimmer);
      text-decoration: none;
  }

  .foot-legal a:hover {
      color: var(--gold);
  }

  a:focus-visible,
  button:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 6px;
  }

  @media (prefers-reduced-motion: reduce) {

      *,
      *::before {
          animation: none !important;
      }

      .reveal {
          opacity: 1;
          transform: none;
      }
  }

  @media (max-width: 940px) {
      .kp-grid {
          grid-template-columns: 1fr;
      }

      .founder-wrap {
          grid-template-columns: 1fr;
      }

      .foot-inner {
          grid-template-columns: 1fr 1fr;
      }

      .foot-brand {
          grid-column: 1 / -1;
      }
  }

  @media (max-width: 768px) {
      .nav-links {
          display: none;
      }

      .menu-btn {
          display: block;
      }

      .brand-logo {
          height: 28px;
      }
  }