    :root {
      --bg: #060D10;
      --bg-2: #0A1318;
      --surface: #0F1C22;
      --surface-2: #142028;
      --border: rgba(255, 255, 255, .06);
      --border-glow: rgba(52, 199, 89, .3);

      /* Watermelon colors: green + red */
      --green: #34C759;
      --green-dim: rgba(52, 199, 89, .12);
      --green-glow: rgba(52, 199, 89, .35);
      --green-deep: #1E7E34;
      --red: #FF3B30;
      --red-dim: rgba(255, 59, 48, .1);
      --red-glow: rgba(255, 59, 48, .3);
      --cream: #FFF8F0;

      --text: #E8EDF0;
      --text-2: #8B9DAD;
      --text-3: #4A6070;

      --font-display: 'Syne', system-ui, sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --r-sm: 8px;
      --r-md: 14px;
      --r-lg: 22px;
      --r-xl: 32px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

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

    p {
      color: var(--text-2);
      line-height: 1.75;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      color: var(--text);
      font-weight: 700;
      line-height: 1.15;
    }

    /* ======= ANIMATED CANVAS ======= */
    #particleCanvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ======= GRID OVERLAY ======= */
    .bg-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(52, 199, 89, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 199, 89, .025) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 20%, transparent 100%);
    }

    main {
      position: relative;
      z-index: 1;
    }

    /* ======= HEADER ======= */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(6, 13, 16, .88);
      backdrop-filter: blur(24px) saturate(200%);
      -webkit-backdrop-filter: blur(24px) saturate(200%);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 0 0 1px rgba(52, 199, 89, .2), 0 0 20px rgba(52, 199, 89, .15);
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
    }

    .brand-name {
      color: var(--text);
      display: inline-flex;
      align-items: flex-start;
      gap: .08em;
      white-space: nowrap;
    }

    .brand-dot {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      margin-left: 1.25rem;
    }

    .nav-links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--text-2);
      letter-spacing: .03em;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .team-suffix {
      font-size: .58em;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: .9;
      margin-left: .08em;
      transform: translateY(-.28em);
      display: inline-block;
    }

    .btn-nav {
      background: var(--green);
      color: #060D10;
      padding: .55rem 1.35rem;
      border-radius: var(--r-md);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: .88rem;
      transition: box-shadow .25s, transform .2s;
    }

    .btn-nav:hover {
      box-shadow: 0 0 28px var(--green-glow);
      transform: translateY(-1px);
    }

    .menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      padding: .5rem .7rem;
      border-radius: var(--r-sm);
      cursor: pointer;
      font-size: 1rem;
      transition: border-color .2s;
    }

    .menu-btn:hover {
      border-color: rgba(52, 199, 89, .3);
    }

    #mobileMenu {
      background: rgba(6, 13, 16, .97);
      border-top: 1px solid var(--border);
      padding: 1.5rem 2rem 2rem;
    }

    #mobileMenu .links {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    #mobileMenu a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-2);
    }

    #mobileMenu a:hover {
      color: var(--green);
    }

    @media (max-width: 860px) {
      .nav-links {
        display: none;
      }

      .menu-btn {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
      }
    }

    /* ======= HERO ======= */
    .hero {
      min-height: 96vh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      padding: 5rem 0 4rem;
    }

    /* Big radial glow */
    .hero::before {
      content: '';
      position: absolute;
      top: -30%;
      left: 50%;
      transform: translateX(-50%);
      width: 1100px;
      height: 800px;
      background: radial-gradient(ellipse at center,
          rgba(52, 199, 89, .1) 0%,
          rgba(52, 199, 89, .04) 40%,
          transparent 70%);
      pointer-events: none;
    }

    /* Floating watermelon slices in background */
    .float-deco {
      position: absolute;
      pointer-events: none;
      opacity: .06;
      animation: floatDeco 12s ease-in-out infinite;
    }

    .float-deco img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: saturate(0) brightness(2);
    }

    .float-deco:nth-child(1) {
      width: 300px;
      height: 300px;
      top: 5%;
      right: -80px;
      animation-delay: 0s;
    }

    .float-deco:nth-child(2) {
      width: 200px;
      height: 200px;
      bottom: 10%;
      left: -50px;
      animation-delay: -4s;
    }

    .float-deco:nth-child(3) {
      width: 150px;
      height: 150px;
      top: 40%;
      right: 5%;
      animation-delay: -8s;
    }

    .float-deco:nth-child(4) {
      width: 300px;
      height: 300px;
      top: 1%;
      left: -50px;
      animation-delay: 0s;
    }

    @keyframes floatDeco {

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

      50% {
        transform: translateY(-30px) rotate(8deg);
      }
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .4rem 1.1rem .4rem .6rem;
      border: 1px solid rgba(52, 199, 89, .3);
      border-radius: 999px;
      background: rgba(52, 199, 89, .06);
      font-size: .78rem;
      font-weight: 700;
      color: var(--green);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeInDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .badge-pulse {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--green);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

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

      50% {
        opacity: .5;
        transform: scale(1.5)
      }
    }

    .hero-logo {
      width: 120px;
      height: 120px;
      margin: 0 auto 1.5rem;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(52, 199, 89, .2), 0 8px 60px rgba(52, 199, 89, .2), 0 0 120px rgba(52, 199, 89, .08);
      animation: fadeInUp .7s .05s cubic-bezier(.22, 1, .36, 1) both;
      position: relative;
    }

    .hero-logo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent 50%);
      border-radius: inherit;
    }

    .hero-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 2rem + 4vw, 5.8rem);
      line-height: 1.04;
      letter-spacing: -.025em;
      margin-bottom: 1.5rem;
      animation: fadeInUp .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero h1 .green {
      color: var(--green);
    }

    .hero h1 .outline {
      -webkit-text-stroke: 1.5px rgba(52, 199, 89, .45);
      color: transparent;
    }

    .hero-sub {
      font-size: clamp(1rem, .9rem + .5vw, 1.2rem);
      color: var(--text-2);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      animation: fadeInUp .7s .2s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 4rem;
      animation: fadeInUp .7s .3s cubic-bezier(.22, 1, .36, 1) both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--green);
      color: #060D10;
      padding: .9rem 2.2rem;
      border-radius: var(--r-md);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      transition: box-shadow .3s, transform .2s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .3), transparent 60%);
    }

    .btn-primary:hover {
      box-shadow: 0 0 40px var(--green-glow), 0 8px 24px rgba(52, 199, 89, .2);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .03);
      color: var(--text);
      padding: .9rem 2.2rem;
      border-radius: var(--r-md);
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1rem;
      transition: border-color .25s, background .25s, transform .2s;
    }

    .btn-ghost:hover {
      border-color: rgba(52, 199, 89, .3);
      background: var(--green-dim);
      transform: translateY(-2px);
    }

    /* Stats strip */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: rgba(255, 255, 255, .02);
      overflow: hidden;
      animation: fadeInUp .7s .4s cubic-bezier(.22, 1, .36, 1) both;
    }

    .stat-item {
      padding: 1.4rem 1.5rem;
      text-align: center;
      border-right: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

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

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .stat-item:hover::before {
      opacity: 1;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--green);
      display: block;
      line-height: 1;
    }

    .stat-lbl {
      font-size: .75rem;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: .35rem;
      display: block;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

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

    .section-tag {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--green);
      margin-bottom: .75rem;
    }

    .section-head {
      margin-bottom: 3.5rem;
    }

    .section-head.c {
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem);
      margin-bottom: .75rem;
    }

    .section-head p {
      max-width: 580px;
      font-size: 1.05rem;
    }

    .section-head.c p {
      margin: 0 auto;
    }

    .divider {
      width: 44px;
      height: 2px;
      background: linear-gradient(90deg, var(--green), transparent);
      border-radius: 2px;
      margin: .9rem 0;
    }

    .section-head.c .divider {
      margin: .9rem auto;
    }

    /* ======= SERVICES ======= */
    #services {
      background: var(--bg-2);
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(52, 199, 89, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 1.25rem;
    }

    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 2.25rem;
      transition: border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .service-card:hover {
      border-color: rgba(52, 199, 89, .25);
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5), 0 0 40px rgba(52, 199, 89, .06);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.35rem;
      margin-bottom: 1.35rem;
      background: var(--green-dim);
      color: var(--green);
      border: 1px solid rgba(52, 199, 89, .15);
      transition: box-shadow .3s;
    }

    .service-card:hover .service-icon {
      box-shadow: 0 0 24px var(--green-glow);
    }

    .service-card h3 {
      font-size: 1.1rem;
      margin-bottom: .6rem;
    }

    .service-card p {
      font-size: .92rem;
    }

    .service-features {
      list-style: none;
      margin-top: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: .45rem;
      border-top: 1px solid var(--border);
      padding-top: 1.25rem;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .82rem;
      color: var(--text-3);
    }

    .service-features li i {
      color: var(--green);
      font-size: .72rem;
      flex-shrink: 0;
    }

    .service-card:hover .service-features li {
      color: var(--text-2);
    }

    .service-card:hover .service-features li i {
      opacity: 1;
    }

    /* ======= TECHNOLOGIES ======= */
    #technologies {
      background: var(--bg);
    }

    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

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

    .tech-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem 2rem;
      transition: border-color .3s, transform .3s;
    }

    .tech-card:hover {
      border-color: rgba(52, 199, 89, .2);
      transform: translateY(-3px);
    }

    .tech-card-hd {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.25rem;
    }

    .tech-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--green-dim);
      border: 1px solid rgba(52, 199, 89, .15);
      display: grid;
      place-items: center;
      color: var(--green);
      font-size: .9rem;
    }

    .tech-card h3 {
      font-size: 1rem;
      font-weight: 700;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      list-style: none;
    }

    .pill {
      font-size: .79rem;
      font-weight: 500;
      padding: .35rem .8rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--text-2);
      background: rgba(255, 255, 255, .02);
      transition: border-color .2s, color .2s, transform .2s;
    }

    .pill:hover {
      border-color: rgba(52, 199, 89, .3);
      color: var(--green);
      transform: translateY(-1px);
    }

    /* ======= PROJECTS ======= */
    #projects {
      background: var(--bg-2);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 1.25rem;
    }

    .proj-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
    }

    .proj-card:hover {
      border-color: rgba(52, 199, 89, .25);
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
    }

    .proj-hd {
      padding: 1.75rem 2rem 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
    }

    .proj-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: var(--green-dim);
      border: 1px solid rgba(52, 199, 89, .15);
      display: grid;
      place-items: center;
      color: var(--green);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .status {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .09em;
      padding: .28rem .7rem;
      border-radius: 999px;
    }

    .s-live {
      background: rgba(52, 199, 89, .1);
      color: #4ADE80;
      border: 1px solid rgba(52, 199, 89, .2);
    }

    .s-beta {
      background: rgba(255, 214, 10, .1);
      color: #FFD60A;
      border: 1px solid rgba(255, 214, 10, .2);
    }

    .s-dev {
      background: rgba(10, 132, 255, .1);
      color: #0A84FF;
      border: 1px solid rgba(10, 132, 255, .2);
    }

    .proj-body {
      padding: 1.25rem 2rem;
      flex: 1;
    }

    .proj-body h3 {
      font-size: 1.1rem;
      margin-bottom: .5rem;
    }

    .proj-metric {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      margin-top: .9rem;
      font-size: .78rem;
      font-weight: 700;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid rgba(52, 199, 89, .15);
      border-radius: 999px;
      padding: .25rem .75rem;
    }

    .proj-metric i {
      font-size: .7rem;
    }

    .proj-foot {
      padding: 1.25rem 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .tech-stack {
      font-size: .78rem;
      color: var(--text-3);
    }

    .btn-proj {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .8rem;
      font-weight: 700;
      font-family: var(--font-display);
      color: var(--green);
      padding: .45rem 1rem;
      border: 1px solid rgba(52, 199, 89, .2);
      border-radius: 999px;
      transition: background .2s, box-shadow .2s;
    }

    .btn-proj:hover {
      background: var(--green-dim);
      box-shadow: 0 0 16px rgba(52, 199, 89, .12);
    }

    .btn-proj.dis {
      opacity: .3;
      pointer-events: none;
    }

    /* ======= TESTIMONIALS ======= */
    #testimonials {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #testimonials::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(52, 199, 89, .05) 0%, transparent 65%);
      pointer-events: none;
    }

    /* ── Rating overview bar ── */
    .testi-overview {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 1.75rem 2.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .testi-overview::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(52, 199, 89, .5), transparent);
    }

    .testi-score {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .3rem;
    }

    .score-num {
      font-family: var(--font-display);
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--green);
      line-height: 1;
    }

    .score-stars {
      color: #FFD60A;
      font-size: 1rem;
      letter-spacing: 3px;
    }

    .score-lbl {
      font-size: .73rem;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .testi-sep {
      width: 1px;
      height: 56px;
      background: var(--border);
    }

    @media(max-width:600px) {
      .testi-sep {
        width: 100%;
        height: 1px;
      }
    }

    .testi-highlights {
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .testi-hl {
      display: flex;
      align-items: center;
      gap: .65rem;
      font-size: .88rem;
      color: var(--text-2);
    }

    .testi-hl i {
      color: var(--green);
      width: 14px;
      text-align: center;
      flex-shrink: 0;
    }

    /* ── Featured testimonial ── */
    .testi-featured {
      background: linear-gradient(135deg, rgba(52, 199, 89, .07) 0%, rgba(52, 199, 89, .02) 60%, transparent 100%);
      border: 1px solid rgba(52, 199, 89, .25);
      border-radius: var(--r-xl);
      padding: 2.75rem 3rem;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .testi-featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green) 40%, transparent);
    }

    .testi-featured .qmark-bg {
      position: absolute;
      top: -1.5rem;
      right: 2rem;
      font-size: 9rem;
      line-height: 1;
      color: var(--green);
      opacity: .07;
      font-family: Georgia, serif;
      pointer-events: none;
      user-select: none;
    }

    .testi-featured .stars {
      font-size: .85rem;
      letter-spacing: 3px;
      margin-bottom: 1.25rem;
    }

    .testi-featured blockquote {
      font-size: 1.1rem;
      color: var(--text);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 2rem;
      max-width: 820px;
    }

    .testi-featured-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .testi-featured-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .avatar-lg {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #34C759, #1E7E34);
      display: grid;
      place-items: center;
      color: #060D10;
      font-size: 1.15rem;
      font-weight: 800;
      font-family: var(--font-display);
      flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(52, 199, 89, .3);
    }

    .feat-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
    }

    .feat-role {
      font-size: .82rem;
      color: var(--text-2);
      margin-top: .2rem;
    }

    .verified-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .09em;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid rgba(52, 199, 89, .2);
      border-radius: 999px;
      padding: .32rem .9rem;
    }

    /* ── Regular quote cards ── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 1.25rem;
    }

    .quote-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem 1.75rem 1.5rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
    }

    .quote-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .quote-card:hover {
      border-color: rgba(52, 199, 89, .22);
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 28px rgba(52, 199, 89, .05);
    }

    .quote-card:hover::before {
      opacity: 1;
    }

    .qmark {
      font-size: 2.4rem;
      line-height: 1;
      color: var(--green);
      opacity: .2;
      font-family: Georgia, serif;
    }

    .quote-card blockquote {
      font-size: .93rem;
      color: var(--text-2);
      line-height: 1.9;
      margin-top: .5rem;
      font-style: italic;
      flex: 1;
    }

    .quote-card footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: .85rem;
      border-top: 1px solid var(--border);
      background: rgba(255, 255, 255, .018);
      margin-left: -1.75rem;
      margin-right: -1.75rem;
      margin-bottom: -1.5rem;
      padding: 1.1rem 1.75rem;
      border-radius: 0 0 calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px);
    }

    .footer-author {
      flex: 1;
      min-width: 0;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(52, 199, 89, .3), rgba(52, 199, 89, .08));
      border: 1px solid rgba(52, 199, 89, .22);
      display: grid;
      place-items: center;
      color: var(--green);
      font-size: .9rem;
      font-weight: 800;
      font-family: var(--font-display);
    }

    .q-name {
      font-size: .84rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .q-role {
      font-size: .74rem;
      color: var(--text-3);
      margin-top: .12rem;
    }

    .q-check {
      color: var(--green);
      font-size: .75rem;
      flex-shrink: 0;
      opacity: .7;
    }

    /* Stars */
    .stars {
      color: #FFD60A;
      font-size: .75rem;
      letter-spacing: 1px;
      margin-bottom: .35rem;
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .1rem;
    }

    .card-top .qmark {
      position: static;
      font-size: 2.2rem;
      opacity: .2;
      line-height: 1;
    }

    /* ======= CONTACT ======= */
    #contact {
      background: var(--bg-2);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 2rem;
    }

    @media(max-width:900px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }
    }

    .contact-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 2.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

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

    .form-group {
      margin-bottom: 1.2rem;
    }

    label {
      display: block;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: .45rem;
    }

    input,
    textarea,
    select {
      width: 100%;
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: .85rem 1rem;
      color: var(--text);
      font-family: var(--font-body);
      font-size: .95rem;
      transition: border-color .25s, box-shadow .25s;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--text-3);
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: rgba(52, 199, 89, .4);
      box-shadow: 0 0 0 3px rgba(52, 199, 89, .06);
    }

    textarea {
      resize: vertical;
      min-height: 140px;
    }

    .btn-submit {
      width: 100%;
      background: var(--green);
      color: #060D10;
      border: none;
      cursor: pointer;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      padding: 1rem 2rem;
      border-radius: var(--r-md);
      margin-top: .25rem;
      transition: box-shadow .3s, transform .2s;
      position: relative;
      overflow: hidden;
    }

    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .25), transparent 60%);
    }

    .btn-submit:hover {
      box-shadow: 0 0 36px var(--green-glow);
      transform: translateY(-2px);
    }

    .form-note {
      margin-top: .75rem;
      font-size: .88rem;
    }

    .form-note--ok {
      color: #4ADE80;
    }

    .form-note--err {
      color: #FF453A;
    }

    .contact-info {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contact-info h3 {
      font-size: 1.3rem;
    }

    .info-items {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .info-ic {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--green-dim);
      border: 1px solid rgba(52, 199, 89, .12);
      display: grid;
      place-items: center;
      color: var(--green);
      font-size: .9rem;
      flex-shrink: 0;
    }

    .info-item a {
      color: var(--text-2);
      font-size: .9rem;
      transition: color .2s;
    }

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

    .info-item span {
      color: var(--text-2);
      font-size: .9rem;
    }

    .cta-box {
      background: linear-gradient(135deg, rgba(52, 199, 89, .08), rgba(52, 199, 89, .03));
      border: 1px solid rgba(52, 199, 89, .2);
      border-radius: 14px;
      padding: 1.5rem;
    }

    .cta-box p.accent {
      color: var(--green);
      font-weight: 600;
      margin-bottom: .4rem;
      font-size: .95rem;
    }

    .cta-box p {
      font-size: .88rem;
      margin-bottom: .9rem;
    }

    /* ======= FOOTER ======= */
    footer {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
    }

    .quote-card footer>div:last-child {
      background: none;
      border: none;
      border-radius: 0;
      padding: 0;
    }


    .footer-grid {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

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

    .footer-brand .brand {
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: .88rem;
      color: var(--text-3);
      max-width: 280px;
    }

    .foot-nav h4 {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--text-3);
      margin-bottom: 1.2rem;
    }

    .foot-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .foot-nav a {
      font-size: .88rem;
      color: var(--text-3);
      transition: color .2s;
    }

    .foot-nav a:hover {
      color: var(--green);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: .82rem;
      color: var(--text-3);
    }

    .social-links {
      display: flex;
      gap: .5rem;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: grid;
      place-items: center;
      color: var(--text-3);
      font-size: .85rem;
      transition: border-color .2s, color .2s, background .2s;
    }

    .social-link:hover {
      border-color: rgba(52, 199, 89, .3);
      color: var(--green);
      background: var(--green-dim);
    }

    /* ======= SCROLL REVEAL ======= */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
    }

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

    .stagger>* {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
    }

    .stagger.on>* {
      opacity: 1;
      transform: none;
    }

    .stagger.on>*:nth-child(1) {
      transition-delay: .00s
    }

    .stagger.on>*:nth-child(2) {
      transition-delay: .07s
    }

    .stagger.on>*:nth-child(3) {
      transition-delay: .14s
    }

    .stagger.on>*:nth-child(4) {
      transition-delay: .21s
    }

    .stagger.on>*:nth-child(5) {
      transition-delay: .28s
    }

    .stagger.on>*:nth-child(6) {
      transition-delay: .35s
    }

    .stagger.on>*:nth-child(7) {
      transition-delay: .42s
    }

    .stagger.on>*:nth-child(8) {
      transition-delay: .49s
    }

    /* ======= UTILS ======= */
    .hidden {
      display: none !important;
    }

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

      .stat-item:nth-child(2) {
        border-right: none;
      }

      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
      }
    }

    @media(max-width:420px) {
      .hero-stats {
        grid-template-columns: 1fr;
      }

      .stat-item {
        border-right: none !important;
        border-top: 1px solid var(--border);
      }

      .stat-item:first-child {
        border-top: none;
      }
    }

    /* ======= TYPING CURSOR ======= */
    .typing-cursor {
      display: inline-block;
      width: 3px;
      background: var(--green);
      animation: blink .8s step-end infinite;
      margin-left: 2px;
      vertical-align: middle;
      height: .85em;
      border-radius: 2px;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    /* Scroll progress bar */
    #scrollBar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      z-index: 9999;
      background: linear-gradient(90deg, var(--green-deep), var(--green));
      width: 0%;
      transition: width .1s linear;
    }

    /* Number counter animation */
    .counter {
      display: inline-block;
    }

    /* ======= PHILOSOPHY CANVAS ======= */
    .mem-word {
      font-family: 'DM Sans', sans-serif;
      font-size: .7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: rgba(255, 255, 255, .15);
      padding: 0 2px;
      flex-shrink: 0;
    }

    .mem-word.mem-hl {
      color: rgba(52, 199, 89, .4);
      font-weight: 600;
    }

    .phil-pillar-h {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      background: rgba(255, 255, 255, .02);
      border: 1px solid rgba(255, 255, 255, .05);
      border-radius: 14px;
      padding: 1.15rem 1.3rem;
      transition: background .25s, border-color .25s, transform .25s;
      cursor: default;
    }

    .phil-pillar-h:hover {
      background: rgba(52, 199, 89, .04);
      border-color: rgba(52, 199, 89, .18);
      transform: translateX(4px);
    }

    .pph-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      flex-shrink: 0;
      background: rgba(52, 199, 89, .08);
      border: 1px solid rgba(52, 199, 89, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #34C759;
      transition: box-shadow .25s;
      margin-top: 1px;
    }

    .phil-pillar-h:hover .pph-icon {
      box-shadow: 0 0 14px rgba(52, 199, 89, .3);
    }

    .pph-title {
      font-family: 'Syne', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 .3rem;
      line-height: 1.2;
    }

    .pph-text {
      font-size: .81rem;
      color: rgba(139, 157, 173, .72);
      line-height: 1.68;
      margin: 0;
    }

    @media(max-width:860px) {
      #phil-two-col {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
      }
    }


    /* ======= FIXED ACTIONS ======= */
    .fixed-actions {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9999;
    }

    .action-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      /* Using flex to perfectly center font-awesome icons */
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.35rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
      transition: transform .25s, opacity .25s, box-shadow .25s, background .2s, color .2s;
    }

    .action-btn:hover {
      transform: translateY(-4px);
    }

    .whatsapp-btn {
      background: #25D366;
    }

    .whatsapp-btn:hover {
      box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
      color: #fff;
    }

    .back-to-top {
      background: rgba(6, 13, 16, .85);
      border: 1px solid var(--border);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
    }

    .back-to-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: var(--green);
      color: #060D10;
      border-color: var(--green);
      box-shadow: 0 8px 24px var(--green-glow);
    }

    @media(max-width: 768px) {
      .fixed-actions {
        bottom: 20px;
        right: 20px;
      }

      .action-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
      }
    }