  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  /* ─── RESET & ROOT ─────────────────────────────────────── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  :root {
    --green: #4ef0a0;
    --g12: rgba(78, 240, 160, .12);
    --g06: rgba(78, 240, 160, .06);
    --g03: rgba(78, 240, 160, .03);
    --blue: #648cff;
    --amber: #ffb450;
    --pink: #ff64b4;
    --cyan: #64dcff;
    --purple: #c88cff;
    --red: #ff6b6b;
    --bg: #04070f;
    --bg2: #080c17;
    --bg3: #0d1220;
    --b: rgba(255, 255, 255, .07);
    --b2: rgba(255, 255, 255, .13);
    --t: rgba(255, 255, 255, .92);
    --t2: rgba(255, 255, 255, .52);
    --t3: rgba(255, 255, 255, .22);
    --white: #ffffff;
  }

  body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    background: var(--bg);
    color: var(--t);
    overflow-x: hidden;
    line-height: 1.6
  }

  /* grain texture */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ─── SCROLL REVEAL ────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
  }

  .reveal.in {
    opacity: 1;
    transform: none
  }

  .d1 {
    transition-delay: .08s
  }

  .d2 {
    transition-delay: .16s
  }

  .d3 {
    transition-delay: .24s
  }

  .d4 {
    transition-delay: .32s
  }

  .d5 {
    transition-delay: .4s
  }

  /* ─── CONTAINER ─────────────────────────────────────────── */
  .container {
    width: 100%;
    max-width: 1470px;
    margin-inline: auto;
    padding-inline: 3rem;
  }

  /* ─── NAV ──────────────────────────────────────────────── */
  nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
    background: transparent;
    transition: background .4s cubic-bezier(.16, 1, .3, 1), backdrop-filter .4s ease, border-bottom .4s ease, padding .3s ease;
  }

  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    transition: padding .3s ease;
  }

  nav.scrolled {
    background: rgba(4, 7, 15, .65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: none;
  }

  nav.scrolled .container {
    padding-top: .8rem;
    padding-bottom: .8rem;
  }

  /* Logo */
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-mark canvas {
    width: 32px;
    height: 32px;
    display: block
  }

  .logo-text {

    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.5px;
    color: var(--t);
  }

  .logo-text em {
    color: var(--green);
    font-style: normal
  }

  /* ── Centre pill ── */
  .nav-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, .055);
    border: .5px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 4px;
    list-style: none;
  }

  .nav-pill li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 100px;
    transition: color .2s, background .2s;
    white-space: nowrap;
  }

  .nav-pill li a:hover {
    color: var(--t);
    background: rgba(255, 255, 255, .06)
  }

  .nav-pill li a.active {
    background: rgba(255, 255, 255, .12);
    color: var(--t);
    font-weight: 600;
  }

  .nav-pill li a .nav-icon {
    font-size: 13px;
    opacity: .75
  }

  /* ── Right actions ── */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .nav-link-login {
    font-size: 14px;
    color: var(--t2);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
    cursor: pointer;
  }

  .nav-link-login:hover {
    color: var(--t)
  }

  .nav-cta {
    background: white;
    color: #04070f;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
  }

  .nav-cta:hover {
    opacity: .88;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .12);
  }

  /* ── Hamburger (mobile) ── */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border: .5px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background .2s;
  }

  .nav-burger span {
    display: block;
    height: 1.5px;
    background: var(--t);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }

  .nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
  }

  .nav-burger.open span:nth-child(2) {
    opacity: 0
  }

  .nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
  }

  /* ── Mobile drawer ── */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(4, 7, 15, .97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: .5px solid var(--b);
    padding: 1.25rem 1.5rem 1.75rem;
    z-index: 199;
    flex-direction: column;
    gap: .25rem;
  }

  .nav-drawer.open {
    display: flex
  }

  .nav-drawer a {
    font-size: 15px;
    font-weight: 500;
    color: var(--t2);
    text-decoration: none;
    padding: .7rem .5rem;
    border-bottom: .5px solid var(--b);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-drawer a:last-child {
    border-bottom: none
  }

  .nav-drawer a:hover {
    color: var(--t)
  }

  .nav-drawer .drawer-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .nav-drawer .drawer-actions a,
  .nav-drawer .drawer-actions button {
    text-align: center;
    justify-content: center;
    border-bottom: none;
    padding: .75rem 1.75rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-drawer .drawer-login {
    background: rgba(255, 255, 255, .07);
    border: .5px solid rgba(255, 255, 255, .15) !important;
    color: var(--t2) !important;
  }

  .nav-drawer .drawer-cta {
    background: white;
    color: #04070f !important;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  /* ── Responsive breakpoints ── */
  @media (max-width: 900px) {
    .nav-pill {
      display: none
    }

    .nav-link-login {
      display: none
    }

    .nav-cta {
      display: none
    }

    .nav-burger {
      display: flex
    }
  }

  @media (max-width: 480px) {
    nav {
      padding: .9rem 1.25rem
    }
  }

  .live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 7px var(--green);
    animation: ldot 2s infinite;
  }

  @keyframes ldot {

    0%,
    100% {
      opacity: 1;
      transform: scale(1)
    }

    50% {
      opacity: .35;
      transform: scale(.8)
    }
  }

  /* ─── HERO ─────────────────────────────────────────────── */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 6rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(78, 240, 160, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg) 95%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
  }

  /* aurora blobs */
  .hero-blob1 {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 240, 160, 0.48) 0%, transparent 68%);
    top: -71px;
    right: -80px;
    pointer-events: none;
    z-index: 0;
    animation: blob 9s ease-in-out infinite;
  }

  .hero-blob2 {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 140, 255, .055) 0%, transparent 68%);
    bottom: -120px;
    left: 10%;
    pointer-events: none;
    z-index: 0;
    animation: blob 13s ease-in-out infinite reverse;
  }

  @keyframes blob {

    0%,
    100% {
      transform: translate(0, 0) scale(1)
    }

    40% {
      transform: translate(18px, -28px) scale(1.04)
    }

    70% {
      transform: translate(-12px, 14px) scale(.97)
    }
  }

  .hero-left {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-right {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 0;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: .5px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: 11px;
    color: var(--t2);
    margin-bottom: 2rem;

    letter-spacing: .3px;
  }

  .badge-dot {
    width: 18px;
    height: 18px;
    background: rgba(78, 240, 160, .14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
  }

  h1 {

    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 500;
    line-height: 75px;
    letter-spacing: -3px;
    margin-bottom: 1.75rem;
  }

  .h1-grad {
    background: linear-gradient(130deg, var(--green) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .h1-dim {
    color: rgba(255, 255, 255, .2)
  }

  .hero-desc {
    font-size: 18px;
    color: var(--t2);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 3rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap
  }

  .btn-primary {
    background: var(--green);
    color: #04070f;
    font-weight: 400;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .btn-main:hover,
  .btn-primary:hover {
    opacity: .86;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(78, 240, 160, .24)
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--t2);
    padding: 14px 28px;
    border-radius: 100px;
    border: .5px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: .5px solid var(--b);
    width: 100%;
  }

  .hstat {
    display: flex;
    flex-direction: column;
    gap: 2px
  }

  .hstat-val {

    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: -.5px;
  }

  .hstat-label {
    font-size: 10px;
    color: var(--t3);

    letter-spacing: .8px;
    text-transform: uppercase;
  }

  /* Hero right — dashboard card */
  .hv-card {
    background: var(--bg2);
    border: .5px solid var(--b2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .45), 0 0 0 .5px rgba(78, 240, 160, .07);
    position: relative;
  }

  .hv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(78, 240, 160, .03) 0%, transparent 55%);
  }

  .hv-bar {
    padding: .875rem 1.25rem;
    border-bottom: .5px solid var(--b);
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .018);
  }

  .hv-dots {
    display: flex;
    gap: 5px
  }

  .hv-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
  }

  .hv-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--t3);

  }

  .hv-live {
    font-size: 10px;
    color: var(--green);

    display: flex;
    align-items: center;
    gap: 5px;
  }

  .hv-body {
    padding: 1.5rem
  }

  .hv-alert {
    background: var(--g06);
    border: .5px solid rgba(78, 240, 160, .17);
    border-radius: 12px;
    padding: .875rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.25rem;
  }

  .hv-alert-icon {
    width: 30px;
    height: 30px;
    background: var(--g12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
  }

  .hv-alert-text {
    font-size: 12px;
    color: var(--t2);
    line-height: 1.55
  }

  .hv-alert-text strong {
    color: var(--green);
    font-weight: 500
  }

  .hv-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.25rem
  }

  .hv-metric {
    background: var(--bg3);
    border: .5px solid var(--b);
    border-radius: 12px;
    padding: .875rem;
    text-align: center;
  }

  .hv-metric-val {

    font-size: 19px;
    font-weight: 800;
    margin-bottom: 3px;
  }

  .hv-metric-label {
    font-size: 10px;
    color: var(--t3);
    font-family: 'DM Mono', monospace
  }

  .hv-chart {
    background: var(--bg3);
    border: .5px solid var(--b);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    height: 88px;
    position: relative;
    overflow: hidden;
  }

  .hv-chart-label {
    font-size: 10px;
    color: var(--t3);

    margin-bottom: 6px;
  }

  /* ─── NEW SPLIT HERO ───────────────────────────────────── */
  .hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    overflow: hidden;
  }

  /* ─── VIDEO BACKGROUND ───────────────────────────────────── */
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }

  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.45;
    /* refined for a premium, moody look */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(4, 7, 15, 0.5) 0%, transparent 25%),
      linear-gradient(to right, rgba(4, 7, 15, 0.3) 0%, transparent 50%),
      linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* ─── DISSOLVE TRANSITION ────────────────────────────────── */
  .section-dissolve {
    height: 120px;
    margin-top: -120px;
    position: relative;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 5;
    pointer-events: none;
  }

  .h-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
  }

  .h-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.6;
  }

  .h-blob-1 {
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(78, 240, 160, 0.08) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: smoke-float 45s infinite alternate ease-in-out;
  }

  .h-blob-2 {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(78, 240, 160, 0.05) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation: smoke-float 55s infinite alternate-reverse ease-in-out;
  }

  .h-blob-3 {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    top: 20%;
    right: 15%;
    animation: smoke-float 50s infinite alternate ease-in-out;
  }

  @keyframes smoke-float {
    0% {
      transform: translate(0, 0) scale(1) skew(0) rotate(0deg);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
      transform: translate(15%, 10%) scale(1.2) skew(3deg) rotate(15deg);
      border-radius: 60% 40% 30% 70% / 50% 40% 70% 60%;
    }

    66% {
      transform: translate(-10%, 15%) scale(0.9) skew(-2deg) rotate(-10deg);
      border-radius: 30% 70% 60% 40% / 60% 70% 50% 40%;
    }

    100% {
      transform: translate(5%, -15%) scale(1.1) skew(1deg) rotate(5deg);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
  }

  .h-split-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }

  /* Left Side */
  .h-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .h-title {
    font-size: clamp(49px, 7vw, 120px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -2.5px;
    color: white;
  }

  .h-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--green);
    margin-right: 0.2em;
  }

  .h-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .btn-main {
    background: var(--green);
    color: #333333;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }



  .btn-link {
    color: var(--green);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
  }

  .btn-link:hover {
    opacity: 0.7;
  }

  .h-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0rem;
  }

  .h-avatars {
    display: flex;
  }

  .h-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #000;
    background: #222;
    margin-left: -12px;
    object-fit: cover;
  }

  .h-avatar:first-child {
    margin-left: 0;
  }

  .h-avatar-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #000;
    background: #333;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
  }

  .h-trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Right Side */
  .h-right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 2rem;
  }

  .h-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    max-width: 420px;
  }

  .h-desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }

  .h-social-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .h-contact-link {
    font-size: 13px;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .h-social-icons {
    display: flex;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .h-social-icons a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .h-social-icons a:hover {
    color: white;
  }

  .h-featured {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
    margin-left: auto;
  }

  .h-featured-head {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }

  .h-featured-card {
    width: 240px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .h-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
  }

  @media (max-width: 1024px) {
    .h-split-container {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }

    .h-left,
    .h-right {
      align-items: center;
      max-width: 100%;
    }

    .h-desc {
      max-width: 600px;
    }

    .h-featured {
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* ─── MARQUEE ──────────────────────────────────────────── */
  .marquee-band {
    border-top: .5px solid var(--b);
    border-bottom: .5px solid var(--b);
    padding: .875rem 0;
    overflow: hidden;
    background: rgba(78, 240, 160, .015);
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite
  }

  .marquee-track:hover {
    animation-play-state: paused
  }

  @keyframes marquee {
    0% {
      transform: translateX(0)
    }

    100% {
      transform: translateX(-50%)
    }
  }

  .m-item {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0 2rem;
    font-size: 11px;
    color: var(--t3);

    letter-spacing: .5px;
    white-space: nowrap;
  }

  .m-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(78, 240, 160, .3);
    display: inline-block;
    flex-shrink: 0;
  }

  /* ─── STATS BAR ────────────────────────────────────────── */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: .5px solid var(--b)
  }

  .sbar-cell {
    padding: 2rem 2.5rem;
    border-right: .5px solid var(--b);
    position: relative;
    overflow: hidden;
  }

  .sbar-cell:last-child {
    border-right: none
  }

  .sbar-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s ease;
  }

  .sbar-cell.in::after {
    transform: scaleX(1)
  }

  .sbar-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: .5rem;

  }

  .sbar-val {

    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .sbar-val .acc {
    color: var(--green)
  }

  .sbar-sub {
    font-size: 12px;
    color: var(--t3);
    font-weight: 300
  }

  /* ─── SECTION BASE ─────────────────────────────────────── */
  section {
    padding: 6rem 0
  }

  .pt0 {
    padding-top: 0
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .875rem;

  }

  .s-title {

    font-size: clamp(28px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1.06;
    margin-bottom: .75rem;
  }

  .s-desc {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.78;
    max-width: 480px;
    font-weight: 300;
  }

  .s-head {
    margin-bottom: 3.5rem
  }

  .s-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .s-head-btn {
    font-size: .85rem;
    font-weight: 700;
    color: var(--green);
    border: 1px solid rgba(78, 240, 160, .28);
    padding: .75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background .2s, border-color .2s;
  }

  .s-head-btn:hover {
    background: rgba(78, 240, 160, .07);
    border-color: rgba(78, 240, 160, .55);
  }

  .s-head-btn--mobile {
    display: none;
  }

  @media (max-width: 767px) {
    .s-head-btn--desktop {
      display: none;
    }

    .s-head-btn--mobile {
      display: inline-flex;
      margin-top: 1.5rem;
    }
  }

  @media (max-width: 600px) {
    .s-head--row {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* ─── PILLARS (REDESIGNED) ────────────────────────────── */
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pcard {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .pcard:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(78, 240, 160, 0.2);
  }

  /* Grainy texture for cards */
  .pcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
  }

  .pcard-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(78, 240, 160, 0.08);
    border: 1px solid rgba(78, 240, 160, 0.15);
    color: var(--green);
    margin-bottom: 2rem;
    position: absolute;
    top: 30px;
    transition: all 0.2s ease;
    left: 38px;
  }

  .pcard:hover .pcard-icon {
    background: rgba(78, 240, 160, 0.15);
    border-color: rgba(78, 240, 160, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(78, 240, 160, 0.15);
  }

  /* Unique Animations for Icons */
  .pcard:hover .pcard-i-float {
    animation: icon-float 3s infinite ease-in-out;
  }

  .pcard:hover .pcard-i-pulse {
    animation: icon-pulse 2s infinite ease-in-out;
  }

  .pcard:hover .pcard-i-shimmer {
    animation: icon-shimmer 2.5s infinite ease-in-out;
  }

  @keyframes icon-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-4px);
    }
  }

  @keyframes icon-pulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.15);
      opacity: 0.7;
    }
  }

  @keyframes icon-shimmer {

    0%,
    100% {
      filter: brightness(1);
    }

    50% {
      filter: brightness(1.6) drop-shadow(0 0 5px var(--green));
    }
  }

  .pcard h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
  }

  .pcard p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    position: relative;
    z-index: 2;
    max-width: 90%;
  }

  .pcard-large-num {
    position: absolute;
    top: -6%;
    right: 1%;
    font-size: 194px;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(135deg, rgba(78, 240, 160, 0.4) 0%, rgba(78, 240, 160, 0.1) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    user-select: none;
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 1024px) {
    .pillars {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .pcard {
      min-height: 280px;
      padding: 2.5rem 2rem;
    }
  }

  /* ─── BENTO SERVICES (REDESIGNED) ───────────────────────── */
  .bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
    padding: 1rem 0;
  }

  .bcard {
    background: #121212;
    border-radius: 32px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    min-height: 280px;
  }

  .bcard:hover {
    transform: translateY(-6px);
    background: #181818;
  }



  .bcard-tall {
    grid-row: span 2;
  }

  .bcard-icon-wrap {
    margin-bottom: auto;
    position: relative;
    z-index: 2;
  }

  .bcard h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    position: relative;
    z-index: 2;
  }

  .bcard p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .bcard-tag {
    display: inline-flex;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--t3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 4px 12px;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  /* WIDGETS */
  .widget-avatars {
    display: flex;
    margin-bottom: 2rem;
  }

  .w-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #121212;
    margin-left: -12px;
    background: #333;
  }

  .w-avatar:first-child {
    margin-left: 0;
  }

  .widget-avatars:hover .w-avatar {
    animation: avatar-wiggle 1s ease-in-out;
  }

  @keyframes avatar-wiggle {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  .bcard-img-vignette {
    width: calc(100% + 4.5rem);
    height: 150px !important;
    margin-bottom: 2rem;
    margin-left: -2.25rem;
    margin-right: -2.25rem;
    margin-top: -2.25rem;
    object-fit: cover;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: block;
  }

  .bcard:hover .bcard-img-vignette {
    opacity: 1;
    transform: scale(1.02);
  }

  /* Ensure tall cards have more image real-estate */
  .bcard-tall .bcard-img-vignette {
    height: 445px !important;
  }

  .widget-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
    margin-top: 1rem;
  }

  .w-app-icon {
    width: 44px;
    height: 44px;
    background: #1f1f1f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .bcard:hover .w-app-icon {
    transform: scale(1.1);
    background: #2a2a2a;
    color: #cfff00;
  }

  /* Staggered icons on hover */
  .bcard:hover .w-app-icon:nth-child(1) {
    transition-delay: 0s;
  }

  .bcard:hover .w-app-icon:nth-child(2) {
    transition-delay: 0.05s;
  }

  .bcard:hover .w-app-icon:nth-child(3) {
    transition-delay: 0.1s;
  }

  .bcard:hover .w-app-icon:nth-child(4) {
    transition-delay: 0.15s;
  }

  .bcard:hover .w-app-icon:nth-child(5) {
    transition-delay: 0.2s;
  }

  .bcard:hover .w-app-icon:nth-child(6) {
    transition-delay: 0.25s;
  }

  .shield-badge {
    animation: shield-pulse 1.5s infinite;
  }

  @keyframes shield-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(207, 255, 0, 0.4);
    }

    100% {
      box-shadow: 0 0 0 10px rgba(207, 255, 0, 0);
    }
  }

  /* Adaptive Line Animation */
  .w-line-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: line-reveal 6s ease-in-out infinite;
  }

  @keyframes line-reveal {
    0% {
      stroke-dashoffset: 1000;
    }

    40%,
    60% {
      stroke-dashoffset: 0;
    }

    100% {
      stroke-dashoffset: -1000;
    }
  }

  .w-label-pulse {
    animation: opacity-pulse 2s infinite ease-in-out;
  }

  @keyframes opacity-pulse {

    0%,
    100% {
      opacity: 0.1;
    }

    50% {
      opacity: 0.3;
    }
  }

  @media (max-width: 1024px) {
    .bento {
      grid-template-columns: repeat(2, 1fr);
    }


  }

  @media (max-width: 640px) {
    .bento {
      grid-template-columns: 1fr;
    }
  }

  .bcard-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    color: var(--green);
    font-size: 13px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s, transform .2s;
  }

  .bcard:hover .bcard-arrow {
    opacity: 1;
    transform: translate(0, 0)
  }

  .bcard-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
    background: linear-gradient(135deg, rgba(78, 240, 160, .04) 0%, transparent 60%);
  }

  .bcard:hover .bcard-glow {
    opacity: 1
  }

  /* ─── TECH TIMELINE (HORIZONTAL) ───────────────────────── */
  .tech-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin: 5rem 0;
    padding-top: 4rem;
    scrollbar-width: none;
  }

  .tech-timeline::-webkit-scrollbar {
    display: none;
  }

  .timeline-track {
    position: absolute;
    top: 47px;
    /* Align with dots */
    left: 0;
    width: 500%;
    /* Spans across all phases for a long trail */
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
  }

  .timeline-track::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--green), transparent);
    filter: blur(1px);
    animation: track-flow-h 12s linear infinite;
  }

  @keyframes track-flow-h {
    0% {
      transform: translateX(-400px);
    }

    100% {
      transform: translateX(2000px);
    }
  }

  .timeline-phase {
    position: relative;
    flex: 1;
    min-width: 280px;
    z-index: 2;
  }

  .timeline-dot {
    position: absolute;
    top: -3.4rem;
    left: 0;
    width: 14px;
    height: 14px;
    background: #000;
    border: 2px solid var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
  }

  .timeline-phase h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 0.75rem;
    opacity: 0.8;
  }

  .timeline-phase h3 {
    font-size: 18px;
    margin-bottom: 1.25rem;
    color: white;
  }

  .timeline-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tbadge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .tbadge:hover {
    background: var(--green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 255, 0, 0.2);
  }

  @media (max-width: 768px) {
    .tech-timeline {
      gap: 2rem;
    }

    .timeline-phase {
      min-width: 250px;
    }
  }

  /* ─── AI DEMO ──────────────────────────────────────────── */
  .demo-frame {
    border: .5px solid var(--b2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .32);
  }

  .demo-bar {
    background: var(--bg2);
    padding: .875rem 1.5rem;
    border-bottom: .5px solid var(--b);
    display: flex;
    align-items: center;
    gap: .75rem;
  }

  .demo-dots {
    display: flex;
    gap: 5px
  }

  .ddot {
    width: 10px;
    height: 10px;
    border-radius: 50%
  }

  .demo-url {
    flex: 1;
    background: var(--bg3);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 11px;
    color: var(--t3);

    text-align: center;
  }

  .demo-screen {
    padding: 2rem;
    background: #050912
  }

  .demo-ai {
    background: var(--g06);
    border: .5px solid rgba(78, 240, 160, .16);
    border-radius: 14px;
    padding: 1rem 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: 1.75rem;
  }

  .demo-ai-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--g12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
  }

  .demo-ai-msg {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6
  }

  .demo-ai-msg strong {
    color: var(--green);
    font-weight: 500
  }

  .demo-h {

    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.75px;
    line-height: 1.15;
    margin-bottom: .625rem;
  }

  .demo-h .acc {
    color: var(--green)
  }

  .demo-sub {
    font-size: 14px;
    color: var(--t2);
    max-width: 440px;
    line-height: 1.7;
    font-weight: 300
  }

  .demo-tabs {
    display: flex;
    gap: .5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap
  }

  .demo-tab {
    font-size: 11px;
    padding: 5px 13px;
    border-radius: 100px;
    border: .5px solid var(--b2);
    color: var(--t3);
    cursor: pointer;

    transition: all .2s;
  }

  .demo-tab.active,
  .demo-tab:hover {
    border-color: rgba(78, 240, 160, .3);
    color: var(--green);
    background: var(--g06);
  }

  /* ─── TECH CLOUD ───────────────────────────────────────── */
  .tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    margin-top: 3rem
  }

  .tbadge {
    background: rgba(255, 255, 255, .03);
    border: .5px solid var(--b);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--t2);
    transition: all .2s;
    cursor: default;
  }

  .tbadge:hover {
    background: var(--g06);
    border-color: rgba(78, 240, 160, .22);
    color: var(--green)
  }

  /* ─── AUDIENCE (REDESIGNED) ────────────────────────────── */
  .audience-section {
    background: #095b33;
    background: radial-gradient(circle at 20% 20%, #0b683b 0%, transparent 40%),
      radial-gradient(circle at 80% 80%, #063d23 0%, transparent 40%),
      #032616;
    background-size: 200% 200%;
    animation: liquid-bg 20s ease-in-out infinite alternate;
    padding: 70px 0;
    color: var(--white);
    position: relative;
    z-index: 10;
    overflow: hidden;
  }

  @keyframes liquid-bg {
    0% {
      background-position: 0% 0%;
    }

    100% {
      background-position: 100% 100%;
    }
  }

  .audience-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .bg-line {
    position: absolute;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    height: 1px;
    width: 60%;
    left: -60%;
    animation: bg-line-move 8s linear infinite;
  }

  @keyframes bg-line-move {
    0% {
      left: -60%;
      opacity: 0;
    }

    10%,
    90% {
      opacity: 1;
    }

    100% {
      left: 100%;
      opacity: 0;
    }
  }

  .audience-section .eyebrow {
    color: rgba(255, 255, 255, 0.6);
  }

  .audience-section .s-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
    align-items: flex-end;
  }

  .audience-section .s-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin: 0;
  }

  .audience-section .s-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .acard {
    background: #fff;
    border-radius: 40px;
    padding: 3rem 2.5rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
  }

  .acard:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  }



  .acard-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #10b981;
  }

  .acard-green .acard-icon {
    color: white;
  }

  .acard h4 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .acard span {
    display: none;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 17px;
    color: #10b981;
    opacity: 0.8;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(16, 185, 129, 0.3);
  }

  .acard-green span {
    color: white;
    border-left-color: rgba(255, 255, 255, 0.4);
    opacity: 0.9;
  }

  .acard p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
  }

  .acard-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
  }

  .acard-green h4,
  .acard-green p {
    color: white;
  }





  .bcard-geo-viz {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    opacity: 0.8;
    pointer-events: none;
  }


  .acard-visual {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 120%;
    height: 60%;
    opacity: 0.3;
    pointer-events: none;
  }

  @media (max-width: 1200px) {
    .audience-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 900px) {
    .audience-section .s-head {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 600px) {
    .audience-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ─── TESTIMONIALS (REDESIGNED) ────────────────────────── */
  .tgrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }

  .tcard {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 2.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .tcard:first-child {
    grid-row: span 2;
    background: linear-gradient(135deg, #0a0a0a 60%, rgba(78, 240, 160, 0.04) 100%);
  }

  .tcard:hover {
    border-color: rgba(78, 240, 160, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  }

  .tcard-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
  }



  .tcard p {
    font-size: clamp(15px, 2vw, 17px);
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: normal;
    font-weight: 400;
  }

  .tcard-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .tcard-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: white;
  }

  .tcard-name {
    font-weight: 700;
    color: white;
    font-size: 15px;
    line-height: 1.3;
  }

  .tcard-role {
    font-size: 13px;
    color: #666;
  }

  @media (max-width: 1024px) {
    .tgrid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.5rem;
      padding-bottom: 2rem;
      scrollbar-width: none;
      margin: 0 -1rem;
      padding: 0 1rem 2rem;
    }

    .tgrid::-webkit-scrollbar {
      display: none;
    }

    .tcard {
      flex: 0 0 calc(60% - 1.5rem);
      scroll-snap-align: center;
      min-height: auto;
    }

    .tcard:first-child {
      grid-row: span 1;
      background: #0a0a0a;
    }
  }

  @media (max-width: 768px) {
    .tcard {
      flex: 0 0 calc(75% - 1.5rem);
    }
  }

  @media (max-width: 575px) {
    .tgrid {
      gap: 1rem;
    }

    .tcard {
      flex: 0 0 85%;
    }

    .tcard {
      padding: 2rem 1rem;
    }

    .tcard-author {
      gap: 0.6rem;
    }

    .tcard-author {
      display: block;
      text-align: center;
    }

    .tcard-avatar {
      margin: 0 auto 0.5rem;
    }

    .tcard-name,
    .tcard-role {
      text-align: center;
    }

    .tcard p {
      text-align: center;
    }

    .tcard-stars {
      text-align: center;
    }
  }

  /* ─── COMPARISON TABLE ────────────────────────────────── */
  .cmp-section {
    padding: 90px 0 100px;
    background: #04070f;
  }

  .cmp-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cmp-tbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
    font-size: 13px;
  }

  /* Header */
  .cmp-tbl thead tr {
    background: #0b0d18;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cmp-tbl thead th {
    padding: 18px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .cmp-tbl thead th span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 3px;
    letter-spacing: 0;
  }

  .cmp-feature-col {
    text-align: left !important;
    width: 220px;
    min-width: 180px;
  }

  /* Highlighted Scale column header */
  .cmp-tbl thead th.cmp-highlight {
    color: var(--green);
    background: rgba(78, 240, 160, 0.05);
  }

  .cmp-tbl thead th.cmp-highlight span {
    color: var(--green);
  }

  /* Body rows */
  .cmp-tbl tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s;
  }

  .cmp-tbl tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
  }

  .cmp-tbl tbody td {
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    line-height: 1.45;
    vertical-align: middle;
  }

  .cmp-tbl tbody td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    padding-left: 18px;
  }

  /* Highlighted Scale column cells */
  .cmp-tbl tbody td.cmp-highlight {
    background: rgba(78, 240, 160, 0.04);
    color: rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(78, 240, 160, 0.1);
    border-right: 1px solid rgba(78, 240, 160, 0.1);
  }

  /* Section header rows */
  .cmp-section-row td {
    padding: 14px 18px 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: var(--green) !important;
    text-align: left !important;
    background: rgba(78, 240, 160, 0.03);
    border-top: 1px solid rgba(78, 240, 160, 0.1);
    text-transform: uppercase;
  }

  /* Dash cells */
  .cmp-dash {
    color: rgba(255, 255, 255, 0.15) !important;
    font-size: 16px;
  }

  /* Green checkmark */
  .cmp-check {
    color: var(--green);
    font-weight: 700;
  }

  /* AI AUTO badge */
  .cmp-ai {
    display: inline-block;
    background: rgba(100, 140, 255, 0.15);
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(100, 140, 255, 0.25);
    white-space: nowrap;
  }

  @media (max-width: 767px) {
    .cmp-tbl {
      min-width: 700px;
    }

    .cmp-tbl thead th,
    .cmp-tbl tbody td {
      padding: 10px 10px;
      font-size: 11px;
    }

    .cmp-feature-col {
      min-width: 140px;
    }
  }

  /* ─── PRICING ─────────────────────────────────────────── */
  .pr-section {
    padding: 100px 0 120px;
    background: #06080f;
  }

  .pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
    align-items: stretch;
    padding-top: 18px;
  }

  .pr-card {
    background: #0b0d18;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s;
    position: relative;
  }

  .pr-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .pr-card--featured {
    background: #0c1119;
    border-color: rgba(78, 240, 160, 0.25);
    box-shadow: 0 0 60px rgba(78, 240, 160, 0.06), inset 0 1px 0 rgba(78, 240, 160, 0.12);
    overflow: visible;
  }

  .pr-card--featured:hover {
    border-color: rgba(78, 240, 160, 0.4);
  }

  .pr-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .pr-icon--teal {
    background: rgba(78, 240, 160, 0.08);
    border-color: rgba(78, 240, 160, 0.2);
  }

  .pr-plan {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
  }

  .pr-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 28px;
  }

  .pr-price {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 28px;
  }

  .pr-price-unit {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0;
  }

  .pr-btn {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-radius: 100px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-bottom: 36px;
  }

  .pr-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  .pr-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pr-btn-teal {
    background: var(--green);
    color: #000;
    border: none;
    font-weight: 800;
    box-shadow: 0 0 28px rgba(78, 240, 160, 0.35);
  }

  .pr-feat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
  }

  .pr-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .pr-feat-list li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
  }

  .pr-feat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid rgba(78, 240, 160, 0.45);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 3L9 1' stroke='rgba(78,240,160,0.9)' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 9px no-repeat;
  }

  .pr-feat-list li::after {
    display: none;
  }

  .pr-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--green);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .pr-tier {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .pr-tier--amber {
    color: var(--amber);
  }

  .pr-btn-amber {
    background: transparent;
    color: var(--amber);
    border: 1px solid rgba(255, 180, 80, 0.4);
  }

  .pr-btn-amber:hover {
    background: rgba(255, 180, 80, 0.08);
    border-color: var(--amber);
  }

  /* Blue (Signal Intelligence) */
  .pr-card--blue {
    border-color: rgba(100, 140, 255, 0.3);
    box-shadow: 0 0 60px rgba(100, 140, 255, 0.07), inset 0 1px 0 rgba(100, 140, 255, 0.12);
  }

  .pr-card--blue:hover {
    border-color: rgba(100, 140, 255, 0.5);
  }

  .pr-badge--blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
  }

  .pr-tier--blue {
    color: var(--blue);
  }

  .pr-btn-blue {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    border: none;
    box-shadow: 0 0 28px rgba(100, 140, 255, 0.3);
  }

  .pr-btn-blue:hover {
    opacity: 0.88;
  }

  /* Purple (Signal Enterprise) */
  .pr-badge--purple {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
  }

  .pr-tier--purple {
    color: var(--purple);
  }

  .pr-price--custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .pr-price--custom {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .pr-price-custom-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
  }

  .pr-btn-purple {
    background: transparent;
    color: var(--purple);
    border: 1px solid rgba(200, 140, 255, 0.4);
  }

  .pr-btn-purple:hover {
    background: rgba(200, 140, 255, 0.08);
    border-color: var(--purple);
  }

  .pr-feat-list li.pr-partial {
    color: rgba(255, 255, 255, 0.55);
  }

  .pr-feat-list li.pr-partial::before {
    border: none;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1.5l6 6.5-6 6.5-6-6.5z' fill='none' stroke='rgba(255,180,80,0.65)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='8' cy='8' r='2.5' fill='rgba(255,180,80,0.7)'/%3E%3C/svg%3E") center / 15px no-repeat;
  }

  .pr-feat-list li.pr-excl {
    color: rgba(255, 255, 255, 0.28);
  }

  .pr-feat-list li.pr-excl::before {
    border-color: rgba(255, 80, 80, 0.35);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 2.5l5 5M7.5 2.5l-5 5' stroke='rgba(255,80,80,0.75)' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center / 8px no-repeat;
  }

  .pr-note {
    margin-top: 24px;
    font-size: 11px;
    color: rgba(78, 240, 160, 0.5);
    font-style: italic;
    letter-spacing: 0.01em;
  }

  @media (max-width: 991px) {
    .pr-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767px) {
    .pr-grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* ─── CTA ──────────────────────────────────────────────── */
  .cta-section {
    padding: 0 0 6rem
  }

  .cta-inner {
    border: .5px solid rgba(78, 240, 160, .14);
    border-radius: 28px;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(78, 240, 160, .04) 0%, rgba(100, 140, 255, .028) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 240, 160, .07) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    pointer-events: none;
  }

  .cta-inner h2 {
    font-size: clamp(24px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 62px;
  }

  .cta-inner h2 span {
    background: linear-gradient(130deg, var(--green) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-note {
    font-size: 13px;
    color: var(--white);
    margin-top: .625rem;
    font-weight: 300
  }

  .cta-btns {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap
  }

  .btn-ghost {
    background: transparent;
    color: var(--t2);
    padding: 14px 24px;
    border-radius: 100px;
    border: .5px solid var(--b2);
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
  }

  .btn-ghost:hover {
    color: white;
    border-color: rgba(255, 255, 255, .3)
  }

  /* ─── FOOTER ───────────────────────────────────────────── */
  footer {
    background: #000;
    background: radial-gradient(circle at 15% 15%, #032616 0%, transparent 40%),
      radial-gradient(circle at 85% 85%, #021a0f 0%, transparent 40%),
      #000;
    background-size: 200% 200%;
    animation: liquid-bg 25s ease-in-out infinite alternate;
    border-top: .5px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 2.5rem;
    border-bottom: .5px solid var(--b);
  }

  .fbrand .flogo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: white;
  }

  .fbrand .flogo em {
    color: var(--green);
    font-style: normal
  }

  .fbrand p {
    font-size: 13px;
    color: var(--white);
    line-height: 1.7;
    max-width: 255px;
    font-weight: 300
  }

  .fcol h5 {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;

  }

  .fcol a {
    display: block;
    font-size: 13px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .2s;
    cursor: pointer;
  }

  .fcol a:hover {
    color: var(--green)
  }

  .fsocial {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .fsocial:hover {
    color: var(--green) !important;
  }

  .fsocial svg {
    flex-shrink: 0;
    opacity: .7;
    transition: opacity .2s;
  }

  .fsocial:hover svg {
    opacity: 1;
  }

  .footer-bot {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--white);
    opacity: 0.5;
  }

  @media (max-width: 900px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .fbrand {
      grid-column: span 2;
      max-width: 100%;
      margin-bottom: 1rem;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding-inline: 1.5rem;
    }

    .hero {
      padding: 6rem 1.5rem 4rem;
    }

    .hero-right {
      margin-top: 3rem;
    }

    .hero-stats {
      gap: 1.5rem;
      padding-top: 2rem;
    }

    .hstat-val {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .fbrand {
      grid-column: span 1;
    }

    .footer-bot {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1.5rem;
    }
  }

  .h-bg-mark {
    position: absolute;
    bottom: -173px;
    right: 0px;
    opacity: 0.1 !important;
    pointer-events: none;
    z-index: 2;
  }

  .h-bg-mark canvas {
    height: 600px;
  }

  /* ─── SERVICE CONTAINER (SC) ──────────────────────────────── */
  .service-container {
    padding: 0 0 6rem;
    background: transparent;
    position: relative;
    z-index: 2;
  }

  /* ─── ENTRANCE ANIMATIONS ──────────────────────────────── */
  @keyframes scHeroFadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

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

  @keyframes scHeroFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* ─── SERVICES HERO WRAP ──────────────────────────────── */
  .sc-hero-wrap {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 8rem;
    overflow: hidden;
  }

  /* ─── SERVICES BG VISUALS (Banner Only) ───────────────── */
  .sc-bg-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #040810;
    overflow: hidden;
    animation: scHeroFadeIn 2s cubic-bezier(1, 0, 0, 1) 0s forwards;
  }

  .sc-bg-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, transparent, #040810);
    z-index: 1;
  }

  .sc-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(78, 240, 160, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(78, 240, 160, 0.04) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
    animation: scGridDrift 80s linear infinite;
  }

  @keyframes scGridDrift {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 100px 100px;
    }
  }

  .sc-rays {
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(60deg,
        transparent,
        transparent 18%,
        rgba(78, 240, 160, 0.03) 20%,
        rgba(78, 240, 160, 0.03) 22%,
        transparent 24%);
    background-size: 200% 200%;
    animation: scRaysMove 40s linear infinite;
    mix-blend-mode: screen;
    pointer-events: none;
  }

  @keyframes scRaysMove {
    0% {
      transform: scale(1) translate(0, 0);
    }

    100% {
      transform: scale(1.2) translate(5%, 5%);
    }
  }

  .sc-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    pointer-events: none;
  }

  .sc-blob-1 {
    top: -15%;
    left: -5%;
    animation: blobFloat 25s ease-in-out infinite alternate;
  }

  .sc-blob-2 {
    bottom: -15%;
    right: -5%;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    animation: blobFloat 30s ease-in-out infinite alternate-reverse;
  }

  .sc-blob-3 {
    top: 20%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0.04;
    animation: blobPulse 18s ease-in-out infinite alternate;
  }

  @keyframes blobPulse {
    0% {
      transform: scale(1);
      opacity: 0.02;
    }

    100% {
      transform: scale(1.4);
      opacity: 0.06;
    }
  }

  @keyframes blobFloat {
    from {
      transform: translate(0, 0) scale(1);
    }

    to {
      transform: translate(5vw, 5vh) scale(1.15);
    }
  }

  .sc-header {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
  }

  /* ─── FLOATING BADGES ────────────────────────────────── */
  .sc-floating-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
  }

  .sc-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: .5px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    animation: badgeFloat 12s ease-in-out infinite alternate;
  }

  .sc-badge-1 {
    top: 35%;
    left: 8%;
    animation-delay: 1s;
  }

  .sc-badge-2 {
    top: 45%;
    right: 8%;
    animation-delay: 3s;
  }

  @keyframes badgeFloat {
    from {
      transform: translateY(0) rotate(-2deg);
    }

    to {
      transform: translateY(-40px) rotate(2deg);
    }
  }


  @media (max-width: 1024px) {
    .sc-floating-badges {
      display: none;
    }

    .sc-hero-wrap {
      padding-top: 12rem;
      padding-bottom: 6rem;
    }
  }

  @media (max-width: 640px) {
    .sc-hero-wrap {
      padding-top: 10rem;
      padding-bottom: 4rem;
    }

    .sc-header {
      margin-bottom: 3rem;
    }

    .sc-blob {
      width: 120vw;
      /* Make blobs larger relative to screen on mobile for better coverage */
      height: 120vw;
      filter: blur(80px);
      opacity: 0.2;
    }

    .sc-grid-pattern {
      background-size: 60px 60px;
      /* Smaller grid for mobile density */
    }
  }

  .sc-eyebrow {

    font-size: 11px;
    color: var(--t2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.5;
  }

  .sc-heading {
    font-size: clamp(28px, 4vw, 89px);
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1.06;
    margin-bottom: .75rem;
  }

  .sc-accent-text {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--green);
    font-weight: 400;
    /* Optical adjustment to match visual weight of san-serif */
    font-size: 1.1em;
    letter-spacing: -0.01em;
  }

  /* ─── COMPARISON SECTION ────────────────────────────────── */
  .comparison-section {
    padding: 0rem 0rem 6rem 0rem;
    background: var(--bg);
  }

  .comparison-section .sc-heading span {
    background: linear-gradient(130deg, var(--green) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .comp-table-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: .5px solid var(--b2);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 4rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }

  .comp-table th {
    padding: 1.5rem 2.5rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: .5px solid var(--b2);
    background: rgba(255, 255, 255, 0.01);
  }

  .comp-table td {
    padding: 1.25rem 2.5rem;
    font-size: 14px;
    color: var(--t);
    border-bottom: .5px solid var(--b);
    transition: background 0.3s ease;
  }

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

  .comp-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  /* Animated Icons */
  .comp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 14px;
    color: var(--green);
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .comp-table tr:hover .comp-icon {
    transform: scale(1.15) rotate(8deg);
    color: var(--white);
  }

  /* Price styling */
  .comp-price {
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    letter-spacing: -0.3px;
  }

  .comp-service-name {
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
  }

  .c-green {
    color: var(--green);
  }

  .c-blue {
    color: var(--blue);
  }

  .c-amber {
    color: var(--amber);
  }

  .c-pink {
    color: var(--pink);
  }

  .c-cyan {
    color: var(--cyan);
  }

  .c-purple {
    color: var(--purple);
  }

  @media (max-width: 900px) {
    .comp-scroll-hint {
      display: none !important;
    }

    .comp-table,
    .comp-table thead,
    .comp-table tbody,
    .comp-table th,
    .comp-table td,
    .comp-table tr {
      display: block;
    }

    .comp-table {
      min-width: 100% !important;
    }

    .comp-table thead {
      display: none;
    }

    .comp-table-wrap {
      background: transparent;
      border: none;
      overflow: visible;
      margin-top: 2rem;
    }

    .comp-table tr {
      background: rgba(255, 255, 255, 0.03);
      border: 0.5px solid var(--b2);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      margin-bottom: 1.25rem;
      position: relative;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .comp-table tr:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-4px);
    }

    .comp-table td {
      padding: 0.75rem 0 !important;
      border: none !important;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: right;
    }

    /* Goal (The label for the card) */
    .comp-table td:nth-child(1) {
      font-size: 10px;
      font-weight: 700;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      justify-content: flex-start;
      margin-bottom: 0.25rem;
      opacity: 0.8;
    }

    /* Service Name (The primary focal point) */
    .comp-table td:nth-child(2) {
      justify-content: flex-start;
      text-align: left;
      margin-bottom: 1.25rem;
      border-bottom: 1px solid var(--b) !important;
      padding-bottom: 1.25rem !important;
    }

    .comp-service-name {
      font-size: 19px !important;
      font-weight: 800;
      color: var(--white);
    }

    /* Labeling the data points */
    .comp-table td:nth-child(3)::before {
      content: "Price";
      font-size: 12px;
      color: var(--white);
      font-weight: 500;
    }

    .comp-table td:nth-child(4)::before {
      content: "Result";
      font-size: 12px;
      color: var(--white);
      font-weight: 500;
    }

    .comp-table td:nth-child(5)::before {
      content: "Impact Time";
      font-size: 12px;
      color: var(--white);
      font-weight: 500;
    }

    .comp-price {
      font-size: 16px;
    }

    .comp-icon {
      width: 24px;
      height: 24px;
    }
  }

  @keyframes hint-slide {
    0% {
      transform: translateX(0);
      opacity: 0.4;
    }

    50% {
      transform: translateX(5px);
      opacity: 1;
    }

    100% {
      transform: translateX(0);
      opacity: 0.4;
    }
  }

  .comp-scroll-hint {
    display: none;
  }

  .sc-intro {
    margin-bottom: 5rem;
  }

  .text-center {
    text-align: center;
  }

  .w-100 {
    max-width: 100% !important;
  }

  .sc-desc {
    font-size: 18px;
    color: var(--t2);
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
    margin-top: 2rem;
  }

  .sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 290px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Bento Layout */
  .sc-card-1 {
    grid-column: 1;
    grid-row: span 2;
  }

  .sc-card-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .sc-card-3 {
    grid-column: 3;
    grid-row: span 2;
  }

  .sc-card-4 {
    grid-column: 2;
    grid-row: 2;
  }

  .sc-card-5 {
    grid-column: 1;
    grid-row: 3;
  }

  .sc-card-6 {
    grid-column: 2 / span 2;
    grid-row: 3;
  }

  .sc-card-7 {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .sc-card-8 {
    grid-column: 3;
    grid-row: 4;
  }

  .sc-card-9 {
    grid-column: 1;
    grid-row: 5 / span 2;
  }

  .sc-card-10 {
    grid-column: 2;
    grid-row: 5;
  }

  .sc-card-11 {
    grid-column: 3;
    grid-row: 5 / span 2;
  }

  .sc-card-12 {
    grid-column: 2;
    grid-row: 6;
    background: radial-gradient(ellipse at 20% 80%, rgba(78, 240, 160, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(200, 80, 255, 0.32) 0%, #0003 50%), radial-gradient(ellipse at 60% 50%, rgba(100, 140, 255, 0.32) 0%, #0000008c 60%), #080c17 !important;
  }

  .sc-card-13 {
    grid-column: 1 / span 2;
    grid-row: 7;
  }

  .sc-card-14 {
    grid-column: 3;
    grid-row: 7;
  }

  /* Home page grid — remap rows to start at 1 (service page uses rows 4-7) */
  .sc-grid--home .sc-card-7 {
    grid-row: 1;
  }

  .sc-grid--home .sc-card-8 {
    grid-row: 1;
  }

  .sc-grid--home .sc-card-9 {
    grid-row: 2 / span 2;
  }

  .sc-grid--home .sc-card-10 {
    grid-row: 2;
  }

  .sc-grid--home .sc-card-11 {
    grid-row: 2 / span 2;
  }

  .sc-grid--home .sc-card-12 {
    grid-row: 3;
  }

  .sc-grid--home .sc-card-13 {
    grid-row: 4;
  }

  .sc-grid--home .sc-card-14 {
    grid-row: 4;
  }

  .sc-grid.sc-grid--home {
    margin-top: 25px;
  }

  .sc-card {
    position: relative;
    background: #080c17;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }

  .sc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 240, 160, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  }

  .sc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0.2;
  }

  .sc-card:hover .sc-img {
    transform: scale(1.08);
    opacity: 0.7;
  }

  .sc-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 65%);
    z-index: 1;
  }

  .sc-num {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
  }

  .sc-overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
  }

  .sc-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: .5px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .sc-tag .sc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
  }

  .sc-tag.blue .sc-dot {
    background: var(--blue);
    box-shadow: 0 0 8px var(--blue);
  }

  .sc-tag.red .sc-dot {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
  }

  .sc-tag.amber .sc-dot {
    background: var(--amber);
    box-shadow: 0 0 8px var(--amber);
  }

  .sc-card-title {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 0.875rem;
  }

  .sc-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
  }


  /* ─── RESPONSIVE SC ───────────────────────────────────────── */
  @media (max-width: 1024px) {
    .sc-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 270px;
    }

    .sc-card-1 {
      grid-column: 1;
      grid-row: span 2;
    }

    .sc-card-2 {
      grid-column: 2;
      grid-row: 1;
    }

    .sc-card-3 {
      grid-column: 2;
      grid-row: span 2;
    }

    .sc-card-4 {
      grid-column: 1;
      grid-row: 3;
    }

    .sc-card-5 {
      grid-column: 1;
      grid-row: 4;
    }

    .sc-card-6 {
      grid-column: 2;
      grid-row: 4;
    }

    .sc-card-7 {
      grid-column: 1;
      grid-row: 5;
    }

    .sc-card-8 {
      grid-column: 2;
      grid-row: 5;
    }

    .sc-card-9 {
      grid-column: 1;
      grid-row: 6;
    }

    .sc-card-10 {
      grid-column: 2;
      grid-row: 6;
    }

    .sc-card-11 {
      grid-column: 1;
      grid-row: 7;
    }

    .sc-card-12 {
      grid-column: 2;
      grid-row: 7;
    }

    .sc-card-13 {
      grid-column: 1;
      grid-row: 8;
    }

    .sc-card-14 {
      grid-column: 2;
      grid-row: 8;
    }
  }

  @media (max-width: 640px) {
    .sc-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
      gap: 1.25rem;
    }

    .sc-card {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      min-height: 420px;
    }

    .sc-card-title {
      font-size: 28px;
    }
  }

  /* ── ABOUT PAGE STYLES ─────────────────────────────────── */

  /* ── HERO ── */
  .ab-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .ab-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(78, 240, 160, .07) 0%, transparent 70%);
    pointer-events: none;
  }

  .ab-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .1s forwards;
  }

  .ab-hero h1 {

    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 28px;
    max-width: 720px;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .2s forwards;
  }

  .ab-hero h1 em {
    font-style: italic;
    font-family: 'Instrument Serif', serif;
    color: var(--green);
  }

  .ab-hero-sub {
    font-size: 17px;
    color: var(--t2);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .3s forwards;
    margin: 0 auto;
    padding-top: 10px;
  }

  /* Stats strip */
  .ab-stats {
    display: flex;
    gap: 0;
    border: .5px solid var(--b2);
    border-radius: 16px;
    overflow: hidden;
    max-width: 720px;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .45s forwards;
  }

  .ab-stat {
    flex: 1;
    padding: 24px 28px;
    border-right: .5px solid var(--b2);
    background: var(--g03);
    transition: background .3s;
  }

  .ab-stat:last-child {
    border-right: none;
  }

  .ab-stat:hover {
    background: var(--g06);
  }

  .ab-stat-val {

    font-size: 28px;
    font-weight: 800;
    color: var(--t);
    letter-spacing: -.02em;
  }

  .ab-stat-val .acc {
    color: var(--green);
  }

  .ab-stat-lbl {
    font-size: 11.5px;
    color: var(--t3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Scroll line */
  .ab-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 56px;
    font-size: 12px;
    color: var(--t3);
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.16, 1, .3, 1) .6s forwards;
  }

  .ab-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--t3);
  }

  .ab-scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: abBlink 2s ease-in-out infinite;
  }

  @keyframes abBlink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: .25;
    }
  }

  /* ── DIVIDER ── */
  .ab-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--b2) 30%, var(--b2) 70%, transparent);
    margin: 0 3rem;
  }

  /* ── STORY ── */
  .ab-story {
    padding: 80px 0;
  }

  .ab-origin-card {
    background: var(--bg2);
    border: 0.5px solid var(--b2);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }

  .ab-origin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 40%, var(--cyan) 60%, transparent 100%);
    z-index: 2;
  }

  .ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  .ab-origin-text {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 0.5px solid var(--b);
  }

  .ab-origin-img {
    position: relative;
    min-height: 520px;
    overflow: hidden;
  }

  .ab-origin-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
  }

  .ab-origin-card:hover .ab-origin-img img {
    transform: scale(1.04);
  }

  .ab-origin-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(4, 7, 15, 0.97) 0%,
        rgba(4, 7, 15, 0.65) 45%,
        rgba(4, 7, 15, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
  }

  .ab-origin-quote p {
    font-family: 'Instrument Serif', serif;
    font-size: 19px;
    line-height: 1.55;
    color: var(--t);
    margin-bottom: 10px;
  }

  .ab-origin-quote em {
    color: var(--green);
    font-style: italic;
  }

  .ab-origin-quote span {
    display: block;
    font-size: 12px;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: 28px;
  }

  .ab-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
  }



  .ab-body p {
    font-size: 15.5px;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .ab-body p:last-child {
    margin-bottom: 0;
  }

  .ab-body strong {
    color: var(--t);
    font-weight: 600;
  }

  /* Quote card */
  .ab-quote-card {
    background: var(--bg2);
    border: .5px solid var(--b2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
  }

  .ab-quote-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 80px;
    font-family: 'Instrument Serif', serif;
    color: var(--green);
    opacity: .25;
    line-height: 1;
  }

  .ab-quote-text {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    line-height: 1.5;
    color: var(--t);
    margin-bottom: 24px;
    padding-top: 16px;
  }

  .ab-quote-text em {
    color: var(--green);
    font-style: italic;
  }

  .ab-quote-attr {
    font-size: 12.5px;
    color: var(--t3);
    letter-spacing: .06em;
  }

  .ab-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 28px;
    background: var(--b);
    border-radius: 12px;
    overflow: hidden;
  }

  .ab-ms-item {
    background: var(--bg2);
    padding: 18px 16px;
    text-align: center;
  }

  .ab-ms-val {

    font-size: 20px;
    font-weight: 800;
    color: var(--green);
  }

  .ab-ms-lbl {
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 3px;
  }

  /* ── VALUES ── */
  .ab-values {
    padding: 120px 0 80px;
    /* Reduced bottom padding for closer connection */
    background: var(--bg);
    position: relative;
    overflow-x: clip;
  }

  /* ── Background layers (hero-style) ── */
  .ab-val-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ab-val-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, #0000 1px), linear-gradient(90deg, rgba(87, 87, 87, 0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .ab-val-rays {
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(120deg,
        transparent,
        transparent 18%,
        rgba(78, 240, 160, .025) 20%,
        rgba(78, 240, 160, .025) 22%,
        transparent 24%);
    background-size: 200% 200%;
    animation: abRaysMove 50s linear infinite;
    mix-blend-mode: screen;
  }

  @keyframes abRaysMove {
    0% {
      transform: scale(1) rotate(0deg);
    }

    100% {
      transform: scale(1.15) rotate(8deg);
    }
  }

  .ab-val-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .12;
    pointer-events: none;
  }

  .ab-val-blob-1 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: abBlob1 10s ease-in-out infinite alternate;
  }

  .ab-val-blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    opacity: .08;
    animation: blobFloat 35s ease-in-out infinite alternate-reverse;
  }

  .ab-val-blob-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    top: 30%;
    left: 45%;
    opacity: .06;
    animation: blobFloat 22s ease-in-out infinite alternate;
  }

  /* ── Floating elements ── */
  .ab-val-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ab-vf {
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    opacity: .25;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .ab-vf span {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .12em;
    color: var(--t3);
    text-transform: uppercase;
  }

  .ab-vf-1 {
    top: 12%;
    right: 6%;
    font-size: 28px;
    letter-spacing: -.5px;
    animation: abFloatY 8s ease-in-out infinite alternate;
  }

  .ab-vf-2 {
    bottom: 14%;
    left: 3%;
    font-size: 22px;
    letter-spacing: -.5px;
    opacity: .18;
    animation: abFloatY 11s ease-in-out infinite alternate-reverse;
  }

  .ab-vf-3 {
    top: 48%;
    right: 3%;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    opacity: .3;
    animation: abFloatX 9s ease-in-out infinite alternate;
  }

  .ab-vf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: abPulse 2s ease-in-out infinite;
  }

  .ab-vf-4 {
    bottom: 8%;
    right: 8%;
    font-size: 13px;
    opacity: .14;
    animation: abFloatY 13s ease-in-out infinite alternate;
  }

  /* Rings */
  .ab-vf-ring {
    position: absolute;
    border-radius: 50%;
    border: .5px solid rgba(78, 240, 160, .08);
    pointer-events: none;
  }

  .ab-vf-ring-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -80px;
    animation: abRingExpand 12s ease-in-out infinite alternate;
  }

  .ab-vf-ring-2 {
    width: 200px;
    height: 200px;
    bottom: 40px;
    left: 2%;
    border-color: rgba(100, 140, 255, .07);
    animation: abRingExpand 16s ease-in-out infinite alternate-reverse;
  }

  @keyframes abFloatY {
    from {
      transform: translateY(0px);
    }

    to {
      transform: translateY(-18px);
    }
  }

  @keyframes abFloatX {
    from {
      transform: translateX(0px);
    }

    to {
      transform: translateX(12px);
    }
  }

  @keyframes abPulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: .4;
      transform: scale(1.6);
    }
  }

  @keyframes abRingExpand {
    from {
      transform: scale(1);
      opacity: .6;
    }

    to {
      transform: scale(1.12);
      opacity: 1;
    }
  }

  @keyframes abBlob1 {
    0% {
      transform: translate(0, 0) scale(1) skew(0deg);
      opacity: .10;
      border-radius: 50%;
    }

    25% {
      transform: translate(3%, 6%) scale(1.08) skew(2deg);
      opacity: .15;
      border-radius: 42% 58% 55% 45% / 48% 52% 48% 52%;
    }

    50% {
      transform: translate(-4%, 10%) scale(0.94) skew(-2deg);
      opacity: .12;
      border-radius: 58% 42% 45% 55% / 52% 48% 52% 48%;
    }

    75% {
      transform: translate(6%, 4%) scale(1.12) skew(3deg);
      opacity: .18;
      border-radius: 45% 55% 60% 40% / 40% 60% 45% 55%;
    }

    100% {
      transform: translate(2%, 8%) scale(1.05) skew(-1deg);
      opacity: .13;
      border-radius: 55% 45% 50% 50% / 55% 45% 55% 45%;
    }
  }

  /* Push content above bg */
  .ab-values .container {
    position: relative;
    z-index: 1;
  }

  .ab-sec-head {
    max-width: 480px;
    margin-bottom: 60px;
  }

  /* Left / Right layout */
  .ab-val-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 72px;
    align-items: start;
  }

  .ab-val-left {
    position: sticky;
    top: 100px;
  }

  .ab-val-left .ab-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
  }

  .ab-val-left .ab-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.06;
    margin-bottom: 24px;
  }

  .ab-val-left .ab-h2 em {
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    color: var(--green);
    font-weight: 800;
  }

  .ab-val-left-sub {
    font-size: 14px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .ab-val-left-count {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--bg2);
    border: .5px solid var(--b2);
    border-radius: 14px;
    border-left: 3px solid var(--green);
  }

  .ab-val-left-num {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
  }

  .ab-val-left-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--t2);
    line-height: 1.6;
  }

  /* Cards grid */
  .ab-val-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-radius: 20px;
    overflow: hidden;
  }

  .ab-val-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0px;
  }

  .ab-val-stat {
    margin-top: 18px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .03em;
    opacity: .85;
  }

  .ab-val-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 10px;
    margin-bottom: 20px;
    flex-shrink: 0;
  }

  .ab-val-icon span {
    display: block;
    border-radius: 2px;
    background: currentColor;
  }

  .ab-val-item {
    padding: 32px 28px;
    position: relative;
    transition: background .3s, transform .3s;
    cursor: default;
    border: none;
    border-radius: 0;
  }

  .ab-val-item:hover {
    background: var(--bg3);
  }

  .ab-val-item::after {
    content: none;
  }

  .ab-val-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .ab-val-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--t);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.4;
  }

  .ab-val-desc {
    font-size: 13.5px;
    color: var(--t2);
    line-height: 1.65;
  }

  /* ── TIMELINE ── */
  .ab-tl {
    padding: 60px 0 140px;
    /* Reduced top padding for connection */
    position: relative;
    overflow-x: clip;
  }

  .ab-tl-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ab-tl-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
  }

  .ab-tl-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.1;
  }

  .ab-tl-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--green);
    top: -10%;
    right: -10%;
    animation: blobFloat 20s infinite alternate;
  }

  .ab-tl-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--blue);
    bottom: -10%;
    left: -10%;
    animation: blobFloat 25s infinite alternate-reverse;
  }

  .ab-tl-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  }

  /* Header row */
  .ab-tl-hdr {
    margin-bottom: 72px;
  }

  .ab-tl-intro-sub {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 440px;
  }

  /* Year range badge — sits above the eyebrow */
  .ab-tl-yr-range {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .ab-tl-yr-from {
    font-size: 12px;
    color: var(--t2);
    font-weight: 600;
    letter-spacing: .06em;
  }

  .ab-tl-yr-pill {
    background: var(--green);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .04em;
  }

  /* Steps body */
  .ab-tl-body {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
  }

  /* SVG overlay for dashed connectors */
  .ab-tl-connect-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
  }

  .ab-tl-connect-svg path {
    stroke-dasharray: 8 6;
    animation: tlFlow 4s linear infinite;
  }

  @keyframes tlFlow {
    from {
      stroke-dashoffset: 28;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  /* Each step block */
  .ab-tl-step {
    position: relative;
    z-index: 1;
    height: 140px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
  }

  .ab-tl-step:last-child {
    margin-bottom: 0;
  }

  .ab-tl-step.left {
    justify-content: flex-start;
  }

  .ab-tl-step.right {
    justify-content: flex-end;
  }

  /* Inner content: 300px wide */
  .ab-tl-step-inner {
    width: 350px;
    position: relative;
  }

  /* Dark pill header */
  .ab-tl-step-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--bg2);
    border: .5px solid var(--b2);
    border-radius: 100px;
    padding: 9px 27px 9px 25px;
    font-size: 13px;
    font-weight: 700;
    color: var(--t);
    cursor: default;
    transition: border-color .25s, background .25s;
    white-space: nowrap;
  }

  .ab-tl-step-pill:hover {
    border-color: rgba(78, 240, 160, .35);
    background: rgb(5, 8, 16);
  }

  .ab-tl-step-ico {
    font-size: 14px;
    line-height: 1;
    color: var(--green);
    flex-shrink: 0;
  }

  /* Description text */
  .ab-tl-step-desc {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.65;
    margin-top: 11px;
    padding-left: 2px;
  }

  /* Vertical year label - positioned on left for all */
  .ab-tl-step-yr {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .14em;
    text-transform: uppercase;
    position: absolute;
    left: -30px;
    top: -5px;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: .7;
    text-align: center;
  }



  /* Shared year tag (used in mobile list) */
  .ab-tl-year-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  /* Mobile list — hidden on desktop */
  .ab-tl-mobile {
    display: none;
  }

  /* ── TEAM ── */
  .ab-team {
    padding: 100px 0;
    background: var(--bg2);
    border-top: .5px solid var(--b);
    border-bottom: .5px solid var(--b);
  }

  .ab-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .ab-team-card {
    background: var(--bg2);
    border: .5px solid var(--b2);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .ab-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 240, 160, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  }

  .ab-member-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    background: var(--bg);
  }

  /* Decorative background for image placeholder */
  .ab-member-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(78, 240, 160, 0.08), transparent 70%);
    opacity: 0.5;
  }

  .ab-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: saturate(0.8);
  }

  .ab-team-card:hover .ab-member-img img {
    transform: scale(1.05);
    filter: saturate(1);
  }

  .ab-member-info {
    padding: 1.75rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    position: relative;
    z-index: 3;
  }

  .ab-team-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .ab-team-name {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
  }

  .ab-team-bio {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.6;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
  }

  /* ── PRINCIPLES ── */
  .ab-principles {
    padding: 100px 0px 50px;
    background: var(--bg);
  }

  .ab-p-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }

  .ab-p-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  }

  /* Bottom Glow Effect */
  .ab-p-card::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.4;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  .ab-p-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .ab-p-card:hover::after {
    opacity: 0.8;
  }

  .ab-p-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    color: var(--green);
  }

  .ab-p-icon svg {
    width: 28px;
    height: 28px;
  }

  .ab-p-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
  }

  .ab-p-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
    max-width: 280px;
    position: relative;
    z-index: 1;
  }

  /* Unified Green Neon Theme for all Principle Cards */
  .ab-p-icon {
    width: 64px;
    height: 64px;
    color: var(--green);
    background: rgba(78, 240, 160, 0.08);
    box-shadow: 0 0 20px rgba(78, 240, 160, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .ab-p-card::after {
    background: var(--green);
    box-shadow: 0 0 40px var(--green);
  }

  /* ── CONTACT PAGE (V2) ── */
  .h-contact {
    padding: 160px 0 120px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
  }

  /* Atmospheric Background Text (V2) */
  .contact-bg-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(140px, 30vw, 500px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 0;
    font-family: 'Syne', sans-serif;
    white-space: nowrap;
    text-transform: capitalize;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  /* Left Column: Content */
  .contact-content {
    color: white;
  }

  .reach-out-title {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: -0.04em;
  }

  .reach-out-title span {
    font-weight: 400;
    opacity: 0.8;
  }

  .contact-body-text {
    font-size: 17px;
    line-height: 1.6;
    color: #999;
    max-width: 480px;
    margin-bottom: 48px;
  }

  .contact-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-bullets li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #999;
  }

  .bullet-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
  }

  .contact-socials {
    display: flex;
    gap: 16px;
  }

  .social-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
  }

  /* Right Column: Glass Form */
  .form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .f-group {
    margin-bottom: 20px;
  }

  .f-input {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 22px 28px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .f-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.15);
    background: #151515;
  }

  .f-input::placeholder {
    color: #444;
  }

  textarea.f-input {
    min-height: 240px;
    resize: none;
  }

  .f-submit {
    width: 100%;
    background: white;
    color: black;
    border: none;
    border-radius: 100px;
    padding: 22px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px;
  }

  .f-submit:hover {
    transform: scale(0.98);
    opacity: 0.9;
  }

  /* ── CONTACT (V4) ── */
  .sc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    position: relative;
    z-index: 10;
  }

  .sc-contact-right {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 64px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
  }


  /* ── REVEAL SYSTEM ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── TEXT REVEAL UTILITY ── */
  .sc-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: simpleReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(var(--d, 0s) + 2.2s);
  }

  @keyframes simpleReveal {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Specialized Mask Reveal */
  /* .mask-wrap {
    overflow: hidden;
    display: block;
  } */

  .mask-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    animation: maskReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(var(--d, 0s) + 1.2s);
  }

  @keyframes maskReveal {
    0% {
      opacity: 0;
      transform: translateY(110%);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .sc-contact-left {
    color: white;
  }

  .sc-contact-eyebrow {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .sc-contact-h1 {
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
  }

  .sc-accent-green {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--green);
    font-weight: 400;
    margin-right: 0.05em;
    /* Optical spacing */
  }

  .sc-strategy-list {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .sc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2.5rem;
    padding: 0.6rem 1.0rem;
    background: var(--green);
    color: #000;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: .01em;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 0 0 0 rgba(78, 240, 160, 0);
  }

  .sc-book-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(78, 240, 160, .25);
  }

  .sc-book-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, .12);
    border-radius: 6px;
    flex-shrink: 0;
  }

  .sc-book-arrow {
    margin-left: auto;
    font-size: 1rem;
    opacity: .7;
  }

  .sc-strategy-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .sc-s-icon {
    width: 48px;
    height: 48px;
    background: rgba(78, 240, 160, 0.05);
    border: 1px solid rgba(78, 240, 160, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .sc-s-content h6 {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
  }

  .sc-s-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    max-width: 580px;
  }

  .sc-contact-item {
    margin-bottom: 40px;
  }

  .sc-contact-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
  }

  .sc-contact-item p {
    font-size: 15px;
    color: #888;
    margin-bottom: 12px;
  }

  .sc-contact-item a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .sc-contact-item a:hover {
    color: var(--green);
  }

  .sc-contact-social h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .sc-social-links {
    display: flex;
    gap: 24px;
  }

  .sc-social-links a {
    color: white;
    opacity: 0.6;
    transition: 0.3s ease;
  }

  .sc-social-links a:hover {
    opacity: 1;
    color: var(--green);
    transform: translateY(-3px);
  }

  /* Form Styling */
  .sc-f-group {
    margin-bottom: 24px;
  }

  .sc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sc-f-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.01em;
  }

  .sc-f-group input,
  .sc-f-group textarea,
  .sc-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    /* For select */
  }

  .sc-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
  }

  .sc-budget-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    /* Room for optical balance */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .sc-budget-chips::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
  }

  .sc-chip {
    cursor: pointer;
  }

  .sc-chip input {
    display: none;
  }

  .sc-chip span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .sc-chip input:checked+span {
    background: white;
    color: black;
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .sc-chip:hover span {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
  }

  .sc-f-group input:focus,
  .sc-f-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .sc-f-group textarea {
    min-height: 180px;
    resize: none;
  }



  @media (max-width: 1024px) {
    .sc-contact-grid {
      grid-template-columns: 1fr;
      gap: 80px;
      padding-top: 140px;
    }

    .sc-contact-h1 {
      font-size: 64px;
    }

    .sc-contact-right {
      padding: 40px;
      border-radius: 32px;
    }
  }

  @media (max-width: 768px) {
    .sc-contact-grid {
      gap: 40px;
      padding-top: 100px;
    }

    .sc-contact-right {
      padding: 24px 20px;
      border-radius: 24px;
    }

    .sc-form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .sc-f-group {
      margin-bottom: 20px;
    }

    .sc-budget-chips {
      flex-wrap: wrap;
      overflow-x: visible;
    }
  }

  /* ── CONTACT BG TEXT V3 ── */
  .contact-bg-text-v3 {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(160px, 35vw, 259px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.06em;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    text-transform: uppercase;
  }

  /* ── CTA ── */
  .ab-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .ab-cta::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 240, 160, .06) 0%, transparent 70%);
    pointer-events: none;
  }

  .ab-cta-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
  }

  .ab-cta h2 {

    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    max-width: 640px;
    margin: 0 auto 20px;
  }

  .ab-cta h2 em {
    font-style: italic;
    font-family: 'Instrument Serif', serif;
    color: var(--green);
  }

  .ab-cta-sub {
    font-size: 16px;
    color: var(--t2);
    max-width: 420px;
    margin: 0 auto 44px;
    line-height: 1.65;
  }

  .ab-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── KEYFRAMES ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

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

  /* ── TOTAL ADDRESSABLE MARKET ── */
  .sc-tam {
    padding: 10px 0 100px 0px;
    position: relative;
  }

  .sc-tam-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    display: block;
    opacity: 0.8;
  }



  .sc-tam-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 640px;
    margin-bottom: 64px;
    line-height: 1.6;
  }

  .sc-tam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .sc-tam-card {
    background: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease;
  }

  .sc-tam-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
  }

  /* Card Header */
  .sc-tam-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }

  .sc-tam-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    position: relative;
  }

  .sc-tam-icon-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .sc-tam-i-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .sc-tam-cat {
    display: flex;
    flex-direction: column;
  }

  .sc-tam-cat span:first-child {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
  }

  .sc-tam-cat span:last-child {
    font-size: 17px;
    color: #fff;
  }

  .sc-tam-action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1f2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
  }

  .sc-tam-action svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
  }

  /* Mid Section: Values */
  .sc-tam-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }

  .sc-tam-val {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
  }

  .sc-tam-sub-metrics {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }

  .sc-tam-sub-val {
    font-size: 13px;
    color: #555;
  }

  /* Bottom: Tabs/Chips */
  .sc-tam-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }

  .sc-tam-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    padding: 4px;
  }

  .sc-tam-tab {
    padding: 6px 16px;
    font-size: 12px;
    color: #666;
    border-radius: 100px;
    cursor: pointer;
  }

  .sc-tam-tab.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .sc-tam-chip {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .sc-tam-chip.up {
    background: rgba(78, 240, 160, 0.1);
    color: var(--green);
  }

  .sc-tam-chip.down {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
  }

  /* Graph background */
  .sc-tam-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(78, 240, 160, 0.08), transparent);
    clip-path: polygon(0 100%, 15% 85%, 30% 90%, 45% 70%, 60% 85%, 75% 65%, 90% 80%, 100% 100%);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .sc-tam-card.visible::after {
    opacity: 0.6;
    animation: graphReveal 2s cubic-bezier(0.19, 1, 0.22, 1) forwards,
      graphBreathing 4s ease-in-out infinite alternate 2s;
  }

  @keyframes graphReveal {
    0% {
      clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%, 0 100%, 0 100%, 0 100%, 0 100%);
    }

    100% {
      clip-path: polygon(0 100%, 15% 85%, 30% 90%, 45% 70%, 60% 85%, 75% 65%, 90% 80%, 100% 100%);
    }
  }

  @keyframes graphBreathing {
    0% {
      opacity: 0.4;
      transform: scaleY(0.98);
    }

    100% {
      opacity: 0.7;
      transform: scaleY(1.04);
    }
  }

  .sc-tam-card.val-gold::after {
    background: linear-gradient(to top, rgba(255, 184, 0, 0.05), transparent);
  }

  .sc-tam-card.val-blue::after {
    background: linear-gradient(to top, rgba(0, 163, 255, 0.05), transparent);
  }

  .sc-tam-card.val-purple::after {
    background: linear-gradient(to top, rgba(191, 90, 242, 0.05), transparent);
  }

  @media (max-width: 1200px) {
    .sc-tam-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .sc-tam-grid {
      grid-template-columns: 1fr;
    }

    .sc-tam-card {
      padding: 24px;
    }

    .sc-tam-val {
      font-size: 40px;
    }
  }

  /* ── PROBLEMS ACCORDION (FAQ STYLE) ── */
  .sc-faq-section {
    padding: 120px 0;
    position: relative;
    background: #04070f;
    overflow-x: clip;
  }

  /* Signal Mesh Background */
  .sc-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(78, 240, 160, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(78, 240, 160, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 1;
  }

  /* Moving Data Pulse */
  .sc-faq-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(78, 240, 160, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: faqPulse 10s infinite alternate ease-in-out;
  }

  @keyframes faqPulse {
    0% {
      transform: translate(-5%, -5%) scale(1);
      opacity: 0.3;
    }

    100% {
      transform: translate(5%, 5%) scale(1.2);
      opacity: 0.7;
    }
  }

  .sc-faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .sc-faq-left {
    position: sticky;
    top: 140px;
    align-self: start;
  }

  .sc-faq-watermark {
    margin-top: 80px;
    opacity: 0.15;
    transform: rotate(-10deg);
    pointer-events: none;
  }

  .sc-faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(78, 240, 160, 0.05);
    border: 1px solid rgba(78, 240, 160, 0.1);
    border-radius: 100px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
  }

  .sc-faq-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 32px;
  }

  .sc-faq-title span {
    color: var(--green);
  }

  .sc-faq-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #888;
    max-width: 440px;
  }

  /* Accordion List */
  .sc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }




  .sc-faq-item {
    background: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .sc-faq-item.active {
    border-color: rgba(78, 240, 160, 0.2);
    background: #0f1521;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }

  .sc-faq-trigger {
    padding: 16px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .sc-faq-trigger h4 {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 0;
    transition: color 0.3s;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
  }

  .sc-faq-trigger h4 .hidden-words {
    display: none;
  }

  .sc-faq-item.active .sc-faq-trigger h4 .hidden-words {
    display: inline;
  }

  .sc-faq-trigger h4 .ellipsis {
    display: inline;
    opacity: 0.5;
  }

  .sc-faq-item.active .sc-faq-trigger h4 .ellipsis {
    display: none;
  }

  .sc-faq-item.active .sc-faq-trigger h4 {
    color: var(--green);
  }

  .sc-faq-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s;
  }

  .sc-faq-item.active .sc-faq-btn {
    background: var(--green);
    color: #000;
    transform: rotate(180deg);
  }

  .sc-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .sc-faq-item.active .sc-faq-body {
    max-height: 800px;
  }

  .sc-faq-inner {
    padding: 0 25px 25px 25px;
  }

  .sc-faq-content-grid {

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
  }

  .sc-faq-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 11px;
    display: block;
  }

  .sc-faq-text {
    font-size: 15px;
    line-height: 1.6;
    color: #888;
  }

  .sc-faq-text strong {
    color: #fff;
    font-weight: 600;
  }

  .sc-faq-sol-box {
    background: rgba(78, 240, 160, 0.03);
    border: 1px solid rgba(78, 240, 160, 0.1);
    padding: 24px;
    border-radius: 20px;
    margin-top: 20px;
  }

  .sc-faq-sol-box p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 0;
  }

  .sc-faq-sol-box strong {
    color: var(--green);
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
  }

  @media (max-width: 1100px) {
    .sc-faq-layout {
      grid-template-columns: 1fr;
      gap: 56px;
    }

    .sc-faq-left {
      position: relative;
      top: 0;
    }
  }

  @media (max-width: 640px) {
    .sc-faq-trigger {
      padding: 24px;
    }

    .sc-faq-trigger h4 {
      font-size: 17px;
    }

    .sc-faq-content-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .sc-faq-inner {
      padding: 0 24px 32px 24px;
    }
  }

  /* ── VELOCITY SECTION ── */
  .sc-velocity {
    padding: 100px 0;
  }

  .sc-v-card {
    background: #080c17;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .sc-v-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(78, 240, 160, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .sc-v-tag {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
  }

  .sc-v-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 48px 0;
    position: relative;
  }

  .sc-v-grid::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 240, 160, 0.2), transparent);
    z-index: 1;
  }

  .sc-v-item {
    position: relative;
    z-index: 2;
  }

  .sc-v-time {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    background: #04070f;
    width: fit-content;
    margin-inline: auto;
    padding: 0 16px;
  }

  .sc-v-item p {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ── RESPONSIVE WHY ── */
  @media (max-width: 1024px) {
    .sc-why-grid {
      grid-template-columns: 1fr;
    }

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

    .sc-v-grid::after {
      display: none;
    }

    .sc-v-card {
      padding: 64px 32px;
    }
  }

  @media (max-width: 640px) {
    .sc-why-card {
      padding: 32px;
      flex-direction: column;
      gap: 24px;
    }

    .sc-v-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ── COUNTER ANIMATION ── */
  .counting {
    display: inline-block;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .ab-hero {
      padding: 130px 0 80px;
    }

    .ab-stats {
      flex-direction: column;
    }

    .ab-stat {
      border-right: none;
      border-bottom: .5px solid var(--b2);
    }

    .ab-stat:last-child {
      border-bottom: none;
    }

    .ab-story-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .ab-origin-text {
      padding: 40px 32px;
      border-right: none;
      border-bottom: 0.5px solid var(--b);
    }

    .ab-origin-img {
      min-height: 360px;
    }

    .ab-val-layout {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .ab-val-left {
      position: static;
    }

    .ab-val-grid {
      grid-template-columns: 1fr 1fr;
    }

    .ab-val-grid--2col {
      grid-template-columns: 1fr 1fr;
    }

    .ab-team-grid {
      grid-template-columns: 1fr 1fr;
    }

    .ab-p-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .ab-p-card {
      padding: 32px 28px;
    }

    .ab-tl-hdr {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 48px;
    }
  }

  @media (max-width: 991px) {
    .ab-tl-connect-svg {
      display: none;
    }

    .ab-tl-body {
      max-width: 100%;
      padding-left: 36px;
      border-left: 1px solid rgba(78, 240, 160, 0.2);
    }

    .ab-tl-step {
      height: auto;
      margin-bottom: 36px;
      justify-content: flex-start !important;
      position: relative;
    }

    .ab-tl-step:last-child {
      margin-bottom: 0;
    }

    .ab-tl-step::before {
      content: '';
      position: absolute;
      left: -41px;
      top: 6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--green);
      box-shadow: 0 0 8px rgba(78, 240, 160, 0.25);
    }

    .ab-tl-step-inner {
      width: 100%;
    }

    .ab-tl-step-yr {
      writing-mode: horizontal-tb;
      transform: none;
      position: static;
      font-size: 11px;
      letter-spacing: 0.12em;
      margin-bottom: 6px;
      height: auto;
      display: block;
      opacity: 0.7;
      text-align: start;
    }

    .ab-tl-step-pill {
      white-space: normal;
    }
  }

  @media (max-width: 620px) {

    .ab-val-grid,
    .ab-val-grid--2col {
      grid-template-columns: 1fr;
    }

    .ab-team-grid {
      grid-template-columns: 1fr;
    }

    .ab-p-grid {
      grid-template-columns: 1fr;
      margin-top: 40px;
    }

    .ab-p-title {
      font-size: 20px;
    }

    .ab-origin-text {
      padding: 32px 24px;
    }

    .ab-origin-img {
      min-height: 300px;
    }

    .ab-origin-overlay {
      padding: 24px;
    }

    .ab-origin-quote p {
      font-size: 16px;
    }
  }

  /* -- PROCESS SECTION (3 STEPS) -- */
  .sc-process-section {
    padding: 140px 0;
    background: #000;
    position: relative;
    overflow: hidden;
  }

  .sc-process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
  }

  .sc-p-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
  }

  .sc-p-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: white;
  }

  .sc-p-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }

  .sc-p-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .sc-p-info .sc-p-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
  }

  .sc-p-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .sc-p-info p {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.6;
    max-width: 90%;
  }

  .sc-p-visual {
    background: #0c0e14;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    aspect-ratio: 1 / 1.1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sc-p-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(78, 240, 160, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
  }

  .sc-p-mock-ui {
    position: relative;
    z-index: 2;
    width: 80%;
  }

  .sc-p-arrow {
    position: absolute;
    right: -30px;
    top: 60%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    z-index: 10;
    font-size: 18px;
  }

  @media (max-width: 992px) {
    .sc-process-grid {
      grid-template-columns: 1fr;
      gap: 80px;
    }

    .sc-process-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .sc-p-arrow {
      display: none;
    }

    .sc-p-visual {
      aspect-ratio: 16 / 9;
    }
  }

  /* Mock UI Visuals for Process Steps */
  .sc-p-sync-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sc-p-nodes {
    display: flex;
    gap: 12px;
  }

  .sc-p-node {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--t2);
  }

  .sc-p-node.active {
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 0 15px rgba(78, 240, 160, 0.2);
  }

  .sc-p-center-hub {
    width: 60px;
    height: 60px;
    background: #04070f;
    border: 2px solid var(--green);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sc-p-pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.2;
    animation: scPPulse 2s infinite;
  }

  @keyframes scPPulse {
    0% {
      transform: scale(1);
      opacity: 0.3;
    }

    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .sc-p-chart {
    width: 100%;
    padding: 20px;
  }

  .sc-p-stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
  }

  /* ── MOATS SECTION (Split Layout) ── */
  .sc-moats {
    padding: 50px 0 50px;
    background: var(--bg);
    position: relative;
  }

  /* Centered header above the split */
  .moats-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
  }



  .moats-head p {
    font-size: 16px;
    color: var(--t2);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Split body: left=cards grid, right=image */
  .moats-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }

  /* Left: 2-column card grid */
  .moats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
  }

  /* Individual dark card */
  .moat-card {
    background: var(--bg2);
    border: 1px solid var(--b);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .moat-card:hover {
    border-color: rgba(78, 240, 160, 0.2);
    background: var(--bg3);
    transform: translateY(-4px);
  }

  /* Circular green icon */
  .moat-icon {
    width: 36px;
    height: 36px;
    background: rgba(78, 240, 160, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
  }

  .moat-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
  }

  /* Card text: bold title inline with description */
  .moat-card h3 {
    font-size: 14px;
    font-weight: 400;
    color: var(--t2);
    line-height: 1.65;
    margin: 0;
  }

  .moat-card h3 strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }

  /* Right: image panel — equal height to left column */
  .moats-image {
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
  }

  .moats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .moats-body {
      grid-template-columns: 1fr;
    }

    .moats-image {
      position: static;
      height: 400px;
      order: -1;
      /* image above on tablet */
    }

    .moats-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .moats-cards {
      grid-template-columns: 1fr;
    }

    .moats-image {
      height: 280px;
    }

    .moat-card {
      padding: 24px;
    }
  }

  .sc-p-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sc-p-stat span {
    font-size: 9px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .sc-p-stat strong {
    font-size: 16px;
    color: var(--green);
    font-family: 'Syne', sans-serif;
  }

  /* ── ROADMAP SECTION ── */
  .sc-roadmap {
    padding: 50px 0px 100px 0px;
    position: relative;
    overflow: hidden;
  }

  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
  }

  /* Connecting Line */
  .roadmap-grid::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(78, 240, 160, 0.2) 0%,
        rgba(255, 180, 80, 0.2) 33%,
        rgba(100, 140, 255, 0.2) 66%,
        rgba(200, 140, 255, 0.2) 100%);
    z-index: 1;
  }

  .roadmap-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  .roadmap-top {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .roadmap-dot {
    width: 14px;
    height: 14px;
    background: var(--theme);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px var(--theme);
  }

  .roadmap-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--theme);
    opacity: 0.2;
    filter: blur(10px);
  }

  .roadmap-info {
    text-align: center;
    margin-bottom: 32px;
  }

  .rm-phase {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
  }

  .roadmap-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }

  .rm-time {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--theme);
  }

  .roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .rm-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--t2);
    text-align: left;
    transition: all 0.3s ease;
  }

  .rm-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--theme);
    color: white;
  }

  .rm-chip {
    margin-top: auto;
    border: 1px solid var(--theme);
    background: rgba(255, 255, 255, 0.02);
    padding: 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--theme);
    text-align: center;
    opacity: 0.8;
  }

  /* Responsive Roadmap */
  @media (max-width: 1024px) {
    .roadmap-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .roadmap-grid::after {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .roadmap-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 50px 0 100px;
    position: relative;
    background: var(--bg2);
  }

  .cta-inner {
    background: var(--bg2);
    border: 1px solid var(--b);
    border-radius: 48px;
    padding: 80px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--green);
    filter: blur(120px);
    opacity: 0.08;
    border-radius: 50%;
  }


  .cta-note {
    font-size: 15px;
    color: var(--t2);
    margin-top: 24px;
    max-width: 440px;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    .cta-inner {
      flex-direction: column;
      text-align: center;
      padding: 64px 32px;
    }

    .cta-note {
      margin: 24px auto 0;
    }

    .cta-btns {
      justify-content: center;
      width: 100%;
    }

    .cta-btns button {
      flex: 1;
    }
  }

  @media (max-width: 600px) {
    .cta-btns {
      flex-direction: column;
    }
  }

  @media (max-width: 1299.98px) {
    .sc-contact-h1 {
      font-size: clamp(34px, 4vw, 43px);
      line-height: 51px;
    }

    .sc-contact-right {
      padding: 40px 30px;
    }

    .sc-heading {
      font-size: clamp(28px, 6vw, 89px);
    }
  }

  @media (max-width: 1199.98px) {
    .cta-inner h2 {
      font-size: clamp(24px, 4.5vw, 46px);
      font-weight: 800;
      line-height: 58px;
    }
  }

  @media (max-width: 991.98px) {
    .ab-hero-sub {
      font-size: 16px;
    }

    .ab-story {
      padding: 0px 0px 80px 0px;
    }

    .ab-tl {
      padding: 60px 0 10px;
    }

    .cmp-section {
      display: none;
    }

    .service-container {
      padding: 0 0 4rem;
    }

    .pr-section {
      padding: 50px 0 35px;
    }

    .contact-bg-text-v3 {
      font-size: clamp(160px, 35vw, 185px);
    }

    /* .sc-hero-wrap {
      padding-top: 2rem;
      padding-bottom: 3rem;
    } */
    .sc-heading {
      line-height: 1.3;
    }

    .sc-contact-h1 {
      font-size: clamp(34px, 7vw, 85px);
      line-height: 74px;
    }

    .sc-contact-h1 {
      font-size: clamp(34px, 8vw, 98px);
      line-height: 67px;
    }

    .sc-contact-h1 {
      font-size: clamp(34px, 10vw, 98px);
      line-height: 65px;
    }

    .contact-bg-text-v3 {
      display: none;
    }

    .btn-ghost,
    .btn-primary {
      max-width: 200px;
      display: flex;
      justify-content: center;
    }

    .tcard:hover {
      border-color: rgba(78, 240, 160, 0.2);
      transform: translateY(0px);
    }

    .cta-section {
      padding: 0px 0 100px;
      position: relative;
      background: var(--bg);
    }

    .sc-hero-wrap {
      padding-top: 9rem;
      padding-bottom: 3rem;
    }

    .sc-hero-wrap.contact {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    .ab-member-info {
      padding: 1.75rem 2rem 1rem;
    }

    .ab-team-name {
      font-size: 21px;
    }

    .sc-faq-section {
      padding: 0px 0px 100px;
    }
  }

  @media (max-width: 767.98px) {
    .h-title {
      font-size: clamp(49px, 8vw, 126px);
    }

    .h-trust {
      display: none;
    }

    .h-split-container {
      grid-template-columns: 1fr;
      gap: 0rem;
    }

    .hero-split {
      padding: 0rem 0 0rem;
    }

    .s-title {
      font-size: clamp(28px, 7vw, 85px);
    }

    .cta-inner h2 {
      font-size: clamp(24px, 7vw, 50px);
      font-weight: 800;
      line-height: 54px;
    }

    .cta-btns {
      flex-direction: row;
    }

    .cta-note {
      margin: 7px auto 0;
    }

    .cta-inner {
      gap: 30px;
    }

    .ab-val-left .ab-h2 {
      font-size: clamp(32px, 6vw, 51px);
    }

    .ab-values {
      padding: 0px 0 80px;
    }

    .ab-tl {
      padding: 0px 0 10px;
    }
  }

  @media (max-width: 575.98px) {
    .h-actions {
      display: block !important;
    }

    .btn-link {
      display: flex;
      justify-content: center;
      margin-top: 25px;
    }
  }

  @media (max-width: 400.98px) {
    .sc-contact-h1 {
      font-size: clamp(46px, 10vw, 104px);
      line-height: 52px;
    }

    .h-title {
      font-size: clamp(54px, 12vw, 136px);
    }

    .hero-split {
      padding: 10rem 0 0rem;
    }

    .h-title {
      font-size: clamp(49px, 7vw, 120px);
    }

    .h-desc {
      font-size: 17px;
    }


    .s-title {
      font-size: clamp(28px, 10vw, 88px);
    }

    .cta-inner h2 {
      font-size: clamp(24px, 8vw, 52px);
      font-weight: 800;
      line-height: 35px;
    }

    .tes {
      padding-bottom: 30px;
    }

    .cta-btns {
      display: grid;
      gap: 12px;
      flex-shrink: 0;
    }

    .pcard {
      min-height: 300px;
      padding: 2.5rem 2rem;
    }
  }

  /* ─── PLATFORM FEATURES ─────────────────────────────── */
  .feat-section {
    padding: 5rem 0 6rem;
  }

  .feat-head {
    margin-bottom: 3.5rem;
  }

  .feat-badge {
    display: inline-block;
    padding: .35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(78, 240, 160, .25);
    background: rgba(78, 240, 160, .07);
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .feat-card {
    background: var(--bg);
    border: 1px solid var(--b2);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: border-color .25s, transform .25s;
  }

  .feat-card:hover {
    border-color: rgba(78, 240, 160, .28);
    transform: translateY(-3px);
  }

  .feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    flex-shrink: 0;
  }

  .feat-icon--green {
    background: rgba(78, 240, 160, .12);
    color: var(--green);
  }

  .feat-icon--blue {
    background: rgba(100, 140, 255, .12);
    color: #648cff;
  }

  .feat-icon--purple {
    background: rgba(160, 100, 255, .12);
    color: #a064ff;
  }

  .feat-icon--red {
    background: rgba(255, 107, 107, .12);
    color: var(--red);
  }

  .feat-icon--amber {
    background: rgba(255, 180, 80, .12);
    color: var(--amber);
  }

  .feat-icon--cyan {
    background: rgba(100, 220, 255, .10);
    color: #64dcff;
  }

  .feat-card-title {

    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }

  .feat-card-desc {
    font-size: .83rem;
    color: var(--t2);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
  }

  .feat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0rem;
    padding-top: 0rem;
  }

  .feat-addon-price {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green);
  }

  .feat-addon-price span {
    font-size: .72rem;
    font-weight: 500;
    opacity: .7;
  }

  .feat-learn {
    font-size: .78rem;
    font-weight: 600;
    color: var(--t2);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
  }

  .feat-learn:hover {
    color: var(--green);
  }

  @media (max-width: 1100px) {
    .feat-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 767px) {
    .feat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 560px) {
    .feat-section {
      padding: 3.5rem 0 4rem;
    }

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

    .feat-head {
      margin-bottom: 2.5rem;
    }
  }

  /* ─── PRE-CTA BRIDGE ────────────────────────────────── */
  .pbridge-section {
    padding: 5rem 0 6rem;
    background: var(--bg);
  }

  .pbridge-card {
    background: var(--bg2);
    border: 1px solid rgba(78, 240, 160, .18);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
  }

  .pbridge-card::before,
  .pbridge-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 240px;
    pointer-events: none;
    z-index: 0;
  }

  .pbridge-card::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(78, 240, 160, .1) 0%, transparent 70%);
  }

  .pbridge-card::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(78, 240, 160, .1) 0%, transparent 70%);
  }

  .pbridge-card>* {
    position: relative;
    z-index: 1;
  }

  .pbridge-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--b);
  }

  .pbridge-stat {
    text-align: center;
    padding: 0 1rem;
  }

  .pbridge-val {
    font-size: clamp(1.8rem, 2.6vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .pbridge-divider {
    width: 1px;
    height: 60px;
    background: var(--b2);
    justify-self: center;
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .pbridge-card {
      padding: 3rem 2rem;
    }

    .pbridge-stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--b2);
      border-radius: 14px;
      overflow: hidden;
      padding-top: 0;
      margin-top: 2.5rem;
      border-top: none;
      border: 1px solid var(--b2);
    }

    .pbridge-divider {
      display: none;
    }

    .pbridge-stat {
      background: var(--bg2);
      padding: 1.75rem 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .pbridge-section {
      padding: 3rem 0 4rem;
    }

    .pbridge-card {
      padding: 2.5rem 1.25rem;
      border-radius: 16px;
    }

    .pbridge-stats {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ─── DIY & CUSTOM OPTIONS ───────────────────────────── */
  .diy-section {
    padding: 5rem 0 6rem;
    background: var(--bg2);
  }

  .diy-header {
    max-width: 100%;
    margin-bottom: 3.5rem;
  }

  .diy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .diy-card {
    background: var(--bg);
    border: 1px solid var(--b2);
    border-radius: 20px;
    padding: 2.75rem 2.5rem 3rem;
  }

  .diy-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 180, 80, .12);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .diy-icon-green {
    background: rgba(78, 240, 160, .1);
    color: var(--green);
  }

  .diy-card-title {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 800;
    line-height: 1.2;
  }

  .diy-amber {
    color: var(--amber);
  }

  .diy-green {
    color: var(--green);
  }

  .diy-feat-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }

  .diy-feat-list li {
    font-size: .875rem;
    color: var(--t2);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.45;
  }

  .diy-feat-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: .82rem;
  }

  .diy-price {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    margin-top: 2rem;
  }

  .diy-price-unit {
    font-size: 1rem;
    font-weight: 600;
    opacity: .7;
  }

  .diy-price-note {
    font-size: .78rem;
    color: var(--t2);
    margin-top: .5rem;
  }

  .diy-cta {
    margin-top: 1.75rem;
    display: inline-block;
  }

  @media (max-width: 900px) {
    .diy-card {
      padding: 2.25rem 2rem;
    }
  }

  @media (max-width: 767px) {
    .diy-section {
      padding: 3.5rem 0 4.5rem;
    }

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

    .diy-header {
      margin-bottom: 2.5rem;
    }
  }

  @media (max-width: 480px) {
    .diy-card {
      padding: 2rem 1.5rem;
      border-radius: 16px;
    }
  }

  /* ─── FAQ ────────────────────────────────────────────── */
  .faq-section {
    padding: 5rem 0 6rem;
    background: var(--bg);
    position: relative;
  }

  .faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 10% 50%, rgba(78, 240, 160, .06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 90% 20%, rgba(100, 140, 255, .05) 0%, transparent 65%);
    pointer-events: none;
  }

  .faq-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .faq-layout {
    position: relative;
    z-index: 1;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 5rem;
    align-items: start;
  }

  .faq-left {
    position: sticky;
    top: 5rem;
  }

  .faq-right {
    border: 1px solid var(--b2);
    border-radius: 20px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--b2);
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-summary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    list-style: none;
    background: var(--bg2);
    transition: background .2s;
    user-select: none;
  }

  .faq-summary::-webkit-details-marker {
    display: none;
  }

  .faq-summary::marker {
    display: none;
  }

  .faq-item[open]>.faq-summary {
    background: rgba(78, 240, 160, .04);
  }

  .faq-num {

    font-size: .68rem;
    font-weight: 700;
    color: var(--green);
    opacity: .65;
    min-width: 22px;
    letter-spacing: .06em;
  }

  .faq-q {

    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
    line-height: 1.35;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--b2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    flex-shrink: 0;
    transition: background .2s, border-color .2s, color .2s, transform .3s;
  }

  .faq-item[open] .faq-icon {
    background: rgba(78, 240, 160, .1);
    border-color: rgba(78, 240, 160, .3);
    color: var(--green);
    transform: rotate(45deg);
  }

  .faq-body {
    padding: 1.25rem 1.75rem 1.75rem calc(1.75rem + 22px + 1.25rem);
    background: var(--bg2);
    border-top: 1px solid var(--b2);
  }

  .faq-a {
    font-size: .875rem;
    color: var(--t2);
    line-height: 1.75;
    margin: 0;
  }

  @media (max-width: 900px) {
    .faq-layout {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .faq-left {
      position: static;
    }
  }

  @media (max-width: 560px) {
    .faq-section {
      padding: 3.5rem 0 4.5rem;
    }

    .faq-summary {
      padding: 1.1rem 1.25rem;
      gap: 1rem;
    }

    .faq-body {
      padding: 1rem 1.25rem 1.5rem calc(1.25rem + 22px + 1rem);
    }
  }

  /* ─── FINAL CTA ──────────────────────────────────────── */
  .fcta-section {
    background:
      radial-gradient(circle at 20% 20%, #0b683b 0%, transparent 40%),
      radial-gradient(circle at 80% 80%, #063d23 0%, transparent 40%),
      #032616;
    background-size: 200% 200%;
    animation: liquid-bg 20s ease-in-out infinite alternate;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
  }

  .fcta-card {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    padding: 4.5rem 3.5rem;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    backdrop-filter: blur(6px);
  }

  .fcta-heading {

    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .fcta-accent {
    color: var(--green);
  }

  .fcta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto 2.5rem;
  }

  .fcta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
  }

  .fcta-btn-primary {
    background: var(--green);
    color: #000;

    font-size: .85rem;
    font-weight: 700;
    padding: .9rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: opacity .2s, transform .2s;
  }

  .fcta-btn-primary:hover {
    opacity: .88;
    transform: translateY(-1px);
  }

  .fcta-btn-ghost {
    background: rgba(255, 255, 255, .07);
    color: #fff;

    font-size: .85rem;
    font-weight: 600;
    padding: .9rem 1.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .18);
    text-decoration: none;
    transition: background .2s, border-color .2s;
  }

  .fcta-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .35);
  }

  .fcta-disclaimer {
    font-size: .72rem;
    color: rgb(255, 255, 255);
    letter-spacing: .03em;
    margin: 0;
  }

  @media (max-width: 767px) {
    .fcta-section {
      padding: 3.5rem 0 4rem;
    }

    .fcta-card {
      padding: 3rem 2rem;
      border-radius: 20px;
    }
  }

  @media (max-width: 480px) {
    .fcta-btns {
      flex-direction: column;
    }

    .fcta-btn-primary,
    .fcta-btn-ghost {
      text-align: center;
    }

    .fcta-card {
      padding: 2.5rem 1.5rem;
    }
  }