    :root {
      --gavy-primary: #3559ff;
      --gavy-violet: #7c3aed;
      --gavy-cyan: #06b6d4;
      --gavy-ink: #0f172a;
      --gavy-border: rgba(226, 232, 240, 0.9);
    }

    .page {
      max-width: none !important;
      padding: 0 !important;
    }

    main {
      padding: 0 !important;
    }

    .site-footer {
      margin-top: 0 !important;
    }

    .gavy-container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

.gavy-hero {
  position: relative;
  margin: 0 calc(50% - 50vw);
  min-height: 100vh;
  background-image:
    var(--gavy-hero-bg-url, none),
    linear-gradient(135deg, rgba(247, 248, 255, 0.72) 0%, rgba(238, 243, 255, 0.7) 52%, rgba(247, 251, 255, 0.72) 100%);
  background-size: cover, cover;
  background-position: center, center;
  overflow: hidden;
  color: var(--gavy-ink);
  isolation: isolate;
}

    .gavy-hero::before {
      content: "";
      position: absolute;
      inset: -30%;
      background:
        radial-gradient(circle at 18% 24%, rgba(53, 89, 255, 0.22), transparent 44%),
        radial-gradient(circle at 70% 22%, rgba(124, 58, 237, 0.16), transparent 50%),
        radial-gradient(circle at 55% 70%, rgba(6, 182, 212, 0.16), transparent 48%),
        conic-gradient(from 120deg, rgba(53, 89, 255, 0.09), rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.06), rgba(53, 89, 255, 0.09));
      filter: blur(34px) saturate(1.05);
      opacity: 0.9;
      z-index: 0;
      animation: gavyMeshDrift 18s ease-in-out infinite alternate;
      pointer-events: none;
      transform: translate3d(0, 0, 0);
    }

    .gavy-hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 12px;
      background: #3559ff;
      opacity: 0.95;
      z-index: 1;
      pointer-events: none;
    }

    .gavy-watermark {
      position: absolute;
      left: clamp(78px, 7vw, 160px);
      top: calc(50% + 24px);
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: left center;
      white-space: nowrap;
      letter-spacing: 0.32em;
      font-weight: 900;
      font-size: clamp(3.2rem, 6vw, 4.4rem);
      color: rgba(15, 23, 42, 0.09);
      opacity: 0;
      z-index: 1;
      user-select: none;
      pointer-events: none;
      will-change: transform, opacity, filter, background-position;
      animation:
        gavyWatermarkIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards,
        gavyWatermarkFloat 9s ease-in-out 1.1s infinite,
        gavyWatermarkShimmer 4.8s linear 1.1s infinite;
    }

    @supports (-webkit-background-clip: text) or (background-clip: text) {
      .gavy-watermark {
        color: transparent;
        -webkit-text-stroke: 1px rgba(15, 23, 42, 0.14);
        background: linear-gradient(
          90deg,
          rgba(53, 89, 255, 0) 0%,
          rgba(53, 89, 255, 0.24) 48%,
          rgba(53, 89, 255, 0) 70%
        );
        background-size: 220% 100%;
        background-position: 0% 50%;
        -webkit-background-clip: text;
        background-clip: text;
      }
    }

    @keyframes gavyWatermarkIn {
      from {
        opacity: 0;
        transform: translateY(calc(-50% + 16px)) rotate(-90deg);
        filter: blur(2px);
      }
      to {
        opacity: 1;
        transform: translateY(-50%) rotate(-90deg);
        filter: blur(0);
      }
    }

    @keyframes gavyWatermarkFloat {
      0%,
      100% {
        transform: translateY(-50%) rotate(-90deg) translateX(0);
      }
      50% {
        transform: translateY(-50%) rotate(-90deg) translateX(6px);
      }
    }

    @keyframes gavyWatermarkShimmer {
      0%,
      100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }

    @keyframes gavyMeshDrift {
      0% {
        transform: translate3d(-2%, -1%, 0) rotate(-1deg);
      }
      50% {
        transform: translate3d(2%, 1.5%, 0) rotate(1.4deg);
      }
      100% {
        transform: translate3d(-1%, 2%, 0) rotate(-0.6deg);
      }
    }

    .gavy-hero .hero-nav {
      position: relative;
      z-index: 3;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(10px);
      border-radius: 0;
    }

    .gavy-hero .hero-links {
      color: var(--gavy-ink);
    }

    .gavy-hero .hero-links a.active {
      color: var(--gavy-primary);
    }

    .gavy-hero .hero-login {
      background: var(--gavy-primary);
    }

    .gavy-hero-stage {
      position: relative;
      z-index: 2;
      padding: 56px 0 74px;
    }

    .gavy-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 34px;
      align-items: center;
    }

     .gavy-badge {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 8px 14px;
       border-radius: 999px;
       background: rgba(53, 89, 255, 0.12);
       color: var(--gavy-primary);
       font-weight: 900;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       font-size: 0.72rem;
     }
     
     .gavy-topbar__live-badge {
       display: inline-flex;
       align-items: center;
       gap: 4px;
       padding: 2px 8px;
       background: rgba(52, 211, 153, 0.2);
       border: 1px solid rgba(52, 211, 153, 0.3);
       border-radius: 4px;
       color: #34d399;
       font-weight: 600;
       font-size: 0.75rem;
       letter-spacing: 0.02em;
       margin-left: 8px;
       white-space: nowrap;
     }
     
     .gavy-topbar__live-badge::before {
       content: "";
       width: 6px;
       height: 6px;
       border-radius: 50%;
       background: #34d399;
       animation: gavyLivePulse 1.6s ease-out infinite;
     }

    .gavy-badge i {
      width: 44px;
      height: 14px;
      border-radius: 999px;
      background: rgba(53, 89, 255, 0.95);
      position: relative;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
      flex: 0 0 auto;
      display: inline-block;
    }

    .gavy-badge i::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      right: -2px;
      top: 50%;
      transform: translateY(-50%);
      background: #ffffff;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.22);
    }

    .gavy-hero h1 {
      margin: 14px 0 12px;
      font-size: clamp(2.2rem, 4.6vw, 3.9rem);
      letter-spacing: -0.03em;
      line-height: 1.06;
    }

    .gavy-hero h1 .accent {
      background: linear-gradient(90deg, var(--gavy-primary), var(--gavy-violet));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .gavy-hero p {
      margin: 0 0 22px;
      max-width: 560px;
      color: rgba(15, 23, 42, 0.72);
      line-height: 1.7;
      font-size: 1.02rem;
    }

    .gavy-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .gavy-actions .btn {
      border-radius: 0;
      padding: 12px 18px;
      background: var(--gavy-primary);
      border-color: var(--gavy-primary);
      box-shadow: 0 18px 40px rgba(53, 89, 255, 0.18);
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .gavy-actions .btn.ghost {
      background: transparent;
      color: var(--gavy-primary);
      box-shadow: none;
    }

    .gavy-actions .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 50px rgba(53, 89, 255, 0.22);
      filter: saturate(1.05);
    }

    .gavy-watch {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--gavy-ink);
    }

    .gavy-play {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(53, 89, 255, 0.12);
      border: 2px solid rgba(53, 89, 255, 0.35);
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
      position: relative;
      flex: 0 0 auto;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .gavy-play::before {
      content: "";
      width: 0;
      height: 0;
      border-left: 10px solid var(--gavy-primary);
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      margin-left: 2px;
    }

    .gavy-watch:hover .gavy-play {
      transform: scale(1.06);
      box-shadow: 0 22px 42px rgba(53, 89, 255, 0.18);
    }

.gavy-media {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  width: 100%;
}

    .gavy-blob {
      position: absolute;
      inset: 0;
      border-radius: 52% 48% 40% 60% / 55% 40% 60% 45%;
      background:
        radial-gradient(circle at 10% 20%, rgba(53, 89, 255, 0.25), transparent 45%),
        radial-gradient(circle at 70% 40%, rgba(124, 58, 237, 0.22), transparent 48%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
      transform: rotate(-6deg);
      animation: gavyBlobMorph 10s ease-in-out infinite alternate;
    }

    .gavy-blob::after {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: inherit;
      border: 10px solid rgba(53, 89, 255, 0.65);
      clip-path: polygon(58% 0, 100% 0, 100% 100%, 50% 100%);
      filter: drop-shadow(0 18px 30px rgba(53, 89, 255, 0.2));
      pointer-events: none;
    }

.gavy-portrait {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
  transform: translateY(10px);
  animation: gavyPortraitFloat 8s ease-in-out infinite;
}

.gavy-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

    .gavy-portrait::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0));
      pointer-events: none;
    }

    /* ===== Hero v2: orbit ring, live pill, floating cards, scroll cue ===== */
    .gavy-orbit {
      position: absolute;
      inset: -28px;
      pointer-events: none;
      z-index: 0;
    }

    .gavy-orbit-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px dashed rgba(53, 89, 255, 0.28);
      animation: gavyOrbitSpin 32s linear infinite;
    }

    .gavy-orbit-ring::before,
    .gavy-orbit-ring::after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      box-shadow: 0 8px 18px rgba(53, 89, 255, 0.35);
    }

    .gavy-orbit-ring::before {
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #3559ff, #7c3aed);
    }

    .gavy-orbit-ring::after {
      bottom: -6px;
      right: 12%;
      background: linear-gradient(135deg, #06b6d4, #34d399);
    }

    .gavy-orbit-ring--alt {
      inset: 16px;
      border-color: rgba(124, 58, 237, 0.22);
      animation: gavyOrbitSpin 48s linear reverse infinite;
    }

    .gavy-orbit-ring--alt::before,
    .gavy-orbit-ring--alt::after {
      width: 8px;
      height: 8px;
    }

    .gavy-orbit-ring--alt::before {
      top: auto;
      bottom: 18%;
      left: -4px;
      transform: none;
      background: linear-gradient(135deg, #f59e0b, #fb7185);
    }

    .gavy-orbit-ring--alt::after {
      top: 22%;
      right: -4px;
      bottom: auto;
      background: linear-gradient(135deg, #10b981, #06b6d4);
    }

    @keyframes gavyOrbitSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .gavy-live-pill {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.78);
      backdrop-filter: blur(10px);
      color: #ffffff;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
      z-index: 3;
      white-space: nowrap;
    }

    .gavy-live-pill strong { color: #ffffff; font-weight: 700; }

    .gavy-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
      animation: gavyLivePulse 1.6s ease-out infinite;
    }

    @keyframes gavyLivePulse {
      0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
      70%  { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
      100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
    }

    .gavy-floatcard {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
      color: var(--gavy-ink);
      font-size: 0.84rem;
      line-height: 1.25;
      min-width: 168px;
      z-index: 4;
      animation: gavyFloatCard 7s ease-in-out infinite;
    }

    .gavy-floatcard strong {
      display: block;
      font-weight: 700;
      letter-spacing: -0.01em;
      font-size: 0.86rem;
    }

    .gavy-floatcard span {
      color: rgba(15, 23, 42, 0.6);
      font-size: 0.78rem;
    }

    .gavy-floatcard__icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #ffffff;
      box-shadow: 0 8px 18px rgba(53, 89, 255, 0.25);
    }

    .gavy-floatcard__icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .gavy-floatcard--top {
      top: 6%;
      left: -28px;
      animation-delay: -1.5s;
    }
    .gavy-floatcard--top .gavy-floatcard__icon {
      background: linear-gradient(135deg, #10b981, #34d399);
    }

    .gavy-floatcard--right {
      top: 38%;
      right: -36px;
      animation-delay: -3.2s;
    }
    .gavy-floatcard--right .gavy-floatcard__icon {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
    }

    .gavy-floatcard--bottom {
      bottom: 8%;
      left: -32px;
      animation-delay: -4.7s;
    }
    .gavy-floatcard--bottom .gavy-floatcard__icon {
      background: linear-gradient(135deg, #f59e0b, #fb7185);
    }

    @keyframes gavyFloatCard {
      0%, 100% { transform: translateY(0) rotate(-1deg); }
      50%      { transform: translateY(-10px) rotate(1deg); }
    }

    .gavy-hero-trust {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .gavy-hero-avatars {
      display: inline-flex;
    }

    .gavy-hero-avatars span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid #ffffff;
      margin-left: -10px;
      display: grid;
      place-items: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
    }

    .gavy-hero-avatars span:first-child { margin-left: 0; }
    .gavy-hero-avatars span:nth-child(1) { background: linear-gradient(135deg, #3559ff, #5b8cff); }
    .gavy-hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #7c3aed, #a855f7); }
    .gavy-hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
    .gavy-hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
    .gavy-hero-avatars span:nth-child(5) {
      background: rgba(255, 255, 255, 0.92);
      color: var(--gavy-ink);
      font-size: 0.72rem;
    }

    .gavy-hero-rating {
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
    }

    .gavy-hero-rating-stars {
      display: inline-flex;
      gap: 2px;
      color: #f59e0b;
    }

    .gavy-hero-rating-stars svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .gavy-hero-rating-text {
      color: rgba(15, 23, 42, 0.7);
      font-size: 0.82rem;
    }

    .gavy-hero-rating-text strong { color: var(--gavy-ink); }

    .gavy-scrollcue {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(15, 23, 42, 0.6);
      font-size: 0.74rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      z-index: 2;
      pointer-events: none;
    }

    .gavy-scrollcue-mouse {
      width: 22px;
      height: 34px;
      border-radius: 12px;
      border: 1.5px solid rgba(15, 23, 42, 0.45);
      position: relative;
    }

    .gavy-scrollcue-mouse::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 6px;
      width: 3px;
      height: 7px;
      border-radius: 2px;
      background: var(--gavy-primary);
      transform: translateX(-50%);
      animation: gavyScrollDot 1.8s ease-in-out infinite;
    }

    @keyframes gavyScrollDot {
      0%, 100% { transform: translate(-50%, 0); opacity: 1; }
      50%      { transform: translate(-50%, 12px); opacity: 0.2; }
    }

    @media (max-width: 980px) {
      .gavy-floatcard--top    { left: 8px; top: 2%; }
      .gavy-floatcard--right  { right: 8px; top: 24%; }
      .gavy-floatcard--bottom { left: 8px; bottom: 14%; }
      .gavy-orbit { display: none; }
      .gavy-scrollcue { display: none; }
    }

    @media (max-width: 640px) {
      .gavy-floatcard {
        min-width: 0;
        padding: 9px 12px;
      }
      .gavy-floatcard span { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .gavy-orbit-ring,
      .gavy-orbit-ring--alt,
      .gavy-floatcard,
      .gavy-live-dot,
      .gavy-scrollcue-mouse::after {
        animation: none !important;
      }
    }

    .gavy-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gavy-primary);
      box-shadow: 0 16px 30px rgba(53, 89, 255, 0.24);
      opacity: 0.9;
      animation: gavyDotFloat 6.5s ease-in-out infinite;
    }

    .gavy-dot.dot-1 {
      left: 18%;
      top: 16%;
      background: #ef4444;
      animation-delay: -1.2s;
    }

    .gavy-dot.dot-2 {
      right: 16%;
      top: 34%;
      background: var(--gavy-primary);
      animation-delay: -2.4s;
    }

    .gavy-dot.dot-3 {
      left: 46%;
      bottom: 14%;
      width: 12px;
      height: 12px;
      background: var(--gavy-cyan);
      animation-delay: -3.2s;
    }

    @keyframes gavyDotFloat {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes gavyBlobMorph {
      0% {
        border-radius: 54% 46% 44% 56% / 56% 42% 58% 44%;
        transform: rotate(-6deg) scale(1);
      }
      50% {
        border-radius: 46% 54% 36% 64% / 44% 54% 46% 56%;
        transform: rotate(-2deg) scale(1.02);
      }
      100% {
        border-radius: 50% 50% 56% 44% / 50% 44% 56% 50%;
        transform: rotate(-8deg) scale(1.01);
      }
    }

    @keyframes gavyPortraitFloat {
      0%,
      100% {
        transform: translateY(10px);
      }
      50% {
        transform: translateY(0px);
      }
    }

    .gavy-section {
      padding: 74px 0;
    }

    .gavy-section--alt {
      background: linear-gradient(180deg, rgba(53, 89, 255, 0.06), rgba(255, 255, 255, 0));
      position: relative;
      overflow: hidden;
    }

    .gavy-section--alt::before {
      content: "";
      position: absolute;
      inset: -40% -20%;
      background:
        radial-gradient(circle at 35% 40%, rgba(53, 89, 255, 0.12), transparent 46%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.1), transparent 50%);
      filter: blur(38px);
      opacity: 0.7;
      animation: gavyMeshDrift 22s ease-in-out infinite alternate;
      pointer-events: none;
    }

    .gavy-section h2 {
      font-size: clamp(1.8rem, 2.6vw, 2.4rem);
      margin: 0 0 12px;
      letter-spacing: -0.02em;
    }

    .gavy-lead {
      margin: 0 0 26px;
      max-width: 780px;
      color: rgba(15, 23, 42, 0.7);
      line-height: 1.7;
    }

    .gavy-section--features {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(226, 232, 240, 0.85);
      border-bottom: 1px solid rgba(226, 232, 240, 0.65);
    }

    .gavy-section--features::before {
      content: "";
      position: absolute;
      inset: -40% -20%;
      background:
        radial-gradient(circle at 18% 30%, rgba(53, 89, 255, 0.09), transparent 45%),
        radial-gradient(circle at 78% 40%, rgba(34, 197, 94, 0.08), transparent 46%),
        radial-gradient(circle at 52% 72%, rgba(6, 182, 212, 0.08), transparent 48%);
      filter: blur(38px);
      opacity: 0.75;
      pointer-events: none;
      animation: gavyMeshDrift 26s ease-in-out infinite alternate;
    }

    .gavy-features-head {
      text-align: center;
      position: relative;
      z-index: 1;
      margin-bottom: 54px;
    }

    .gavy-features-logo {
      height: 42px;
      width: auto;
      display: inline-block;
      filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.12));
    }

    .gavy-features-title {
      margin: 14px 0 10px;
      font-size: clamp(2.3rem, 4.4vw, 3.35rem);
      letter-spacing: -0.04em;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.02;
    }

    .gavy-features-title .dot {
      color: #22c55e;
    }

    .gavy-features-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 340px) minmax(0, 1fr);
      gap: clamp(22px, 4.2vw, 74px);
      align-items: center;
    }

    .gavy-feature-col {
      position: relative;
      min-height: 320px;
      width: 100%;
      max-width: 440px;
    }

    .gavy-feature-col--left {
      justify-self: end;
    }

    .gavy-feature-col--right {
      justify-self: start;
    }

    /* Each group is a stack of features anchored to the column; only one shows at a time */
    .gavy-feature-group {
      position: absolute;
      inset: 0;
      display: grid;
      gap: clamp(16px, 2.2vw, 28px);
      align-content: center;
      opacity: 0;
      pointer-events: none;
      animation: ss-feat-group-cycle 14s ease-in-out infinite;
    }
    .gavy-feature-group--1 { animation-delay: 0s; }
    .gavy-feature-group--2 { animation-delay: -10.5s; }
    .gavy-feature-group--3 { animation-delay: -7s; }
    .gavy-feature-group--4 { animation-delay: -3.5s; }

    @keyframes ss-feat-group-cycle {
      0%, 1%    { opacity: 0; pointer-events: none; }
      4%, 22%   { opacity: 1; pointer-events: auto; }
      25%, 100% { opacity: 0; pointer-events: none; }
    }

    .gavy-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: rgba(15, 23, 42, 0.68);
      line-height: 1.55;
      font-size: 0.96rem;
      max-width: 420px;
    }

    /* New card-style feature for the cycling layout */
    .gavy-feature--card {
      padding: 14px 16px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6));
      border: 1px solid rgba(53, 89, 255, 0.12);
      box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.08),
        0 2px 4px rgba(15, 23, 42, 0.04);
      backdrop-filter: blur(8px);
      transform: translateY(14px);
      opacity: 0;
      animation: ss-feat-card-cycle 14s ease-in-out infinite;
      animation-fill-mode: both;
      position: relative;
      align-items: center;
    }

    .gavy-feature-text { flex: 1 1 auto; min-width: 0; }
    .gavy-feature-text strong {
      display: block;
      font-size: 0.98rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.01em;
      margin-bottom: 2px;
    }
    .gavy-feature--card p {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.5;
      color: rgba(15, 23, 42, 0.62);
    }

    /* Per-group, per-position stagger so points pop in one after another */
    .gavy-feature-group--1 .gavy-feature--card:nth-child(1) { animation-delay: 0.1s; }
    .gavy-feature-group--1 .gavy-feature--card:nth-child(2) { animation-delay: 0.4s; }
    .gavy-feature-group--1 .gavy-feature--card:nth-child(3) { animation-delay: 0.7s; }
    .gavy-feature-group--2 .gavy-feature--card:nth-child(1) { animation-delay: -10.4s; }
    .gavy-feature-group--2 .gavy-feature--card:nth-child(2) { animation-delay: -10.1s; }
    .gavy-feature-group--2 .gavy-feature--card:nth-child(3) { animation-delay: -9.8s; }
    .gavy-feature-group--3 .gavy-feature--card:nth-child(1) { animation-delay: -6.9s; }
    .gavy-feature-group--3 .gavy-feature--card:nth-child(2) { animation-delay: -6.6s; }
    .gavy-feature-group--3 .gavy-feature--card:nth-child(3) { animation-delay: -6.3s; }
    .gavy-feature-group--4 .gavy-feature--card:nth-child(1) { animation-delay: -3.4s; }
    .gavy-feature-group--4 .gavy-feature--card:nth-child(2) { animation-delay: -3.1s; }
    .gavy-feature-group--4 .gavy-feature--card:nth-child(3) { animation-delay: -2.8s; }

    @keyframes ss-feat-card-cycle {
      0%, 2%    { opacity: 0; transform: translateY(18px) scale(0.96); }
      4%        { opacity: 0; transform: translateY(18px) scale(0.96); }
      9%, 22%   { opacity: 1; transform: translateY(0) scale(1); }
      25%, 100% { opacity: 0; transform: translateY(-10px) scale(0.97); }
    }

    /* Animated pointer arrow — extends OUTSIDE the card, aimed at the phone */
    .gavy-feature-arrow {
      position: absolute;
      top: 50%;
      width: 44px;
      height: 14px;
      pointer-events: none;
    }

    /* Left column: arrow exits the right side of the card, tip toward phone */
    .gavy-feature-col--left .gavy-feature-arrow {
      right: -52px;
      transform: translateY(-50%);
      animation: ss-feat-arrow-bob-r 1.8s ease-in-out infinite;
    }
    /* Right column: arrow exits the left side of the card, tip toward phone */
    .gavy-feature-col--right .gavy-feature-arrow {
      left: -52px;
      transform: translateY(-50%);
      animation: ss-feat-arrow-bob-l 1.8s ease-in-out infinite;
    }

    /* Stem (the line) */
    .gavy-feature-arrow::before {
      content: "";
      position: absolute;
      top: 50%;
      height: 2px;
      border-radius: 999px;
      transform: translateY(-50%);
    }
    .gavy-feature-col--left .gavy-feature-arrow::before {
      left: 0;
      right: 8px;
      background: linear-gradient(90deg, rgba(53, 89, 255, 0.05) 0%, rgba(53, 89, 255, 0.55) 60%, #3559ff 100%);
    }
    .gavy-feature-col--right .gavy-feature-arrow::before {
      right: 0;
      left: 8px;
      background: linear-gradient(-90deg, rgba(53, 89, 255, 0.05) 0%, rgba(53, 89, 255, 0.55) 60%, #3559ff 100%);
    }

    /* Arrowhead (filled triangle) */
    .gavy-feature-arrow::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 0;
      height: 0;
      border-style: solid;
      filter: drop-shadow(0 1px 2px rgba(53, 89, 255, 0.45));
    }
    .gavy-feature-col--left .gavy-feature-arrow::after {
      right: 0;
      border-width: 6px 0 6px 9px;
      border-color: transparent transparent transparent #3559ff;
      transform: translateY(-50%);
    }
    .gavy-feature-col--right .gavy-feature-arrow::after {
      left: 0;
      border-width: 6px 9px 6px 0;
      border-color: transparent #3559ff transparent transparent;
      transform: translateY(-50%);
    }

    @keyframes ss-feat-arrow-bob-r {
      0%, 100% { transform: translate(0, -50%); }
      50%      { transform: translate(8px, -50%); }
    }
    @keyframes ss-feat-arrow-bob-l {
      0%, 100% { transform: translate(0, -50%); }
      50%      { transform: translate(-8px, -50%); }
    }

    /* Hide arrows when columns stack on mobile (no horizontal "toward phone" direction) */
    @media (max-width: 968px) {
      .gavy-feature-arrow { display: none; }
    }

    /* Active group's arrow gets accent gradient */
    .gavy-feature--card .gavy-feature-icon {
      color: #3559ff;
    }

    @media (prefers-reduced-motion: reduce) {
      .gavy-feature-group, .gavy-feature--card,
      .gavy-feature-arrow::before, .gavy-feature-arrow::after { animation: none; }
      .gavy-feature-group--1 { opacity: 1; pointer-events: auto; }
      .gavy-feature-group--1 .gavy-feature--card { opacity: 1; transform: none; }
    }

    .gavy-feature p {
      margin: 0;
    }

    .gavy-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #2563eb;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .gavy-feature-icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .gavy-feature--right {
      flex-direction: row-reverse;
      text-align: right;
    }

    .gavy-features-media {
      display: grid;
      place-items: center;
      position: relative;
    }

    /* ---- Animated callouts that reveal per slide ---- */
    .ss-callouts {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 5;
    }

    .ss-callout {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      pointer-events: none;
      opacity: 0;
      animation: ss-callout-cycle 14s ease-in-out infinite;
    }

    .ss-callout--1 { top: 14%;    left:  calc(50% + 110px); animation-delay: 0s; }
    .ss-callout--2 { top: 42%;    right: calc(50% + 110px); animation-delay: -10.5s; }
    .ss-callout--3 { bottom: 32%; left:  calc(50% + 110px); animation-delay: -7s; }
    .ss-callout--4 { bottom: 8%;  right: calc(50% + 110px); animation-delay: -3.5s; }

    @keyframes ss-callout-cycle {
      0%, 1%    { opacity: 0; transform: translateY(8px) scale(0.92); }
      4%, 22%   { opacity: 1; transform: translateY(0) scale(1); }
      25%, 100% { opacity: 0; transform: translateY(-4px) scale(0.96); }
    }

    /* Pulsing pointer dot */
    .ss-callout-pulse {
      position: relative;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #3559ff;
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(53, 89, 255, 0.18), 0 6px 12px rgba(53, 89, 255, 0.4);
    }
    .ss-callout-pulse::before,
    .ss-callout-pulse::after {
      content: "";
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid rgba(53, 89, 255, 0.55);
      animation: ss-callout-ping 1.8s ease-out infinite;
    }
    .ss-callout-pulse::after { animation-delay: 0.9s; }
    @keyframes ss-callout-ping {
      0%   { transform: scale(0.7); opacity: 0.95; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    /* Dashed connector between pulse and card */
    .ss-callout-line {
      flex: 0 0 auto;
      width: 28px;
      height: 1.5px;
      background-image: linear-gradient(90deg, rgba(53, 89, 255, 0.55) 50%, transparent 50%);
      background-size: 6px 1.5px;
      background-repeat: repeat-x;
      align-self: center;
      transform-origin: left center;
      animation: ss-callout-line-draw 14s ease-in-out infinite;
    }
    .ss-callout--1 .ss-callout-line { animation-delay: 0s; }
    .ss-callout--2 .ss-callout-line { animation-delay: -10.5s; transform-origin: right center; }
    .ss-callout--3 .ss-callout-line { animation-delay: -7s; }
    .ss-callout--4 .ss-callout-line { animation-delay: -3.5s; transform-origin: right center; }

    @keyframes ss-callout-line-draw {
      0%, 3%    { transform: scaleX(0); opacity: 0; }
      8%, 22%   { transform: scaleX(1); opacity: 1; }
      25%, 100% { transform: scaleX(0); opacity: 0; }
    }

    .ss-callout-card {
      width: 156px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      border-radius: 12px;
      padding: 9px 11px 10px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow:
        0 16px 32px rgba(15, 23, 42, 0.18),
        0 4px 10px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      gap: 4px;
      position: relative;
    }
    .ss-callout--right .ss-callout-card { transform-origin: left center; }
    .ss-callout--left .ss-callout-card { transform-origin: right center; }

    .ss-callout-kicker {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #3559ff;
      background: rgba(53, 89, 255, 0.1);
      padding: 2.5px 6px;
      border-radius: 4px;
      align-self: flex-start;
    }
    .ss-callout-kicker svg { width: 10px; height: 10px; }
    .ss-callout-card strong {
      font-size: 11.5px;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-top: 1px;
    }
    .ss-callout-card span {
      font-size: 9.5px;
      color: rgba(15, 23, 42, 0.62);
      line-height: 1.45;
    }

    @media (max-width: 1100px) {
      .ss-callouts { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .ss-callout, .ss-callout-line { animation: none; opacity: 0; }
      .ss-callout--1 { opacity: 1; transform: none; }
      .ss-callout--1 .ss-callout-line { transform: scaleX(1); opacity: 1; }
      .ss-callout-pulse::before,
      .ss-callout-pulse::after { animation: none; }
    }

    /* Samsung Galaxy phone mock — realistic frame + dashboard screenshot */
    .gavy-samsung {
      position: relative;
      width: min(320px, 100%);
      aspect-ratio: 9 / 18.5;
      border-radius: 26px;
      padding: 6px;
      background:
        linear-gradient(135deg, #2a2d33 0%, #0d0f12 50%, #2a2d33 100%);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 0.5px rgba(0, 0, 0, 0.6),
        0 36px 80px rgba(15, 23, 42, 0.32),
        0 12px 24px rgba(15, 23, 42, 0.18);
      isolation: isolate;
    }

    .gavy-samsung::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%),
        linear-gradient(-20deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 35%);
      pointer-events: none;
      z-index: 3;
    }

    /* Extra hardware detailing (antenna bands + bottom port/speakers) */
    .gavy-samsung::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 4;
      background:
        /* Antenna bands */
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)) 0 10px / 100% 1px no-repeat,
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0)) 0 11px / 100% 1px no-repeat,
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)) 0 calc(100% - 11px) / 100% 1px no-repeat,
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0)) 0 calc(100% - 10px) / 100% 1px no-repeat,

        /* Bottom speaker grille (left) */
        radial-gradient(circle, rgba(0, 0, 0, 0.65) 0 1px, transparent 1.2px) 34% calc(100% - 7px) / 12px 3px repeat-x,
        /* Bottom speaker grille (right) */
        radial-gradient(circle, rgba(0, 0, 0, 0.65) 0 1px, transparent 1.2px) 66% calc(100% - 7px) / 12px 3px repeat-x,

        /* USB-C / port slot */
        linear-gradient(180deg, rgba(10, 12, 14, 0.95), rgba(35, 40, 46, 0.85)) 50% calc(100% - 7px) / 44px 6px no-repeat,
        radial-gradient(closest-side, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)) 50% calc(100% - 7px) / 54px 12px no-repeat;
      opacity: 0.95;
      mix-blend-mode: normal;
    }

    .gavy-samsung__btn {
      position: absolute;
      background: linear-gradient(90deg, #15171a, #2a2d33);
      border-radius: 2px;
      z-index: 0;
    }
    .gavy-samsung__btn--vol-up { left: -2px; top: 18%; width: 3px; height: 32px; box-shadow: -1px 0 0 rgba(0, 0, 0, 0.5); }
    .gavy-samsung__btn--vol-down { left: -2px; top: 26%; width: 3px; height: 50px; box-shadow: -1px 0 0 rgba(0, 0, 0, 0.5); }
    .gavy-samsung__btn--power { right: -2px; top: 22%; width: 3px; height: 60px; box-shadow: 1px 0 0 rgba(0, 0, 0, 0.5); }

    .gavy-samsung__screen {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 22px;
      background: linear-gradient(180deg, #0b1220 0%, #0f172a 30%, #111c33 100%);
      overflow: hidden;
      z-index: 2;
      display: flex;
      flex-direction: column;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    /* Light variant: white top chrome like the screenshot */
    .gavy-samsung--light .gavy-samsung__screen {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 34%, #f3f6ff 100%);
    }

    /* Teardrop / U-notch at top center */
    .gavy-samsung__notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 56px;
      height: 17px;
      background: #000;
      border-radius: 0 0 14px 14px;
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) inset;
    }
    .gavy-samsung__notch::before {
      content: "";
      width: 22px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 1px 1.5px rgba(0, 0, 0, 0.7);
    }
    .gavy-samsung__notch::after {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #1a2435 0%, #000 75%);
      box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.06), inset 0 0 1.5px rgba(60, 90, 140, 0.5);
    }

    /* Curved screen edges — gloss + shadow on each side simulate the wraparound display */
    .gavy-samsung__edge {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 16px;
      pointer-events: none;
      z-index: 5;
    }
    .gavy-samsung__edge--left {
      left: 0;
      background:
        linear-gradient(90deg,
          rgba(0, 0, 0, 0.55) 0%,
          rgba(255, 255, 255, 0.04) 22%,
          rgba(255, 255, 255, 0.18) 38%,
          rgba(255, 255, 255, 0.04) 60%,
          rgba(255, 255, 255, 0) 100%);
      border-radius: 22px 0 0 22px;
    }
    .gavy-samsung__edge--right {
      right: 0;
      background:
        linear-gradient(-90deg,
          rgba(0, 0, 0, 0.55) 0%,
          rgba(255, 255, 255, 0.04) 22%,
          rgba(255, 255, 255, 0.18) 38%,
          rgba(255, 255, 255, 0.04) 60%,
          rgba(255, 255, 255, 0) 100%);
      border-radius: 0 22px 22px 0;
    }

    .gavy-samsung__statusbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 18px 6px;
      height: 22px;
      flex: 0 0 auto;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .gavy-samsung--light .gavy-samsung__statusbar {
      color: rgba(15, 23, 42, 0.9);
    }
    .gavy-samsung__sysicons {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #fff;
    }
    .gavy-samsung--light .gavy-samsung__sysicons {
      color: rgba(15, 23, 42, 0.85);
    }
    .gavy-samsung__sysicons svg {
      display: block;
      height: 9px;
      width: auto;
      fill: currentColor;
    }

    .gavy-samsung__appbar {
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      flex: 0 0 auto;
    }
    .gavy-samsung--light .gavy-samsung__appbar {
      background: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      backdrop-filter: blur(8px);
    }
    .gavy-samsung__menu {
      width: 14px;
      height: 11px;
      background:
        linear-gradient(#fff, #fff) top/100% 1.5px no-repeat,
        linear-gradient(#fff, #fff) center/70% 1.5px no-repeat,
        linear-gradient(#fff, #fff) bottom/100% 1.5px no-repeat;
    }
    .gavy-samsung--light .gavy-samsung__menu {
      background:
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)) top/100% 1.5px no-repeat,
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)) center/70% 1.5px no-repeat,
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)) bottom/100% 1.5px no-repeat;
    }
    .gavy-samsung__brand {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #fff;
      min-width: 0;
    }
    .gavy-samsung--light .gavy-samsung__brand {
      color: rgba(15, 23, 42, 0.92);
    }
    .gavy-samsung__brand img {
      height: 12px;
      width: auto;
      display: block;
    }
    .gavy-samsung__brand span {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }
    .gavy-samsung__bell {
      position: relative;
      color: rgba(255, 255, 255, 0.85);
      display: inline-grid;
      place-items: center;
    }
    .gavy-samsung--light .gavy-samsung__bell {
      color: rgba(15, 23, 42, 0.72);
    }
    .gavy-samsung__bell svg {
      width: 12px;
      height: 12px;
    }
    .gavy-samsung__bell i {
      position: absolute;
      top: 0;
      right: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 0 1.5px #0f172a;
    }
    .gavy-samsung--light .gavy-samsung__bell i {
      box-shadow: 0 0 0 1.5px #ffffff;
    }
    .gavy-samsung__avatar {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3559ff, #7c3aed);
      color: #fff;
      font-size: 7px;
      font-weight: 800;
      display: grid;
      place-items: center;
      letter-spacing: 0.05em;
    }

    .gavy-samsung__content {
      flex: 1 1 auto;
      position: relative;
      min-height: 0;
      overflow: hidden;
      background:
        radial-gradient(circle at 0% 0%, rgba(53, 89, 255, 0.1), transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(124, 58, 237, 0.07), transparent 50%);
    }
    .gavy-samsung--light .gavy-samsung__content {
      background:
        radial-gradient(circle at 0% 0%, rgba(53, 89, 255, 0.08), transparent 45%),
        radial-gradient(circle at 100% 40%, rgba(124, 58, 237, 0.06), transparent 52%);
    }

    /* Light variant: make inner tiles readable on white */
    .gavy-samsung--light .ss-section-head { color: rgba(15, 23, 42, 0.9); }
    .gavy-samsung--light .ss-section-pill {
      color: rgba(15, 23, 42, 0.55);
      background: rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.10);
    }
    .gavy-samsung--light .gavy-samsung__greet .kicker { color: rgba(15, 23, 42, 0.55); }
    .gavy-samsung--light .gavy-samsung__greet h4 { color: rgba(15, 23, 42, 0.92); }
    .gavy-samsung--light .ss-row { background: rgba(255, 255, 255, 0.72); border-color: rgba(226, 232, 240, 0.95); }
    .gavy-samsung--light .ss-row-text span { color: rgba(15, 23, 42, 0.55); }
    .gavy-samsung--light .gavy-samsung__nav { background: rgba(255, 255, 255, 0.72); border-top-color: rgba(226, 232, 240, 0.95); }
    .gavy-samsung--light .ss-nav { color: rgba(15, 23, 42, 0.38); }

    .ss-quick {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 2px;
    }
    .ss-quick__pill {
      display: inline-flex;
      align-items: center;
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 7.5px;
      font-weight: 900;
      letter-spacing: 0.04em;
      background: rgba(53, 89, 255, 0.10);
      border: 1px solid rgba(53, 89, 255, 0.16);
      color: rgba(53, 89, 255, 0.9);
    }

    .ss-mini {
      display: grid;
      gap: 6px;
      margin-top: 4px;
    }
    .ss-mini__row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(226, 232, 240, 0.95);
    }
    .ss-mini__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3559ff, #7c3aed);
      box-shadow: 0 0 0 3px rgba(53, 89, 255, 0.14);
    }
    .ss-mini__dot--warn {
      background: linear-gradient(135deg, #f59e0b, #ef4444);
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.14);
    }
    .ss-mini__main { min-width: 0; }
    .ss-mini__main strong {
      display: block;
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color: rgba(15, 23, 42, 0.9);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ss-mini__main span {
      display: block;
      font-size: 7.5px;
      color: rgba(15, 23, 42, 0.55);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ss-mini__tag {
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.55);
      background: rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.10);
      padding: 2px 6px;
      border-radius: 999px;
      white-space: nowrap;
    }
    .ss-mini__tag--warn {
      color: rgba(194, 65, 12, 0.95);
      background: rgba(249, 115, 22, 0.12);
      border-color: rgba(249, 115, 22, 0.22);
    }

    .ss-mini--compact .ss-mini__row {
      padding: 5px 8px;
    }

    .ss-search {
      margin-top: 8px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 7px 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(226, 232, 240, 0.95);
      box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.18);
    }

    .ss-search__ico {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.35);
      position: relative;
    }
    .ss-search__ico::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 2px;
      background: rgba(15, 23, 42, 0.35);
      right: -5px;
      bottom: -2px;
      transform: rotate(45deg);
      border-radius: 2px;
    }

    .ss-search__txt {
      font-size: 8px;
      font-weight: 900;
      letter-spacing: 0.02em;
      color: rgba(15, 23, 42, 0.55);
    }

    .ss-search__kbd {
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.5);
      background: rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.10);
      padding: 2px 6px;
      border-radius: 8px;
    }

    .ss-toggles {
      margin-top: 8px;
      display: grid;
      gap: 6px;
    }

    .ss-toggle {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 7px 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(226, 232, 240, 0.95);
    }

    .ss-toggle__left strong {
      display: block;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color: rgba(15, 23, 42, 0.92);
    }

    .ss-toggle__left span {
      display: block;
      font-size: 7.5px;
      color: rgba(15, 23, 42, 0.55);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ss-switch {
      width: 30px;
      height: 16px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(15, 23, 42, 0.10);
      position: relative;
    }

    .ss-switch i {
      position: absolute;
      top: 50%;
      left: 2px;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
      transition: transform 0.25s ease, left 0.25s ease;
    }

    .ss-switch.is-on {
      background: rgba(16, 185, 129, 0.22);
      border-color: rgba(16, 185, 129, 0.22);
    }

    .ss-switch.is-on i {
      left: 16px;
    }

    .ss-summary {
      margin-top: 8px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .ss-summary__card {
      padding: 7px 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(226, 232, 240, 0.95);
    }

    .ss-summary__k {
      display: block;
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.55);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ss-summary__v {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: rgba(15, 23, 42, 0.92);
    }

    .ss-pay {
      margin-top: 8px;
      display: grid;
      gap: 7px;
    }

    .ss-pay__card {
      padding: 9px 10px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(53, 89, 255, 0.10));
      border: 1px solid rgba(16, 185, 129, 0.18);
    }

    .ss-pay__k {
      display: block;
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.55);
    }

    .ss-pay__v {
      display: block;
      margin-top: 2px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: rgba(15, 23, 42, 0.92);
    }

    .ss-pay__trend {
      display: block;
      margin-top: 1px;
      font-size: 7.5px;
      font-weight: 900;
      color: rgba(16, 185, 129, 0.95);
      letter-spacing: 0.02em;
    }

    .ss-pay__list {
      display: grid;
      gap: 6px;
    }

    .ss-pay__row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 7px 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(226, 232, 240, 0.95);
    }

    .ss-pay__chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 28px;
      height: 18px;
      padding: 0 7px;
      border-radius: 999px;
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.6);
      background: rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.10);
    }

    .ss-pay__chip--blue {
      color: rgba(53, 89, 255, 0.95);
      background: rgba(53, 89, 255, 0.10);
      border-color: rgba(53, 89, 255, 0.18);
    }

    .ss-pay__chip--warn {
      color: rgba(194, 65, 12, 0.95);
      background: rgba(249, 115, 22, 0.12);
      border-color: rgba(249, 115, 22, 0.22);
    }

    .ss-pay__main { min-width: 0; }
    .ss-pay__main strong {
      display: block;
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: -0.01em;
      color: rgba(15, 23, 42, 0.92);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ss-pay__main span {
      display: block;
      font-size: 7.5px;
      color: rgba(15, 23, 42, 0.55);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ss-pay__meta {
      font-size: 7px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, 0.45);
      white-space: nowrap;
    }

    /* Cycling slides */
    .ss-slide {
      position: absolute;
      inset: 8px 10px 6px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      opacity: 0;
      transform: translateY(8px);
      animation: ss-slide-cycle 10s ease-in-out infinite;
      animation-fill-mode: both;
    }
    /* Start populated: slide 1 is visible immediately; others enter after their delay. */
    .ss-slide--1 { animation-delay: 0s; opacity: 1; transform: translateY(0); }
    .ss-slide--2 { animation-delay: 2.5s; }
    .ss-slide--3 { animation-delay: 5s; }
    .ss-slide--4 { animation-delay: 7.5s; }

    @keyframes ss-slide-cycle {
      0%, 2%     { opacity: 0; transform: translateY(8px); }
      6%, 24%    { opacity: 1; transform: translateY(0); }
      28%, 100%  { opacity: 0; transform: translateY(-8px); }
    }

    .ss-section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      color: #fff;
    }
    .ss-section-head h5 {
      margin: 0;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    .ss-section-pill {
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      padding: 2px 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ss-list {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .ss-list--grow {
      flex: 1 1 auto;
      justify-content: space-between;
    }
    .ss-section-head--tight { margin-top: 1px; }

    /* Top stat strip used on schools/teachers slides */
    .ss-statstrip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      padding: 7px 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
    }
    .ss-stat-cell {
      position: relative;
      display: grid;
      gap: 1px;
      text-align: center;
    }
    .ss-stat-cell + .ss-stat-cell::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18%;
      bottom: 18%;
      width: 1px;
      background: rgba(255, 255, 255, 0.1);
    }
    .ss-stat-cell strong {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .ss-stat-cell span {
      font-size: 6.5px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
    }

    /* Featured banner on modules slide */
    .ss-feat-banner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 9px;
      padding: 8px 9px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(244, 63, 94, 0.22), rgba(124, 58, 237, 0.18));
      border: 1px solid rgba(244, 63, 94, 0.28);
      color: #fff;
    }
    .ss-feat-ico {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: rgba(244, 63, 94, 0.28);
      color: #fb7185;
      display: grid;
      place-items: center;
    }
    .ss-feat-ico svg { width: 14px; height: 14px; }
    .ss-feat-text { min-width: 0; }
    .ss-feat-text strong {
      display: block;
      font-size: 10.5px;
      font-weight: 800;
    }
    .ss-feat-text span {
      font-size: 7.5px;
      color: rgba(255, 255, 255, 0.65);
    }
    .ss-feat-pill {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #fb7185;
      padding: 2px 5px;
      border-radius: 4px;
      background: rgba(244, 63, 94, 0.22);
    }
    .ss-feat-pill i {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #fb7185;
      animation: ss-pulse 1.6s ease-out infinite;
    }

    .ss-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
    }
    .ss-row-text { min-width: 0; }
    .ss-row-text strong {
      display: block;
      font-size: 9.5px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .ss-row-text span {
      font-size: 7.5px;
      color: rgba(255, 255, 255, 0.6);
    }
    .ss-avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 8px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.04em;
    }
    .ss-avatar { position: relative; }
    .ss-avatar--blue    { background: linear-gradient(135deg, #3559ff, #6e8bff); }
    .ss-avatar--violet  { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
    .ss-avatar--emerald { background: linear-gradient(135deg, #10b981, #4ade80); }
    .ss-avatar--cyan    { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
    .ss-avatar--rose    { background: linear-gradient(135deg, #e11d48, #fb7185); }
    .ss-avatar--amber   { background: linear-gradient(135deg, #d97706, #fbbf24); }
    .ss-avatar .ss-online {
      position: absolute;
      bottom: -1px;
      right: -1px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 1.5px #0f172a;
    }

    .ss-trend {
      font-size: 7.5px;
      font-weight: 800;
      padding: 2px 5px;
      border-radius: 4px;
      letter-spacing: 0.04em;
      background: rgba(34, 197, 94, 0.2);
      color: #4ade80;
    }
    .ss-trend--soft {
      background: rgba(53, 89, 255, 0.18);
      color: #6e8bff;
    }
    .ss-rating {
      font-size: 8px;
      font-weight: 800;
      padding: 2px 5px;
      border-radius: 4px;
      background: rgba(245, 158, 11, 0.18);
      color: #fbbf24;
      letter-spacing: 0.02em;
    }

    .ss-mod-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
    }
    .ss-mod-grid--grow {
      flex: 1 1 auto;
      grid-auto-rows: 1fr;
    }
    .ss-mod {
      padding: 7px 7px 6px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 0;
    }
    .ss-mod-ico {
      width: 20px;
      height: 20px;
      border-radius: 7px;
      display: grid;
      place-items: center;
    }
    .ss-mod-ico svg { width: 12px; height: 12px; }
    .ss-mod strong { font-size: 9px; font-weight: 800; }
    .ss-mod-meta {
      margin-top: auto;
      font-size: 7px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.04em;
      font-weight: 700;
    }
    .ss-mod--blue    .ss-mod-ico { background: rgba(53, 89, 255, 0.22);  color: #6e8bff; }
    .ss-mod--violet  .ss-mod-ico { background: rgba(124, 58, 237, 0.22); color: #a78bfa; }
    .ss-mod--emerald .ss-mod-ico { background: rgba(34, 197, 94, 0.22);  color: #4ade80; }
    .ss-mod--cyan    .ss-mod-ico { background: rgba(6, 182, 212, 0.22);  color: #22d3ee; }
    .ss-mod--rose    .ss-mod-ico { background: rgba(244, 63, 94, 0.22);  color: #fb7185; }
    .ss-mod--amber   .ss-mod-ico { background: rgba(245, 158, 11, 0.22); color: #fbbf24; }
    .gavy-samsung__greet {
      color: #fff;
    }
    .gavy-samsung__greet .kicker {
      font-size: 8px;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
      letter-spacing: 0.04em;
    }
    .gavy-samsung__greet h4 {
      font-size: 12px;
      margin: 1px 0 0;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .gavy-samsung__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
    }
    .ss-tile {
      position: relative;
      padding: 6px 7px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
      display: grid;
      gap: 1px;
    }
    .ss-tile .ss-ico {
      width: 16px;
      height: 16px;
      border-radius: 6px;
      display: grid;
      place-items: center;
      margin-bottom: 2px;
    }
    .ss-tile .ss-ico svg {
      width: 10px;
      height: 10px;
    }
    .ss-tile strong {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .ss-tile .lbl {
      font-size: 7px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
    }
    .ss-tile--blue .ss-ico { background: rgba(53, 89, 255, 0.2); color: #6e8bff; }
    .ss-tile--violet .ss-ico { background: rgba(124, 58, 237, 0.22); color: #a78bfa; }
    .ss-tile--cyan .ss-ico { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
    .ss-tile--emerald .ss-ico { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

    .gavy-samsung__chart {
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 7px 8px 4px;
      color: #fff;
    }
    .ch-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 6px;
    }
    .ch-head .ch-kicker {
      display: block;
      font-size: 7px;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }
    .ch-head strong {
      font-size: 11px;
      font-weight: 800;
    }
    .ch-trend {
      font-size: 8px;
      font-weight: 800;
      background: rgba(34, 197, 94, 0.2);
      color: #4ade80;
      padding: 2px 5px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }
    .ch-line {
      width: 100%;
      height: 28px;
      display: block;
      margin-top: 4px;
    }

    .gavy-samsung__class {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(53, 89, 255, 0.1));
      border: 1px solid rgba(34, 197, 94, 0.22);
      color: #fff;
    }
    .cl-time {
      display: flex;
      align-items: baseline;
      gap: 2px;
    }
    .cl-time strong {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    .cl-time strong span { font-size: 11px; }
    .cl-time em {
      font-size: 6.5px;
      color: rgba(255, 255, 255, 0.6);
      font-style: normal;
      font-weight: 800;
      letter-spacing: 0.08em;
    }
    .cl-info { min-width: 0; }
    .cl-info strong {
      display: block;
      font-size: 9.5px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cl-info span {
      font-size: 7.5px;
      color: rgba(255, 255, 255, 0.65);
    }
    .cl-live {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #4ade80;
      padding: 2px 5px;
      border-radius: 4px;
      background: rgba(34, 197, 94, 0.2);
    }
    .cl-live i {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #22c55e;
      animation: ss-pulse 1.6s ease-out infinite;
    }
    @keyframes ss-pulse {
      0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
      70% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
      100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }

    .gavy-samsung__nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 4px 6px 10px;
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      flex: 0 0 auto;
    }
    .ss-nav {
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.35);
      padding: 4px 0;
      animation: ss-nav-cycle 14s ease-in-out infinite;
    }
    .ss-nav svg {
      width: 13px;
      height: 13px;
    }
    .ss-nav--1 { animation-delay: 0s; }
    .ss-nav--2 { animation-delay: -10.5s; }
    .ss-nav--3 { animation-delay: -7s; }
    .ss-nav--4 { animation-delay: -3.5s; }

    @keyframes ss-nav-cycle {
      0%, 1.5%, 25%, 100% {
        color: rgba(255, 255, 255, 0.35);
        filter: none;
      }
      4%, 22% {
        color: #fff;
        filter: drop-shadow(0 0 4px rgba(53, 89, 255, 0.6));
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ss-slide,
      .ss-nav { animation: none; }
      .ss-slide--1 { opacity: 1; transform: none; }
      .ss-nav--1 { color: #fff; filter: drop-shadow(0 0 4px rgba(53, 89, 255, 0.6)); }
    }

    .gavy-samsung__pill {
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 36%;
      height: 3px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.55);
      z-index: 6;
    }

    .gavy-features-actions {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 42px;
    }

    .gavy-features-actions .btn {
      border-radius: 0;
      padding: 14px 22px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.78rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
      min-width: min(240px, 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .gavy-features-actions .btn:hover {
      transform: translateY(-2px);
      filter: saturate(1.05);
    }

    .gavy-feature-login {
      background: #22c55e;
      border-color: #22c55e;
      box-shadow: 0 18px 44px rgba(34, 197, 94, 0.22);
      color: #ffffff;
    }

    .gavy-feature-demo {
      background: var(--gavy-primary);
      border-color: var(--gavy-primary);
      box-shadow: 0 18px 44px rgba(53, 89, 255, 0.2);
      color: #ffffff;
    }

    .gavy-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
      align-items: start;
    }

    .gavy-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .gavy-card {
      position: relative;
      border-radius: 22px;
      padding: 22px;
      border: 1px solid transparent;
      background:
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)) padding-box,
        linear-gradient(135deg, rgba(53, 89, 255, 0.35), rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.18)) border-box;
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: grid;
      gap: 10px;
    }

    .gavy-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
    }

    .gavy-card .icon {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(53, 89, 255, 0.12);
      color: var(--gavy-primary);
      font-weight: 900;
    }

    .gavy-card h3 {
      margin: 0;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
    }

    .gavy-card p {
      margin: 0;
      color: rgba(15, 23, 42, 0.72);
      line-height: 1.6;
    }

    /* ===== Modules section (enhanced) ===== */
    .gavy-section--modules {
      background:
        linear-gradient(180deg, rgba(53, 89, 255, 0.06), rgba(255, 255, 255, 0)) !important;
      position: relative;
      overflow: hidden;
    }

    .gavy-section--modules::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle, rgba(53, 89, 255, 0.07) 1px, transparent 1px);
      background-size: 24px 24px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
      pointer-events: none;
      opacity: 0.85;
      z-index: 0;
    }

    .gavy-section--modules > .gavy-container { position: relative; z-index: 1; }

    .gavy-modules-head {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 26px;
      align-items: end;
      margin-bottom: 8px;
    }

    @media (max-width: 820px) {
      .gavy-modules-head { grid-template-columns: 1fr; align-items: start; }
    }

    .gavy-modules-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.12), rgba(124, 58, 237, 0.1));
      border: 1px solid rgba(53, 89, 255, 0.22);
      color: var(--gavy-primary);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .gavy-modules-kicker svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .gavy-modules-title {
      font-size: clamp(2rem, 3.4vw, 2.8rem);
      letter-spacing: -0.025em;
      margin: 0 0 12px;
      line-height: 1.1;
    }

    .gavy-modules-title .accent {
      background: linear-gradient(135deg, #3559ff, #7c3aed 55%, #06b6d4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gavy-modules-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
    }

    @media (max-width: 820px) {
      .gavy-modules-meta { justify-content: flex-start; }
    }

    .gavy-modules-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
      color: var(--gavy-ink);
      font-weight: 600;
      font-size: 0.86rem;
    }

    .gavy-modules-badge .num {
      background: linear-gradient(135deg, #3559ff, #7c3aed);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      font-size: 1rem;
    }

    .gavy-modules-viewall {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 14px;
      background: var(--gavy-ink);
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .gavy-modules-viewall:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
      color: #ffffff;
    }

    .gavy-modules-viewall svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.2s ease;
    }

    .gavy-modules-viewall:hover svg { transform: translateX(3px); }

    .gavy-modules-empty {
      position: relative;
      margin-top: 22px;
      padding: 44px 28px;
      border-radius: 24px;
      text-align: center;
      background:
        linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)) padding-box,
        linear-gradient(135deg, rgba(53, 89, 255, 0.35), rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.18)) border-box;
      border: 1px solid transparent;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    }

    .gavy-modules-empty .gavy-icon-tile {
      margin: 0 auto 14px;
      width: 64px;
      height: 64px;
    }

    .gavy-modules-empty .gavy-icon-tile svg {
      width: 28px;
      height: 28px;
    }

    .gavy-modules-empty h3 {
      margin: 0 0 6px;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
    }

    .gavy-modules-empty p {
      margin: 0;
      color: rgba(15, 23, 42, 0.65);
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .gavy-modules-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 24px;
      padding: 18px 22px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(226, 232, 240, 0.85);
      backdrop-filter: blur(10px);
    }

    .gavy-modules-footer-text {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(15, 23, 42, 0.7);
      font-size: 0.92rem;
    }

    .gavy-modules-footer-text strong {
      color: var(--gavy-ink);
      font-weight: 700;
    }

    .gavy-modules-footer-text .gavy-icon-tile {
      width: 38px;
      height: 38px;
      box-shadow: 0 8px 18px rgba(53, 89, 255, 0.22);
    }
    .gavy-modules-footer-text .gavy-icon-tile svg { width: 18px; height: 18px; }

    .gavy-modules-footer-actions {
      display: inline-flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .gavy-modules-footer-actions .btn,
    .gavy-modules-footer-actions .btn.ghost {
      width: auto;
      border-radius: 12px;
      padding: 10px 18px;
      font-size: 0.9rem;
    }

    .gavy-modules-carousel {
      position: relative;
      margin-top: 22px;
    }

    .gavy-modules-track {
      --carousel-gap: 22px;
      --slide-w: clamp(300px, 82vw, 380px);
      display: flex;
      gap: var(--carousel-gap);
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding: 24px;
      padding: 6px 4px 18px;
      -ms-overflow-style: none;
      scrollbar-width: none;
      /* Smoothness: native smooth scroll for arrow / dot clicks, iOS momentum,
         and contain horizontal overscroll so the page doesn't bounce when you
         drag past the last slide. */
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
    }

    .gavy-modules-track::before,
    .gavy-modules-track::after {
      content: "";
      flex: 0 0 calc((100% - var(--slide-w)) / 2);
    }

    .gavy-modules-track::-webkit-scrollbar {
      display: none;
    }

    .gavy-module-slide {
      flex: 0 0 var(--slide-w);
      scroll-snap-align: center;
    }

    @media (min-width: 860px) {
      .gavy-modules-track {
        --slide-w: clamp(320px, 40vw, 400px);
      }

      .gavy-module-slide {
        flex-basis: var(--slide-w);
      }
    }

    @media (min-width: 1100px) {
      .gavy-modules-track {
        --slide-w: calc((100% - (var(--carousel-gap) * 2)) / 3);
      }

      .gavy-module-slide {
        flex-basis: var(--slide-w);
      }
    }

    .gavy-module-card {
      display: grid;
      height: 100%;
      border-radius: 22px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
      /* Smoother transition: longer duration + Apple-style ease-out-quart curve.
         Includes opacity so the side-card fade and centre-card lift run in lock-step. */
      transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      color: inherit;
      position: relative;
      will-change: transform;
    }

    .gavy-module-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.55), rgba(124, 58, 237, 0.45) 50%, rgba(6, 182, 212, 0.45));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      z-index: 6;
    }

    .gavy-module-slide.is-center .gavy-module-card::before,
    .gavy-module-card:hover::before {
      opacity: 1;
    }

    .gavy-module-slide .gavy-module-card {
      transform: translate3d(0, 8px, 0) scale(0.96);
      opacity: 0.78;
    }

    .gavy-module-card:hover {
      transform: translate3d(0, -6px, 0);
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    }

    .gavy-module-slide.is-center .gavy-module-card,
    .gavy-module-card:hover,
    .gavy-module-card:focus-within {
      transform: translate3d(0, 0, 0) scale(1.03);
      opacity: 1;
    }

    .gavy-module-card:focus-visible {
      outline: 3px solid rgba(53, 89, 255, 0.45);
      outline-offset: 4px;
    }

    .gavy-module-media {
      height: 238px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.65), rgba(124, 58, 237, 0.45));
    }

    .gavy-module-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: absolute;
      inset: 0;
      z-index: 1;
      transform: scale(1);
      transition: transform 0.35s ease;
    }

    .gavy-module-img--color {
      filter: saturate(1.06) contrast(1.05);
      z-index: 1;
    }

    .gavy-module-img--gray {
      z-index: 2;
      filter: grayscale(1) contrast(1.05) brightness(0.88);
      clip-path: inset(0 0 0 0);
      will-change: clip-path;
      transform: scale(1);
      transition: transform 0.35s ease;
    }

    .gavy-module-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 48%, rgba(15, 23, 42, 0.5)),
        radial-gradient(circle at 18% 80%, rgba(53, 89, 255, 0.35), transparent 55%);
      z-index: 3;
      opacity: 0;
      transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .gavy-module-slide.is-center .gavy-module-media::before,
    .gavy-module-card:hover .gavy-module-media::before {
      opacity: 1;
    }

    .gavy-module-media::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -120px;
      width: 86px;
      height: 132px;
      transform: translateX(-50%);
      background:
        linear-gradient(180deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(165, 180, 252, 0.55) 28%,
          rgba(255, 255, 255, 0.95) 50%,
          rgba(103, 232, 249, 0.55) 72%,
          rgba(255, 255, 255, 0) 100%);
      opacity: 0;
      z-index: 4;
      filter: blur(8px);
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .gavy-module-slide.is-center .gavy-module-media::after,
    .gavy-module-card:hover .gavy-module-media::after {
      animation: gavyScanDrop 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .gavy-module-slide.is-center .gavy-module-img--gray,
    .gavy-module-card:hover .gavy-module-img--gray {
      clip-path: inset(100% 0 0 0);
      animation: gavyGrayDrop 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .gavy-module-card:hover .gavy-module-img,
    .gavy-module-slide.is-center .gavy-module-img {
      transform: scale(1.04);
    }

    .gavy-module-slide.is-center .gavy-module-img--color {
      animation: gavyKenBurns 16s ease-in-out infinite alternate;
    }

    @keyframes gavyKenBurns {
      0%   { transform: scale(1.04) translate(0, 0); }
      100% { transform: scale(1.12) translate(-2%, -1.5%); }
    }

    @keyframes gavyScanDrop {
      0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
      }
      14% { opacity: 1; }
      85% { opacity: 1; }
      100% {
        opacity: 0;
        transform: translateX(-50%) translateY(calc(238px + 130px));
      }
    }

    @keyframes gavyGrayDrop {
      0%   { clip-path: inset(0 0 0 0); }
      55%  { clip-path: inset(56% 0 0 0); }
      100% { clip-path: inset(100% 0 0 0); }
    }

    /* "Active" badge that surfaces only on the centered card */
    .gavy-module-active-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px 7px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px) saturate(160%);
      -webkit-backdrop-filter: blur(14px) saturate(160%);
      color: rgba(15, 23, 42, 0.86);
      font-size: 0.66rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
      opacity: 0;
      transform: translateY(-6px) scale(0.95);
      transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
      pointer-events: none;
    }

    .gavy-module-active-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
      animation: gavyLivePulse 1.6s ease-out infinite;
    }

    .gavy-module-slide.is-center .gavy-module-active-badge {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .gavy-module-icon {
      position: absolute;
      left: 20px;
      bottom: -26px;
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #4263ff 0%, #7c3aed 100%);
      color: #ffffff;
      box-shadow:
        0 18px 38px rgba(53, 89, 255, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
      border: 4px solid #ffffff;
      z-index: 2;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gavy-module-slide.is-center .gavy-module-icon,
    .gavy-module-card:hover .gavy-module-icon {
      transform: translateY(-3px) rotate(-4deg);
    }

    .gavy-module-icon img {
      width: 28px;
      height: 28px;
      display: block;
      filter: brightness(0) invert(1);
    }

    .gavy-module-body {
      padding: 38px 24px 24px;
      display: grid;
      gap: 12px;
      position: relative;
      min-height: 234px;
      background: linear-gradient(180deg, rgba(248, 250, 255, 0.85), rgba(255, 255, 255, 0) 60%);
    }

    .gavy-module-tag {
      display: inline-flex;
      align-items: center;
      align-self: start;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(53, 89, 255, 0.92);
      background: rgba(53, 89, 255, 0.08);
      border: 1px solid rgba(53, 89, 255, 0.16);
      font-weight: 800;
    }

    .gavy-module-title {
      margin: 0;
      font-size: 1.22rem;
      letter-spacing: -0.02em;
      line-height: 1.22;
      color: rgba(15, 23, 42, 0.94);
      font-weight: 700;
    }

    .gavy-module-desc {
      margin: 0;
      color: rgba(15, 23, 42, 0.62);
      line-height: 1.62;
      font-size: 0.94rem;
    }

    .gavy-module-slide:not(.is-center) .gavy-module-title {
      color: rgba(15, 23, 42, 0.62);
    }

    .gavy-module-slide:not(.is-center) .gavy-module-desc,
    .gavy-module-slide:not(.is-center) .gavy-module-more {
      color: rgba(15, 23, 42, 0.52);
    }

    .gavy-module-more {
      display: inline-flex;
      align-items: center;
      align-self: start;
      gap: 8px;
      padding: 8px 14px 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.86rem;
      color: rgba(15, 23, 42, 0.7);
      background: rgba(15, 23, 42, 0.04);
      border: 1px solid rgba(15, 23, 42, 0.08);
      margin-top: 8px;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .gavy-module-more span {
      font-size: 1.05em;
      transition: transform 0.25s ease;
    }

    .gavy-module-watermark {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 64px;
      height: 64px;
      opacity: 0.06;
      color: var(--gavy-primary);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gavy-module-slide.is-center .gavy-module-watermark,
    .gavy-module-card:hover .gavy-module-watermark {
      opacity: 0.12;
      transform: rotate(-6deg) scale(1.05);
    }

    .gavy-module-watermark svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Edge fade-outs removed — they were obscuring the side slides with a
       white gradient. Carousel now extends cleanly to the container edges. */
    .gavy-modules-carousel::before,
    .gavy-modules-carousel::after { content: none; }

    /* Halo around the active card */
    .gavy-module-slide.is-center .gavy-module-card {
      box-shadow:
        0 28px 56px rgba(15, 23, 42, 0.14),
        0 40px 90px rgba(53, 89, 255, 0.22),
        0 -12px 64px rgba(124, 58, 237, 0.14);
    }

    /* Gradient title on the active card */
    .gavy-module-slide.is-center .gavy-module-title {
      background: linear-gradient(135deg, #3559ff, #7c3aed 55%, #06b6d4);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* "More" link gets an arrow that animates on active/hover */
    .gavy-module-slide.is-center .gavy-module-more,
    .gavy-module-card:hover .gavy-module-more {
      color: #ffffff;
      background: linear-gradient(135deg, #3559ff, #7c3aed);
      border-color: transparent;
      box-shadow: 0 12px 24px rgba(53, 89, 255, 0.32);
    }

    .gavy-module-slide.is-center .gavy-module-more span,
    .gavy-module-card:hover .gavy-module-more span {
      transform: translateX(4px);
    }

    .gavy-carousel-arrow {
      position: absolute;
      top: 104px;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      border: 1px solid transparent;
      background:
        linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.94)) padding-box,
        linear-gradient(135deg, rgba(53, 89, 255, 0.4), rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3)) border-box;
      backdrop-filter: blur(10px);
      display: grid;
      place-items: center;
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
      cursor: pointer;
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.2s ease;
      z-index: 6;
    }

    .gavy-carousel-arrow:hover {
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 26px 50px rgba(53, 89, 255, 0.22);
    }

    .gavy-carousel-arrow:hover svg {
      stroke: var(--gavy-primary);
    }

    .gavy-carousel-arrow:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    }

    .gavy-carousel-arrow svg {
      width: 22px;
      height: 22px;
      stroke: rgba(15, 23, 42, 0.78);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.2s ease;
    }

    .gavy-carousel-arrow.prev { left: -14px; }
    .gavy-carousel-arrow.next { right: -14px; }

    @media (max-width: 720px) {
      .gavy-carousel-arrow {
        display: none;
      }
    }

    .gavy-carousel-pagination {
      display: flex;
      justify-content: center;
      margin-top: 14px;
    }

    .gavy-carousel-dots {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
    }

    .gavy-carousel-ring {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .gavy-carousel-ring rect {
      stroke: rgba(53, 89, 255, 0.38);
      stroke-width: 2.2;
      stroke-dasharray: 6 7;
      fill: transparent;
      animation: gavyDashMove 4s linear infinite;
    }

    @keyframes gavyDashMove {
      from {
        stroke-dashoffset: 0;
      }
      to {
        stroke-dashoffset: -52;
      }
    }

    .gavy-carousel-dotstrip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .gavy-carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 2px solid var(--gavy-primary);
      background: transparent;
      padding: 0;
      cursor: pointer;
      transition:
        background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .gavy-carousel-dot:hover { transform: scale(1.18); }

    .gavy-carousel-dot.is-active {
      background: var(--gavy-primary);
      transform: scale(1.25);
      box-shadow: 0 0 0 3px rgba(53, 89, 255, 0.18);
    }

    .gavy-carousel-dot:focus-visible {
      outline: 3px solid rgba(53, 89, 255, 0.35);
      outline-offset: 4px;
    }

    .gavy-cta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 26px 28px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.12), rgba(124, 58, 237, 0.1));
      border: 1px solid rgba(53, 89, 255, 0.25);
    }

    .gavy-cta small {
      display: block;
      color: rgba(15, 23, 42, 0.7);
      margin-top: 6px;
    }

    .gavy-cta strong {
      font-size: 1.2rem;
      letter-spacing: -0.02em;
    }

    .gavy-cta .btn {
      width: auto;
      border-radius: 0;
      background: var(--gavy-primary);
      border-color: var(--gavy-primary);
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.1s ease-out, transform 0.1s ease-out;
      transition-delay: 0ms;
      will-change: opacity, transform;
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: none;
    }

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

      .gavy-media {
        justify-self: stretch;
        width: 100%;
        min-height: 380px;
      }

      .gavy-features-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .gavy-feature-col {
        max-width: 560px;
        margin: 0 auto;
      }

      .gavy-feature-col--left,
      .gavy-feature-col--right {
        justify-self: stretch;
      }

      .gavy-feature {
        max-width: none;
      }

      .gavy-feature--right {
        flex-direction: row;
        text-align: left;
      }
    }

    @media (max-width: 768px) {
      .gavy-watermark,
      .gavy-net,
      .gavy-blob,
      .gavy-orbit,
      .gavy-orbit-ring,
      .gavy-orbit-ring--alt,
      .gavy-floatcard,
      .gavy-dot,
      .gavy-live-pill {
        display: none !important;
      }
      .gavy-portrait::after { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .gavy-hero::before,
      .gavy-section--alt::before {
        animation: none;
      }

      .gavy-blob,
      .gavy-portrait,
      .gavy-dot {
        animation: none;
      }

      .gavy-watermark {
        animation: none;
        opacity: 1;
      }

      [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }

      .gavy-carousel-ring rect {
        animation: none;
      }

      .gavy-module-slide.is-center .gavy-module-media::after,
      .gavy-module-card:hover .gavy-module-media::after {
        animation: none;
        opacity: 0;
      }

      .gavy-module-slide.is-center .gavy-module-img--gray,
      .gavy-module-card:hover .gavy-module-img--gray {
        animation: none;
      }
    }

    /* ===== Upgraded card icons (replaces emoji blocks) ===== */
    .gavy-icon-tile {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #ffffff;
      box-shadow: 0 12px 26px rgba(53, 89, 255, 0.22);
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .gavy-icon-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
      pointer-events: none;
    }

    .gavy-icon-tile svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      position: relative;
      z-index: 1;
    }

    .gavy-icon-tile.tile-blue   { background: linear-gradient(135deg, #3559ff, #5b8cff); }
    .gavy-icon-tile.tile-violet { background: linear-gradient(135deg, #7c3aed, #a855f7); }
    .gavy-icon-tile.tile-cyan   { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
    .gavy-icon-tile.tile-emerald{ background: linear-gradient(135deg, #10b981, #34d399); }
    .gavy-icon-tile.tile-amber  { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
    .gavy-icon-tile.tile-rose   { background: linear-gradient(135deg, #f43f5e, #fb7185); }
    .gavy-icon-tile.tile-indigo { background: linear-gradient(135deg, #4f46e5, #818cf8); }
    .gavy-icon-tile.tile-slate  { background: linear-gradient(135deg, #0f172a, #475569); }

    .gavy-card:hover .gavy-icon-tile {
      transform: translateY(-2px) scale(1.04);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ===== Stats strip (social proof) ===== */
    .gavy-stats-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0;
      margin-top: 32px;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92)) padding-box,
        linear-gradient(135deg, rgba(53, 89, 255, 0.4), rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3)) border-box;
      border: 1px solid transparent;
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }

    .gavy-stat {
      padding: 26px 22px;
      text-align: center;
      border-right: 1px solid rgba(226, 232, 240, 0.7);
      position: relative;
    }

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

    .gavy-stat-value {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #3559ff, #7c3aed);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.05;
    }

    .gavy-stat-label {
      display: block;
      margin-top: 6px;
      color: rgba(15, 23, 42, 0.65);
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    @media (max-width: 720px) {
      .gavy-stat {
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.7);
      }
      .gavy-stat:last-child { border-bottom: none; }
    }

    /* ===== "How it works" steps ===== */
    .gavy-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 22px;
      margin-top: 28px;
      counter-reset: gavy-step;
    }

    .gavy-step {
      position: relative;
      padding: 26px 22px 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .gavy-step::before {
      counter-increment: gavy-step;
      content: counter(gavy-step, decimal-leading-zero);
      position: absolute;
      top: 18px;
      right: 22px;
      font-weight: 900;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.18), rgba(124, 58, 237, 0.12));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gavy-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    }

    .gavy-step h3 {
      margin: 14px 0 8px;
      font-size: 1.1rem;
      letter-spacing: -0.01em;
    }

    .gavy-step p {
      margin: 0;
      color: rgba(15, 23, 42, 0.7);
      line-height: 1.65;
      font-size: 0.95rem;
    }

    .gavy-step-arrow {
      display: none;
    }

    @media (min-width: 980px) {
      .gavy-steps.gavy-steps--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .gavy-steps.gavy-steps--3 .gavy-step:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -16px;
        top: 50%;
        width: 16px;
        height: 2px;
        background: linear-gradient(90deg, rgba(53, 89, 255, 0.4), rgba(124, 58, 237, 0.2));
        transform: translateY(-50%);
      }
    }

    /* ===== Trust strip ===== */
    .gavy-trust {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px 22px;
      margin-top: 28px;
      padding: 18px 22px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(226, 232, 240, 0.8);
      backdrop-filter: blur(8px);
    }

    .gavy-trust-label {
      color: rgba(15, 23, 42, 0.55);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .gavy-trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(53, 89, 255, 0.08), rgba(124, 58, 237, 0.06));
      border: 1px solid rgba(53, 89, 255, 0.18);
      color: var(--gavy-ink);
      font-weight: 600;
      font-size: 0.86rem;
    }

    .gavy-trust-chip svg {
      width: 14px;
      height: 14px;
      stroke: var(--gavy-primary);
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ===== Premium closing CTA (replaces flat .gavy-cta block) ===== */
    .gavy-cta-pro {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
      border-radius: 32px;
      color: #ffffff;
      background:
        radial-gradient(circle at 18% 28%, rgba(124, 58, 237, 0.55), transparent 52%),
        radial-gradient(circle at 82% 70%, rgba(6, 182, 212, 0.5), transparent 55%),
        linear-gradient(135deg, #1e293b 0%, #312e81 60%, #1e3a8a 100%);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
    }

    .gavy-cta-pro::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, 0.6), transparent 50%),
        radial-gradient(1.5px 1.5px at 78% 18%, rgba(255, 255, 255, 0.55), transparent 50%),
        radial-gradient(1.5px 1.5px at 32% 78%, rgba(255, 255, 255, 0.5), transparent 50%),
        radial-gradient(1.5px 1.5px at 88% 64%, rgba(255, 255, 255, 0.55), transparent 50%),
        radial-gradient(1.5px 1.5px at 52% 36%, rgba(255, 255, 255, 0.4), transparent 50%);
      z-index: -1;
      opacity: 0.85;
    }

    .gavy-cta-pro::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: conic-gradient(from 120deg, rgba(124, 58, 237, 0.45), rgba(6, 182, 212, 0.35), rgba(53, 89, 255, 0.45));
      filter: blur(60px);
      z-index: -1;
      opacity: 0.7;
      animation: gavyMeshDrift 18s ease-in-out infinite alternate;
    }

    .gavy-cta-pro__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 28px;
      align-items: center;
    }

    .gavy-cta-pro__kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 16px;
    }

    .gavy-cta-pro__kicker i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
      display: inline-block;
    }

    .gavy-cta-pro h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      letter-spacing: -0.025em;
      margin: 0 0 10px;
      color: #ffffff;
      line-height: 1.15;
    }

    .gavy-cta-pro h2 .accent {
      background: linear-gradient(135deg, #a5b4fc, #67e8f9);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gavy-cta-pro p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.65;
      max-width: 560px;
    }

    .gavy-cta-pro__actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
      justify-self: end;
      min-width: 260px;
    }

    .gavy-cta-pro__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .gavy-cta-pro__btn--primary {
      background: #ffffff;
      color: #1e293b;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
    }

    .gavy-cta-pro__btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
    }

    .gavy-cta-pro__btn--ghost {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .gavy-cta-pro__btn--ghost:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-2px);
    }

    .gavy-cta-pro__hint {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.82rem;
      text-align: center;
      margin-top: 4px;
    }

    @media (max-width: 820px) {
      .gavy-cta-pro__grid {
        grid-template-columns: 1fr;
      }
      .gavy-cta-pro__actions {
        justify-self: stretch;
        min-width: 0;
      }
    }

/* ===== Operating Systems platform grid ===== */
.gavy-os-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #ffffff 100%);
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}
.gavy-os-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 48px);
}
.gavy-os-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.10);
  color: #4338ca;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.gavy-os-kicker i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
  display: inline-block;
}
.gavy-os-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #0f172a;
  line-height: 1.15;
}
.gavy-os-head h2 .accent {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gavy-os-lead {
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.6;
}

.gavy-os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.gavy-os-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  position: relative;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.gavy-os-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
  border-color: rgba(99, 102, 241, 0.25);
}
.gavy-os-card--soon {
  background: linear-gradient(135deg, #fafbff 0%, #f8fafc 100%);
}
.gavy-os-card--soon:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.gavy-os-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.gavy-os-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--tint, #6366f1) 12%, white);
  color: var(--tint, #6366f1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--tint, #6366f1) 22%, white);
}
.gavy-os-card__icon svg { width: 22px; height: 22px; }

.gavy-os-badge {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.gavy-os-badge--live    { background: rgba(34, 197, 94, 0.12);  color: #166534; border: 1px solid rgba(34, 197, 94, 0.30); }
.gavy-os-badge--preview { background: rgba(14, 165, 233, 0.12); color: #075985; border: 1px solid rgba(14, 165, 233, 0.30); }
.gavy-os-badge--soon    { background: rgba(100, 116, 139, 0.12); color: #475569; border: 1px solid rgba(100, 116, 139, 0.25); }

.gavy-os-card h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.gavy-os-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}
.gavy-os-card__cta {
  margin-top: auto;
  padding: 10px 0 0;
  color: #4338ca;
  font-weight: 700;
  font-size: 0.92rem;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.gavy-os-card--soon .gavy-os-card__cta { color: #475569; }
.gavy-os-card:hover .gavy-os-card__cta { color: #312e81; }

.gavy-os-foot {
  text-align: center;
  margin-top: clamp(20px, 3vw, 32px);
  color: #64748b;
  font-size: 0.95rem;
}
.gavy-os-foot a {
  color: #4338ca;
  font-weight: 700;
  text-decoration: none;
}
.gavy-os-foot a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .gavy-os-grid { grid-template-columns: 1fr; }
}

/* ===== Contact + Book appointment ===== */
.gavy-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3.5vw, 48px);
  padding: clamp(28px, 4vw, 56px);
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 60%, #ecfeff 100%);
  border: 1px solid rgba(99, 102, 241, 0.14);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gavy-contact::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
  z-index: -1;
}

.gavy-contact__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gavy-contact__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}
.gavy-contact__kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
}

.gavy-contact h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: #0f172a;
  line-height: 1.18;
}
.gavy-contact h2 .accent {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gavy-contact > .gavy-contact__intro > p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  max-width: 480px;
}

.gavy-contact__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gavy-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gavy-contact__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.18);
  color: #4338ca;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(67, 56, 202, 0.08);
}
.gavy-contact__icon svg { width: 22px; height: 22px; }
.gavy-contact__item > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gavy-contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.gavy-contact__value {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.02rem;
  word-break: break-word;
}
a.gavy-contact__value:hover { color: #4338ca; }
.gavy-contact__hint { font-size: 0.83rem; color: #64748b; }

.gavy-contact__card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gavy-contact__card-head h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.gavy-contact__card-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.gavy-contact__alerts { display: flex; flex-direction: column; gap: 8px; }
.gavy-contact__alert {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1px solid transparent;
}
.gavy-contact__alert--success { background: rgba(34, 197, 94, 0.10); color: #166534; border-color: rgba(34, 197, 94, 0.25); }
.gavy-contact__alert--error,
.gavy-contact__alert--danger { background: rgba(239, 68, 68, 0.10); color: #991b1b; border-color: rgba(239, 68, 68, 0.25); }
.gavy-contact__alert--info { background: rgba(99, 102, 241, 0.10); color: #3730a3; border-color: rgba(99, 102, 241, 0.22); }

.gavy-contact__form { display: flex; flex-direction: column; gap: 12px; }
.gavy-contact__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}
.gavy-contact__field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gavy-contact__field--full { grid-column: 1 / -1; }
.gavy-contact__field--hint small { color: #64748b; font-size: 0.82rem; line-height: 1.4; }
.gavy-contact__field > span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.04em;
}
.gavy-contact__field > span em { color: #ef4444; font-style: normal; }
.gavy-contact__field input,
.gavy-contact__field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 11px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  font-size: 0.95rem;
  color: #0f172a;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gavy-contact__field input:focus,
.gavy-contact__field textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.gavy-contact__field textarea { resize: vertical; min-height: 96px; }

.gavy-contact__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.gavy-contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.gavy-contact__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(79, 70, 229, 0.34);
}
.gavy-contact__submit:disabled { opacity: 0.65; cursor: progress; transform: none; }
.gavy-contact__submit-hint { font-size: 0.82rem; color: #64748b; }

@media (max-width: 920px) {
  .gavy-contact { grid-template-columns: 1fr; }
  .gavy-contact__row { grid-template-columns: 1fr; }
}

/* ===== Hero decorative dots+lines network (pure CSS, GPU-composited) ===== */
.gavy-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.gavy-net-lines line {
  stroke: rgba(53, 89, 255, 0.4);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: gavyNetDraw 7s linear infinite;
  will-change: stroke-dashoffset, opacity;
}
.gavy-net-lines line:nth-child(1) { animation-delay: 0s;   }
.gavy-net-lines line:nth-child(2) { animation-delay: 0.9s; }
.gavy-net-lines line:nth-child(3) { animation-delay: 1.8s; }
.gavy-net-lines line:nth-child(4) { animation-delay: 2.7s; }
.gavy-net-lines line:nth-child(5) { animation-delay: 3.6s; }
.gavy-net-lines line:nth-child(6) { animation-delay: 4.5s; }
.gavy-net-lines line:nth-child(7) { animation-delay: 5.4s; }
.gavy-net-lines line:nth-child(8) { animation-delay: 6.3s; }

@keyframes gavyNetDraw {
  0%   { stroke-dashoffset: 600;  opacity: 0;    }
  12%  { opacity: 0.85; }
  60%  { stroke-dashoffset: 0;    opacity: 0.55; }
  100% { stroke-dashoffset: -600; opacity: 0;    }
}

.gavy-net-dots circle {
  fill: rgba(53, 89, 255, 0.85);
  filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.55));
  transform-origin: center;
  transform-box: fill-box;
  animation: gavyNetPulse 2.6s ease-in-out infinite;
  will-change: transform, opacity;
}
.gavy-net-dots circle:nth-child(1) { animation-delay: 0s;   }
.gavy-net-dots circle:nth-child(2) { animation-delay: 0.4s; }
.gavy-net-dots circle:nth-child(3) { animation-delay: 0.8s; }
.gavy-net-dots circle:nth-child(4) { animation-delay: 1.2s; }
.gavy-net-dots circle:nth-child(5) { animation-delay: 1.6s; }
.gavy-net-dots circle:nth-child(6) { animation-delay: 2.0s; }

@keyframes gavyNetPulse {
  0%, 100% { transform: scale(1);   opacity: 0.65; }
  50%      { transform: scale(1.5); opacity: 1;    }
}

/* Skip on small screens to save battery and avoid clutter */
@media (max-width: 760px) {
  .gavy-net { display: none; }
}

/* Honor user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .gavy-net-lines line,
  .gavy-net-dots circle {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 0.4;
  }
}

/* ===== Home page: hide the global Sneat chrome so .gavy-audience-tabs is the navbar ===== */
/* The body class is set by inline JS in home.html so the rules apply even when :has() is missing. */
body.gavy-home-layout .layout-navbar,
body.gavy-home-layout .gavy-tabbar,
body.gavy-home-layout .content-footer { display: none !important; }
body.gavy-home-layout .layout-page {
  width: 100% !important;
  min-width: 0;
  /* Sneat reserves space for the fixed sidebar via padding; remove it on the home page. */
  padding-inline-start: 0 !important;
  padding-left: 0 !important;
}
body.gavy-home-layout .content-wrapper { padding: 0 !important; }
body.gavy-home-layout .container-xxl.flex-grow-1.container-p-y {
  padding: 0 !important;
  max-width: 100% !important;
}

/* Sidebar becomes an off-canvas drawer on the home page (closed by default) */
body.gavy-home-layout #layout-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 280px !important;
  max-width: 86vw;
  z-index: 1080 !important;
  transform: translateX(-105%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible !important;
  display: block !important;
}
body.gavy-home-layout.gavy-home-menu-open #layout-menu {
  transform: translateX(0) !important;
}

/* Backdrop */
.gavy-home-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1070;
}
body.gavy-home-layout.gavy-home-menu-open .gavy-home-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.gavy-home-layout.gavy-home-menu-open { overflow: hidden; }

/* Hamburger button on the topbar */
.gavy-topbar__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.65);
  color: #1e293b;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.gavy-topbar__menu-btn:hover {
  background: rgba(37, 65, 255, 0.08);
  border-color: rgba(37, 65, 255, 0.45);
  color: #2541ff;
}
.gavy-topbar__menu-btn:active { transform: scale(0.96); }
html.home-menu-open .gavy-topbar__menu-btn {
  background: linear-gradient(135deg, #2541ff, #7b3ff2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(37, 65, 255, 0.32);
}

/* ===== Audience tabs (Schools / Teachers / Students / Parents) ===== */
nav.gavy-audience-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
  width: 100%;
}

/* Three-zone topbar: [Hamburger + Brand]  [Audience Tabs]  [Auth CTAs]
   Mobile: flex with wrap so tabs flow to a second row.
   Desktop: 3-column grid (1fr auto 1fr) so tabs sit dead-centre
            regardless of brand/CTA widths. */
.gavy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  width: 100%;
}
.gavy-topbar__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
@media (min-width: 901px) {
  .gavy-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(20px, 3vw, 48px);
    padding: 14px 0;
  }
  .gavy-topbar__left   { justify-self: start; }
  .gavy-topbar__strip-wrap { justify-self: center; }
  .gavy-topbar__actions    { justify-self: end; }
}
@media (min-width: 1280px) {
  .gavy-topbar { padding: 16px 0; column-gap: 56px; }
}

.gavy-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
}
.gavy-topbar__brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.gavy-topbar__brand-accent {
  background: linear-gradient(135deg, #2541ff, #7b3ff2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.gavy-topbar__strip-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.gavy-topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.gavy-topbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.gavy-topbar__btn--ghost {
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.5);
}
.gavy-topbar__btn--ghost:hover {
  border-color: #2541ff;
  color: #2541ff;
  background: rgba(37, 65, 255, 0.06);
}
.gavy-topbar__btn--solid {
  background: linear-gradient(135deg, #2541ff, #7b3ff2);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(37, 65, 255, 0.28);
}
.gavy-topbar__btn--solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 65, 255, 0.40);
  color: #ffffff !important;
}
.gavy-topbar__btn--solid svg { transition: transform 0.18s ease; }
.gavy-topbar__btn--solid:hover svg { transform: translateX(2px); }

@media (max-width: 900px) {
  .gavy-topbar { flex-wrap: wrap; padding: 8px 0; gap: 8px; }
  .gavy-topbar__strip-wrap { order: 3; flex-basis: 100%; }
}
@media (max-width: 480px) {
  .gavy-topbar__brand span { display: none; }
  .gavy-topbar__btn { padding: 6px 12px; font-size: 0.78rem; }
  .gavy-topbar__actions { gap: 6px; }
}

nav.gavy-audience-tabs .gavy-audience-tabs__strip {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
}
nav.gavy-audience-tabs .gavy-audience-tabs__strip::-webkit-scrollbar { display: none; }

nav.gavy-audience-tabs a.gavy-audience-tab {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  color: #475569;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
nav.gavy-audience-tabs a.gavy-audience-tab > svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
nav.gavy-audience-tabs a.gavy-audience-tab:hover {
  background: rgba(37, 65, 255, 0.06);
  color: var(--gavy-primary, #2541ff);
  border-color: rgba(37, 65, 255, 0.18);
}
nav.gavy-audience-tabs a.gavy-audience-tab.is-active,
nav.gavy-audience-tabs a.gavy-audience-tab.is-active:hover {
  background: linear-gradient(135deg, var(--gavy-primary, #2541ff), var(--gavy-violet, #7b3ff2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(37, 65, 255, 0.25);
}
nav.gavy-audience-tabs a.gavy-audience-tab.is-active:hover { transform: translateY(-1px); }

@media (max-width: 640px) {
  nav.gavy-audience-tabs .gavy-audience-tabs__strip { padding: 5px 0; gap: 3px; }
  nav.gavy-audience-tabs a.gavy-audience-tab { padding: 5px 10px; font-size: 0.74rem; gap: 5px; }
  nav.gavy-audience-tabs a.gavy-audience-tab > svg { width: 13px !important; height: 13px !important; flex-basis: 13px; }
  nav.gavy-audience-tabs a.gavy-audience-tab.is-active { box-shadow: 0 4px 12px rgba(37, 65, 255, 0.22); }
}
@media (max-width: 420px) {
  /* Hide tab icons on the smallest phones to fit all 4 audiences in one row */
  nav.gavy-audience-tabs a.gavy-audience-tab > svg { display: none; }
  nav.gavy-audience-tabs a.gavy-audience-tab { padding: 4px 9px; font-size: 0.7rem; gap: 0; }
  nav.gavy-audience-tabs .gavy-audience-tabs__strip { padding: 4px 0; }
}

/* ===== Live-now ribbon (home page) ===== */
.gavy-livenow {
  padding: 32px 0 12px;
  background: linear-gradient(180deg, rgba(239,68,68,0.04), transparent);
}
.gavy-livenow__head { margin-bottom: 16px; }
.gavy-livenow__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(239,68,68,0.12); color: #b91c1c;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
}
.gavy-livenow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
  animation: gavy-livenow-pulse 1.4s infinite;
}
@keyframes gavy-livenow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(239,68,68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68, 0); }
}
.gavy-livenow__lead {
  margin: 8px 0 0; color: #475569; font-size: 0.96rem; max-width: 640px;
}
.gavy-livenow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.gavy-livenow-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 20px; border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(239,68,68,0.18);
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
  text-decoration: none; color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.gavy-livenow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239,68,68,0.4);
  box-shadow: 0 18px 36px rgba(239,68,68,0.12);
}
.gavy-livenow-card__pill {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(239,68,68,0.12); color: #b91c1c;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.gavy-livenow-card h3 { margin: 0; font-size: 1.05rem; font-weight: 800; line-height: 1.3; color: #0f172a; }
.gavy-livenow-card__teacher {
  display: flex; align-items: center; gap: 10px;
  margin: 0; color: #475569; font-size: 0.88rem;
}
.gavy-livenow-card__teacher img,
.gavy-livenow-card__avatar {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  background: rgba(37,65,255,0.12); color: var(--gavy-primary, #2541ff);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem;
}
.gavy-livenow-card__cta {
  margin-top: auto;
  font-weight: 700; font-size: 0.86rem; color: #b91c1c;
}

/* ====== Global mobile safety + home-page tweaks ====== */
html, body { overflow-x: hidden; }
img, video, svg { max-width: 100%; }

@media (max-width: 640px) {
  .gavy-container { padding-left: 10px; padding-right: 10px; }

  /* Hero — tighter top/bottom, smaller heading, compressed kicker pill */
  .gavy-hero-grid { grid-template-columns: 1fr; gap: 10px; }
  /* IMPORTANT: kill the desktop min-height so the hero is content-sized on phones.
     Without this, the hero stretches to ~82vh and pushes every other section off-screen. */
  .gavy-hero { padding: 12px 0 14px; min-height: 0 !important; }
  .gavy-hero-stage { padding: 0; }
  /* Cycling feature columns also use a 320px min-height on desktop —
     drop it on mobile so the hero/features-block only takes the space its content needs. */
  .gavy-feature-col { min-height: 0 !important; max-width: none !important; }
  .gavy-hero h1 { font-size: 1.32rem; line-height: 1.18; margin: 4px 0 6px; letter-spacing: -0.02em; }
  .gavy-hero p { font-size: 0.84rem; line-height: 1.4; margin: 0 0 8px; }

  /* Compressed kicker pill — ~22px tall instead of ~32px */
  .gavy-badge { font-size: 0.62rem; padding: 3px 9px; gap: 7px; letter-spacing: 0.1em; }
  .gavy-badge i { width: 30px; height: 11px; }
  .gavy-badge i::after { width: 13px; height: 13px; right: -1px; }

  .gavy-actions { flex-wrap: wrap; gap: 5px; margin-top: 4px; }
  .gavy-actions .btn { flex: 1; min-width: 0; padding: 7px 10px; font-size: 0.8rem; text-align: center; }
  .gavy-watch { padding: 5px 10px; font-size: 0.74rem; }
  .gavy-hero-trust { flex-wrap: wrap; gap: 6px; margin-top: 6px; }
  .gavy-hero-rating-text { font-size: 0.72rem; }
  .gavy-hero-avatars span { width: 22px; height: 22px; font-size: 0.6rem; }
  .gavy-scrollcue { display: none; }

  /* Hide every decorative shape on phones — keep the surface clean */
  .gavy-net, .gavy-watermark { display: none; }
  .gavy-media { display: none; }
  .gavy-portrait, .gavy-blob, .gavy-orbit, .gavy-orbit-ring, .gavy-orbit-ring--alt, .gavy-dot, .gavy-floatcard, .gavy-live-pill { display: none !important; }

  /* Audience tabs */
  .gavy-audience-tabs__strip { gap: 4px; padding: 6px 4px; }
  .gavy-audience-tab { padding: 6px 10px; font-size: 0.78rem; }
  .gavy-audience-tab svg { width: 14px; height: 14px; }

  /* Stats strip */
  .gavy-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gavy-stat { padding: 10px; }
  .gavy-stat-value { font-size: 1.2rem; }
  .gavy-stat-label { font-size: 0.68rem; }

  /* Trust chips */
  .gavy-trust { flex-wrap: wrap; gap: 5px; margin-top: 12px; }
  .gavy-trust-chip { font-size: 0.7rem; padding: 3px 8px; }
  .gavy-trust-label { font-size: 0.74rem; }

  /* Section spacing — much tighter so more fits in view */
  .gavy-section { padding: 22px 0; }
  .gavy-section--alt { padding: 22px 0; }
  .gavy-section h2 { font-size: 1.2rem; line-height: 1.2; margin: 0 0 6px; }
  .gavy-lead { font-size: 0.84rem; line-height: 1.45; margin: 0 0 14px; }

  /* Card grids — 2-per-row on phones with very compact fonts */
  .gavy-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px; }
  .gavy-card { padding: 10px; min-width: 0; }
  .gavy-card h3 { font-size: 0.78rem; margin: 4px 0; line-height: 1.2; word-break: break-word; }
  .gavy-card p { font-size: 0.68rem; line-height: 1.35; }
  .gavy-card > span { font-size: 0.7rem !important; gap: 4px !important; }
  .gavy-icon-tile { width: 32px; height: 32px; border-radius: 9px; }
  .gavy-icon-tile svg { width: 16px; height: 16px; }

  /* Steps — 2-per-row on phones, compact */
  .gavy-steps, .gavy-steps--3 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px; margin-top: 14px; }
  .gavy-step { padding: 12px 10px 10px; min-width: 0; border-radius: 14px; }
  .gavy-step h3 { font-size: 0.82rem; margin: 6px 0 4px; line-height: 1.2; }
  .gavy-step p { font-size: 0.7rem; line-height: 1.4; }
  .gavy-step::before { font-size: 1rem; top: 8px; right: 10px; }

  /* Features grid — collapse the 3-col phone-frame layout */
  .gavy-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .gavy-samsung { width: min(240px, 84%); margin: 0 auto; }
  .gavy-feature { padding: 8px; }
  .gavy-feature p { font-size: 0.84rem; }
  .gavy-features-title { font-size: 1.4rem; }
  .gavy-features-logo { max-width: 64px; }

  /* Modules section — switch from carousel to a compact 2-col grid so 4 cells fit on screen */
  .gavy-section--modules { padding: 22px 0; }
  .gavy-modules-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
  .gavy-modules-title { font-size: 1.2rem; line-height: 1.2; }
  .gavy-modules-kicker { font-size: 0.68rem; padding: 4px 8px; }
  .gavy-modules-meta { gap: 8px; }
  .gavy-modules-badge { font-size: 0.72rem; padding: 4px 10px; }
  .gavy-modules-viewall { font-size: 0.78rem; }

  .gavy-modules-carousel { padding: 0; }
  .gavy-modules-carousel::before,
  .gavy-modules-carousel::after { display: none; }
  .gavy-modules-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding: 0 !important;
    --slide-w: auto;
  }
  .gavy-modules-track::before,
  .gavy-modules-track::after { content: none !important; display: none !important; flex: none !important; }
  .gavy-module-slide { flex: none !important; width: auto !important; scroll-snap-align: none !important; }
  .gavy-module-slide .gavy-module-card { transform: none !important; opacity: 1 !important; }
  .gavy-module-card { padding: 0; border-radius: 14px; box-shadow: 0 6px 16px rgba(15,23,42,0.08); }
  .gavy-module-media { height: 88px; }
  .gavy-module-icon { width: 36px; height: 36px; left: 10px; bottom: -16px; border-radius: 10px; }
  .gavy-module-icon img { width: 18px; height: 18px; }
  .gavy-module-active-badge { display: none !important; }
  .gavy-module-watermark { display: none; }
  .gavy-module-body { padding: 22px 12px 12px; min-height: 0; gap: 6px; }
  .gavy-module-tag { font-size: 0.58rem; padding: 3px 7px; letter-spacing: 0.1em; }
  .gavy-module-title { font-size: 0.86rem; line-height: 1.2; }
  .gavy-module-desc {
    font-size: 0.74rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .gavy-module-more { font-size: 0.74rem; padding: 5px 10px; margin-top: 4px; }
  .gavy-carousel-arrow { display: none; }
  .gavy-carousel-pagination { display: none; }
  .gavy-modules-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
  .gavy-modules-footer-actions { flex-direction: column; width: 100%; gap: 8px; }
  .gavy-modules-footer-actions .btn { width: 100%; padding: 8px 14px; font-size: 0.84rem; }

  /* CTA strip */
  .gavy-cta-pro { padding: 16px 14px; border-radius: 14px; }
  .gavy-cta-pro__grid { grid-template-columns: 1fr; gap: 10px; }
  .gavy-cta-pro h2 { font-size: 1.1rem; line-height: 1.2; }
  .gavy-cta-pro p { font-size: 0.84rem; }
  .gavy-cta-pro__btn { padding: 8px 14px; font-size: 0.82rem; width: 100%; justify-content: center; }
  .gavy-cta-pro__hint { font-size: 0.72rem; }

  /* Live-now ribbon (homepage) */
  .gavy-livenow-grid { grid-template-columns: 1fr !important; }
  .gavy-livenow-card { padding: 12px; }
  .gavy-livenow-card h3 { font-size: 0.94rem; }
  .gavy-livenow-card__teacher { font-size: 0.8rem; }

  /* Marketplace + materials sections (above hero) */
  .gavy-marketplace, .gavy-matmarket { padding: 18px 0 12px; }
  .gavy-marketplace__head, .gavy-matmarket__head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
  .gavy-marketplace__title, .gavy-matmarket__title { font-size: 1.15rem; line-height: 1.2; }
  .gavy-marketplace__lead, .gavy-matmarket__lead { font-size: 0.82rem; line-height: 1.4; }
  .gavy-marketplace__kicker, .gavy-matmarket__kicker { font-size: 0.66rem; padding: 4px 8px; }
}

/* ===== Teacher marketplace (above the hero) ===== */
.gavy-marketplace {
  position: relative;
  padding: 28px 0 18px;
  background:
    radial-gradient(1200px 240px at 50% -40%, rgba(53, 89, 255, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(247, 248, 255, 1) 0%, rgba(247, 248, 255, 0.6) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.gavy-marketplace .gavy-container {
  position: relative;
  z-index: 1;
}

.gavy-marketplace__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gavy-marketplace__heading {
  max-width: 720px;
}

.gavy-marketplace__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(53, 89, 255, 0.18);
  color: rgba(53, 89, 255, 0.95);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.gavy-marketplace__kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: gavyLivePulse 1.6s ease-out infinite;
}

.gavy-marketplace__title {
  margin: 12px 0 6px;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: rgba(15, 23, 42, 0.95);
  font-weight: 800;
}

.gavy-marketplace__title .accent {
  background: linear-gradient(135deg, #3559ff, #7c3aed 60%, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gavy-marketplace__lead {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.96rem;
  line-height: 1.55;
}

.gavy-marketplace__viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.82);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.gavy-marketplace__viewall svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.gavy-marketplace__viewall:hover {
  color: var(--gavy-primary);
  border-color: rgba(53, 89, 255, 0.45);
  box-shadow: 0 10px 22px rgba(53, 89, 255, 0.12);
}

.gavy-marketplace__viewall:hover svg {
  transform: translateX(3px);
}

.gavy-marketplace__viewport {
  position: relative;
}

.gavy-marketplace__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(248px, 27vw, 296px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  padding: 6px 6px 18px;
  scrollbar-width: none;
}

.gavy-marketplace__track::-webkit-scrollbar {
  display: none;
}

.gavy-marketplace__viewport::before,
.gavy-marketplace__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 18px;
  width: 56px;
  pointer-events: none;
  z-index: 3;
}

.gavy-marketplace__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 248, 255, 1), rgba(247, 248, 255, 0));
}

.gavy-marketplace__viewport::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(247, 248, 255, 1), rgba(247, 248, 255, 0));
}

.gavy-marketplace__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: rgba(15, 23, 42, 0.78);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.gavy-marketplace__nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-marketplace__nav.prev { left: -10px; }
.gavy-marketplace__nav.next { right: -10px; }

.gavy-marketplace__nav:hover {
  color: var(--gavy-primary);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 36px rgba(53, 89, 255, 0.22);
}

.gavy-marketplace__nav[data-disabled] {
  opacity: 0.35;
  pointer-events: none;
}

/* Tutor card — sharp corners, big thumbnail */
.gavy-tutor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.gavy-tutor-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.16),
    0 0 0 2px rgba(53, 89, 255, 0.32),
    0 26px 60px rgba(53, 89, 255, 0.18);
}

.gavy-tutor-card.is-live {
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.08),
    0 0 0 2px rgba(239, 68, 68, 0.45);
}

.gavy-tutor-card.is-live:hover {
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.16),
    0 0 0 2px rgba(239, 68, 68, 0.6),
    0 26px 60px rgba(239, 68, 68, 0.22);
}

/* Big visible thumbnail */
.gavy-tutor-card__thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.gavy-tutor-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gavy-tutor-card:hover .gavy-tutor-card__thumb-img {
  transform: scale(1.06);
}

.gavy-tutor-card__thumb-img--gradient {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4), transparent 55%),
    linear-gradient(135deg, #4263ff 0%, #7c3aed 55%, #06b6d4 100%);
  display: grid;
  place-items: center;
}

.gavy-tutor-card__thumb-initials {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(15, 23, 42, 0.3);
}

.gavy-tutor-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.32) 0%, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.62) 100%);
  pointer-events: none;
}

.gavy-tutor-card__thumb-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

/* Sharp pill-free badges */
.gavy-tutor-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.86);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.gavy-tutor-card__pill i {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  display: inline-block;
}

.gavy-tutor-card__pill.is-available i {
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: gavyLivePulse 1.6s ease-out infinite;
}

.gavy-tutor-card__pill.is-live {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45);
}

.gavy-tutor-card__pill.is-live i {
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: gavyLivePulse 1.2s ease-out infinite;
}

.gavy-tutor-card__pill.is-rating {
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  letter-spacing: 0.04em;
  padding: 5px 8px 5px 6px;
}

.gavy-tutor-card__pill.is-rating svg {
  width: 12px;
  height: 12px;
  fill: #fbbf24;
  stroke: none;
}

/* Sharp square logo overlapping the thumbnail */
.gavy-tutor-card__logo {
  position: absolute;
  left: 14px;
  bottom: -22px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #4263ff, #7c3aed);
  border: 4px solid #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 3;
}

.gavy-tutor-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gavy-tutor-card__logo span {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* "Now teaching" snapshot strip */
.gavy-tutor-card__snapshot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 100px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.04), rgba(53, 89, 255, 0.06));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.78rem;
  min-height: 36px;
}

.gavy-tutor-card__snapshot.is-now {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.04));
  border-bottom-color: rgba(239, 68, 68, 0.16);
}

.gavy-tutor-card__snapshot-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  flex-shrink: 0;
}

.gavy-tutor-card__snapshot.is-now .gavy-tutor-card__snapshot-tag {
  color: #b91c1c;
}

.gavy-tutor-card__snapshot-tag i {
  width: 7px;
  height: 7px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: gavyLivePulse 1.4s ease-out infinite;
}

.gavy-tutor-card__snapshot-text {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Body */
.gavy-tutor-card__body {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.gavy-tutor-card__name {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.95);
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.gavy-tutor-card__headline {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gavy-tutor-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.58);
  margin-top: 2px;
}

.gavy-tutor-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gavy-tutor-card__meta-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-tutor-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.gavy-tutor-card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: rgba(15, 23, 42, 0.92);
}

.gavy-tutor-card__price .num {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gavy-tutor-card__price .per {
  font-size: 0.74rem;
  color: rgba(15, 23, 42, 0.5);
  font-weight: 600;
}

.gavy-tutor-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #3559ff, #7c3aed);
  box-shadow: 0 8px 18px rgba(53, 89, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gavy-tutor-card__cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.gavy-tutor-card:hover .gavy-tutor-card__cta {
  box-shadow: 0 12px 26px rgba(53, 89, 255, 0.4);
}

.gavy-tutor-card:hover .gavy-tutor-card__cta svg {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .gavy-marketplace {
    padding: 22px 0 14px;
  }
  .gavy-marketplace__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }
  .gavy-marketplace__nav { display: none; }
  .gavy-marketplace__viewport::before,
  .gavy-marketplace__viewport::after { width: 24px; }
  .gavy-marketplace__track {
    grid-auto-columns: 78%;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gavy-tutor-card,
  .gavy-tutor-card__cover,
  .gavy-tutor-card__cta svg,
  .gavy-marketplace__viewall svg {
    transition: none;
  }
  .gavy-marketplace__kicker-dot,
  .gavy-tutor-card__status.is-available i {
    animation: none;
  }
}

/* ===== Materials marketplace snippet (home page) ===== */
.gavy-matmarket {
  position: relative;
  padding: 30px 0 36px;
  background:
    radial-gradient(1100px 280px at 50% -20%, rgba(123, 63, 242, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(247, 248, 255, 0.6) 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.gavy-matmarket .gavy-container {
  position: relative;
  z-index: 1;
}

.gavy-matmarket__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gavy-matmarket__heading { max-width: 720px; }

.gavy-matmarket__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(123, 63, 242, 0.2);
  color: #6d28d9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.gavy-matmarket__kicker svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-matmarket__title {
  margin: 12px 0 6px;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: rgba(15, 23, 42, 0.95);
  font-weight: 800;
}

.gavy-matmarket__title .accent {
  background: linear-gradient(135deg, #2541ff, #7b3ff2 60%, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gavy-matmarket__lead {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.96rem;
  line-height: 1.55;
}

.gavy-matmarket__viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2541ff, #7b3ff2);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(53, 89, 255, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.gavy-matmarket__viewall svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.gavy-matmarket__viewall:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(53, 89, 255, 0.28);
  filter: brightness(1.04);
}

.gavy-matmarket__viewall:hover svg { transform: translateX(3px); }

.gavy-matmarket__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) { .gavy-matmarket__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .gavy-matmarket__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .gavy-matmarket__grid { grid-template-columns: 1fr; } }

.gavy-matcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gavy-matcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.10);
  border-color: rgba(37, 65, 255, 0.35);
}

.gavy-matcard__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(37, 65, 255, 0.10), rgba(123, 63, 242, 0.10) 60%, rgba(6, 182, 212, 0.10));
  overflow: hidden;
}

.gavy-matcard__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(180px 120px at 80% 18%, rgba(255, 255, 255, 0.45), transparent 70%),
    radial-gradient(220px 150px at 18% 92%, rgba(255, 255, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.gavy-matcard__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gavy-matcard__type {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.gavy-matcard__type svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-matcard__type[data-type="video"] { background: rgba(239, 68, 68, 0.92); }
.gavy-matcard__type[data-type="audio"] { background: rgba(123, 63, 242, 0.92); }
.gavy-matcard__type[data-type="link"]  { background: rgba(6, 182, 212, 0.92); }
.gavy-matcard__type[data-type="pdf"]   { background: rgba(37, 65, 255, 0.92); }

.gavy-matcard__featured {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.gavy-matcard__featured svg { width: 10px; height: 10px; fill: currentColor; }

.gavy-matcard__body {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gavy-matcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  min-height: 22px;
}

.gavy-matcard__chip {
  padding: 3px 9px;
  border-radius: 999px;
  background: #f7f8ff;
  color: #1e293b;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid #eef0f6;
}

.gavy-matcard__chip.is-subject {
  background: rgba(37, 65, 255, 0.07);
  color: #2541ff;
  border-color: rgba(37, 65, 255, 0.18);
}

.gavy-matcard__chip.is-grade {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.22);
}

.gavy-matcard__title {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gavy-matcard__desc {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gavy-matcard__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed #eef0f6;
}

.gavy-matcard__stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  color: rgba(15, 23, 42, 0.55);
}

.gavy-matcard__stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gavy-matcard__stats svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-matcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease;
}

.gavy-matcard__cta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gavy-matcard:hover .gavy-matcard__cta {
  background: linear-gradient(135deg, #2541ff, #7b3ff2);
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .gavy-matmarket {
    padding: 22px 0 24px;
  }
  .gavy-matmarket__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }
}

/* ============================================================
   Perf override: keep only the orbit rings spinning behind the
   hero portrait. Everything else holds still so the page paints
   in one frame and doesn't do continuous compositing work.
   Above-the-fold reveal content is shown immediately so it
   doesn't wait on JS / IntersectionObserver to become visible.
   ============================================================ */
.gavy-hero::before,
.gavy-section--alt::before,
.gavy-section--alt::after,
.gavy-watermark,
.gavy-blob,
.gavy-portrait,
.gavy-dot,
.gavy-floatcard,
.gavy-scrollcue-mouse::after,
.gavy-net-lines line,
.gavy-net-dots circle,
.gavy-live-dot,
.gavy-livenow__dot,
.gavy-marketplace__kicker-dot,
.gavy-tutor-card__pill.is-live i,
.gavy-tutor-card__pill.is-available i,
.gavy-tutor-card__snapshot-tag i,
.gavy-module-active-badge::before,
.gavy-module-slide.is-center .gavy-module-img--color,
.gavy-module-slide.is-center .gavy-module-img--gray,
.gavy-module-card:hover .gavy-module-img--gray,
.gavy-module-slide.is-center .gavy-module-media::after,
.gavy-module-card:hover .gavy-module-media::after,
.gavy-carousel-ring rect {
  animation: none !important;
}

.gavy-watermark { opacity: 1 !important; }
.gavy-net-lines line { stroke-dashoffset: 0 !important; opacity: 0.55 !important; }
.gavy-net-dots circle { opacity: 1 !important; }

[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ====== Extra-compressed hero on the smallest phones (≤420px) ====== */
@media (max-width: 420px) {
  .gavy-container { padding-left: 8px; padding-right: 8px; }

  /* Hero — even tighter top, smaller heading, compact pill */
  .gavy-hero { padding: 8px 0 10px; }
  .gavy-hero-grid { gap: 8px; }
  .gavy-hero h1 { font-size: 1.18rem; line-height: 1.16; margin: 3px 0 4px; }
  .gavy-hero p  { font-size: 0.78rem; line-height: 1.35; margin: 0 0 6px; }

  .gavy-badge   { font-size: 0.58rem; padding: 2px 8px; gap: 6px; letter-spacing: 0.08em; }
  .gavy-badge i { width: 26px; height: 10px; }
  .gavy-badge i::after { width: 12px; height: 12px; }

  .gavy-actions { gap: 4px; margin-top: 2px; }
  .gavy-actions .btn { padding: 6px 8px; font-size: 0.74rem; }
  .gavy-watch { padding: 4px 8px; font-size: 0.7rem; }

  .gavy-hero-trust { gap: 5px; margin-top: 4px; }
  .gavy-hero-rating-text { font-size: 0.66rem; }
  .gavy-hero-avatars span { width: 20px; height: 20px; font-size: 0.56rem; }

  /* Section spacing — squeeze headings + lead so more fits in view */
  .gavy-section, .gavy-section--alt { padding: 16px 0; }
  .gavy-section h2 { font-size: 1.08rem; margin: 0 0 4px; }
  .gavy-lead { font-size: 0.78rem; margin: 0 0 10px; }
}

/* ====================================================================
   Mobile: drop the desktop cycling-overlay pattern for feature columns.
   On phones (<=968px) the 3-col grid collapses to a single column, so
   absolutely-positioned feature groups stacked on top of each other and
   on top of the phone screen. Switch them to natural flow with all
   groups visible, slight spacing between groups, no animation.
   ==================================================================== */
@media (max-width: 968px) {
  /* Stack the 3-col features grid vertically, in this order: phone first, then cards */
  .gavy-features-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .gavy-features-media       { order: 0; }
  .gavy-feature-col--left    { order: 1; }
  .gavy-feature-col--right   { order: 2; }

  /* Containers: become normal flow, full width, no min-height */
  .gavy-feature-col {
    position: static !important;
    min-height: 0 !important;
    max-width: none !important;
    width: 100% !important;
    justify-self: stretch !important;
  }

  /* Feature groups: stop overlapping — show ALL groups in normal flow */
  .gavy-feature-group {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 12px;
  }
  .gavy-feature-group:last-child { margin-bottom: 0; }

  /* Cards: no animation, natural opacity, no transform */
  .gavy-feature--card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    padding: 12px 14px;
    align-items: flex-start;
    max-width: none;
  }
  .gavy-feature--card .gavy-feature-text strong { font-size: 0.94rem; }
  .gavy-feature--card p { font-size: 0.84rem; line-height: 1.45; }

  /* Hide the directional pointer arrows — no longer aimed at the phone in stacked layout */
  .gavy-feature-arrow { display: none !important; }

  /* Hide the external pointing callouts (they need horizontal space the phone column can't give on mobile) */
  .ss-callouts { display: none !important; }

  /* Tighter outer section padding so the long column of cards isn't visually overwhelming */
  .gavy-section--features { padding: 24px 0 18px; }
  .gavy-features-head { margin-bottom: 14px; }
  .gavy-features-actions { margin-top: 14px; gap: 8px; flex-wrap: wrap; }
  .gavy-features-actions .btn { flex: 1; min-width: 140px; padding: 9px 12px; font-size: 0.86rem; }

  /* Phone widget: cap width so it stays comfortable on phones */
  .gavy-samsung { width: min(260px, 80%); margin: 0 auto; }
}

/* Even tighter on the smallest phones */
@media (max-width: 420px) {
  .gavy-feature--card { padding: 10px 12px; gap: 10px; border-radius: 14px; }
  .gavy-feature--card .gavy-feature-text strong { font-size: 0.88rem; }
  .gavy-feature--card p { font-size: 0.78rem; line-height: 1.4; }
  .gavy-feature-icon { width: 36px; height: 36px; border-radius: 10px; }
  .gavy-feature-icon svg { width: 18px; height: 18px; }
  .gavy-samsung { width: min(220px, 78%); }
}

/* =============================================================================
   Hero v2 — clean, modern, dashboard-led
   Scoped to `.gavy-hero--v2` so it doesn't affect the legacy hero used elsewhere.
   ============================================================================= */

.gavy-hero--v2 {
  --gx-ink: #0b1530;
  --gx-muted: #5a6378;
  --gx-primary: #3559ff;
  --gx-primary-2: #7c3aed;
  --gx-surface: #ffffff;
  --gx-border: rgba(15, 23, 42, 0.08);
  --gx-radius: 18px;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 0;
  padding: 56px 0 88px;
  background-image:
    var(--gavy-hero-bg-url, none),
    radial-gradient(120% 80% at 8% 0%, rgba(53, 89, 255, 0.10), transparent 55%),
    radial-gradient(90% 70% at 96% 12%, rgba(124, 58, 237, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, #f4f6ff 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mute the legacy big mesh blur & rotated watermark for v2 */
.gavy-hero--v2::before { display: none; }
.gavy-hero--v2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  /* Contrast veil:
     - darker (30–40%) on the left where copy sits
     - fades to clear on the right for the image */
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.42) 0%,
      rgba(2, 6, 23, 0.34) 38%,
      rgba(2, 6, 23, 0.12) 72%,
      rgba(2, 6, 23, 0.00) 100%
    );
}
.gavy-hero--v2 .gavy-watermark,
.gavy-hero--v2 .gavy-net { display: none; }

/* Keep hero content above the contrast veil */
.gavy-hero--v2 > .gavy-container { position: relative; z-index: 2; }
.gavy-hero--v2 > .gx-hero__bg { z-index: 0; }

/* Platform homepage: put the contrast where the words are (left column),
   keep the rest of the hero image clear. */
.gavy-hero--platform.gavy-hero--v2::after { display: none; }
.gavy-hero--platform.gavy-hero--v2 .gx-hero__copy {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
}
.gavy-hero--platform.gavy-hero--v2 .gx-hero__copy::before {
  content: "";
  position: absolute;
  inset: -18px -28px -18px -18px;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.52) 0%,
      rgba(2, 6, 23, 0.40) 55%,
      rgba(2, 6, 23, 0.14) 80%,
      rgba(2, 6, 23, 0.00) 100%
    );
  border-radius: 26px;
}
.gavy-hero--platform.gavy-hero--v2 .gx-hero__title { color: rgba(248, 250, 252, 0.98); }
.gavy-hero--platform.gavy-hero--v2 .gx-hero__lede { color: rgba(248, 250, 252, 0.82); }
.gavy-hero--platform.gavy-hero--v2 .gx-hero__trust { color: rgba(248, 250, 252, 0.9); }

/* Override legacy `.gavy-hero h1` / `.gavy-hero p` defaults so v2 looks intentional */
.gavy-hero--v2 .gx-hero__title { margin: 0; letter-spacing: -0.025em; line-height: 1.05; }
.gavy-hero--v2 .gx-hero__lede  { margin: 0; max-width: none; }

.gx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Optional video layer behind the hero grid */
.gx-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.gx-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

/* Multi-background crossfade (uses CSS vars set inline by templates) */
.gavy-hero--v2 {
  --gavy-hero-bg-url-2: none;
  --gavy-hero-bg-url-3: none;
}
.gavy-hero--v2[data-hero-video] {
  background-image:
    radial-gradient(120% 80% at 8% 0%, rgba(53, 89, 255, 0.10), transparent 55%),
    radial-gradient(90% 70% at 96% 12%, rgba(124, 58, 237, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.55) 0%, rgba(244, 246, 255, 0.55) 100%);
}
.gavy-hero--v2:not([data-hero-video]) {
  background-image:
    var(--gavy-hero-bg-url, none),
    radial-gradient(120% 80% at 8% 0%, rgba(53, 89, 255, 0.10), transparent 55%),
    radial-gradient(90% 70% at 96% 12%, rgba(124, 58, 237, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.55) 0%, rgba(244, 246, 255, 0.55) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gavy-hero--v2:not([data-hero-video])::before,
.gavy-hero--v2:not([data-hero-video])::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: gxHeroBgCycle 18s ease-in-out infinite;
}
.gavy-hero--v2:not([data-hero-video])::before {
  background-image: var(--gavy-hero-bg-url-2, none);
  animation-delay: 6s;
}
.gavy-hero--v2:not([data-hero-video])::after {
  background-image: var(--gavy-hero-bg-url-3, none);
  animation-delay: 12s;
}
@keyframes gxHeroBgCycle {
  0%, 10% { opacity: 0; }
  18%, 44% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

.gx-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}

.gx-hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: gxGlowDrift 14s ease-in-out infinite alternate;
}
.gx-hero__glow--a { top: -120px; left: -120px; background: radial-gradient(circle, rgba(53,89,255,0.55), transparent 65%); }
.gx-hero__glow--b { bottom: -180px; right: -160px; background: radial-gradient(circle, rgba(124,58,237,0.45), transparent 65%); animation-delay: -6s; }

@keyframes gxGlowDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(40px, 30px, 0); }
}

.gx-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

/* ---------- Left: copy ---------- */

.gx-hero__copy { min-width: 0; }

.gx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(53, 89, 255, 0.08);
  border: 1px solid rgba(53, 89, 255, 0.18);
  color: var(--gx-primary);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gx-hero__eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gx-primary);
  box-shadow: 0 0 0 0 rgba(53, 89, 255, 0.6);
  animation: gxPulse 2s ease-out infinite;
}
@keyframes gxPulse {
  0%   { box-shadow: 0 0 0 0 rgba(53, 89, 255, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(53, 89, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 89, 255, 0); }
}

.gx-hero__title {
  margin-top: 22px !important;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  color: var(--gx-ink);
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.gx-hero__title-accent {
  background: linear-gradient(120deg, var(--gx-primary) 0%, var(--gx-primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.gx-hero__lede {
  margin-top: 18px !important;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--gx-muted);
  max-width: 560px !important;
}

.gx-hero__cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gx-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.gx-hero__btn--primary {
  background: linear-gradient(120deg, var(--gx-primary), var(--gx-primary-2));
  color: #ffffff;
  box-shadow: 0 18px 36px -10px rgba(53, 89, 255, 0.55);
}
.gx-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -10px rgba(53, 89, 255, 0.65);
  color: #ffffff;
}
.gx-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gx-border);
  color: var(--gx-ink);
  backdrop-filter: blur(8px);
}
.gx-hero__btn--ghost:hover {
  background: #ffffff;
  border-color: rgba(53, 89, 255, 0.3);
  color: var(--gx-primary);
}

.gx-hero__watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gx-ink);
  text-decoration: none;
}
.gx-hero__watch-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--gx-border);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  position: relative;
  flex: 0 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gx-hero__watch-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid var(--gx-primary);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.gx-hero__watch:hover .gx-hero__watch-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(53, 89, 255, 0.18);
}

.gx-hero__proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gx-hero__avatars {
  display: inline-flex;
}
.gx-hero__avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3559ff, #7c3aed);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  margin-left: -10px;
}
.gx-hero__avatars span:first-child { margin-left: 0; }
.gx-hero__avatars span:nth-child(2) { background: linear-gradient(135deg, #06b6d4, #10b981); }
.gx-hero__avatars span:nth-child(3) { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.gx-hero__avatars span:nth-child(4) { background: linear-gradient(135deg, #ec4899, #7c3aed); }

.gx-hero__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.86rem;
  color: var(--gx-ink);
}
.gx-hero__stars svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}
.gx-hero__stars strong {
  margin-left: 6px;
  font-weight: 800;
}
.gx-hero__proof-line {
  display: block;
  font-size: 0.82rem;
  color: var(--gx-muted);
  margin-top: 2px;
}

/* ---------- Right: dashboard preview ---------- */

.gx-hero__preview {
  position: relative;
  min-width: 0;
}

/* ---------- Right: OS lineup panel ---------- */

.gx-os-panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 40px 80px -24px rgba(15, 23, 42, 0.22),
    0 18px 40px -22px rgba(53, 89, 255, 0.24);
  padding: 18px;
  overflow: hidden;
}

.gx-os-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(53, 89, 255, 0.16), transparent 52%),
    radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.12), transparent 54%),
    radial-gradient(circle at 60% 35%, rgba(6, 182, 212, 0.10), transparent 50%);
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
}

.gx-os-panel__head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.gx-os-panel__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(53, 89, 255, 0.08);
  border: 1px solid rgba(53, 89, 255, 0.18);
  color: var(--gx-primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  width: fit-content;
}

.gx-os-panel__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.gx-os-panel__title strong {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gx-ink);
}

.gx-os-panel__hint {
  font-size: 0.82rem;
  color: var(--gx-muted);
  white-space: nowrap;
}

.gx-os-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gx-os-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  text-decoration: none;
  color: var(--gx-ink);
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gx-os-card:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 89, 255, 0.28);
  box-shadow: 0 18px 34px -20px rgba(15, 23, 42, 0.24);
}

.gx-os-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(53, 89, 255, 0.12), rgba(124, 58, 237, 0.10));
  color: rgba(53, 89, 255, 0.9);
  flex: 0 0 auto;
}

.gx-os-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gx-os-card__name {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.gx-os-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}

.gx-os-badge--live {
  color: #10b981;
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.22);
}

.gx-os-badge--preview {
  color: #3559ff;
  background: rgba(53, 89, 255, 0.12);
  border-color: rgba(53, 89, 255, 0.20);
}

.gx-os-badge--soon {
  color: rgba(15, 23, 42, 0.55);
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.10);
}

.gx-os-card--soon {
  opacity: 0.9;
  cursor: default;
}

.gx-os-card--soon:hover {
  transform: none;
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.2);
  border-color: rgba(226, 232, 240, 0.95);
}

.gx-os-panel__foot {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.gx-os-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 36px -26px rgba(15, 23, 42, 0.2);
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.72);
}

.gx-os-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3559ff, #7c3aed);
  box-shadow: 0 0 0 0 rgba(53, 89, 255, 0.35);
  animation: gxPulse 2s ease-out infinite;
}

/* ---------- School OS: modules grid ---------- */

.gx-mod-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gx-mod-card {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(10px);
  color: var(--gx-ink);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.22);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 150px;
}

.gx-mod-card:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 89, 255, 0.26);
  box-shadow: 0 28px 56px -34px rgba(15, 23, 42, 0.26);
}

.gx-mod-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(53, 89, 255, 0.10);
  border: 1px solid rgba(53, 89, 255, 0.18);
  color: var(--gx-primary);
}

.gx-mod-card__title {
  margin: 12px 0 6px !important;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.gx-mod-card__text {
  margin: 0 !important;
  color: var(--gx-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.gx-mod-card__cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 900;
  color: var(--gx-primary);
  letter-spacing: -0.01em;
}

.gx-mod-card--static {
  cursor: default;
}
.gx-mod-card--static:hover {
  transform: none;
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.22);
}

.gx-hero__window {
  position: relative;
  background: var(--gx-surface);
  border-radius: var(--gx-radius);
  border: 1px solid var(--gx-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 40px 80px -20px rgba(15, 23, 42, 0.25),
    0 18px 38px -18px rgba(53, 89, 255, 0.25);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
  animation: gxWindowFloat 8s ease-in-out infinite;
}
@keyframes gxWindowFloat {
  0%, 100% { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

.gx-hero__window-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f7f8fc, #f0f2f9);
  border-bottom: 1px solid var(--gx-border);
}
.gx-hero__window-dots {
  display: inline-flex;
  gap: 6px;
}
.gx-hero__window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5e0;
}
.gx-hero__window-dots i:nth-child(1) { background: #ff5f57; }
.gx-hero__window-dots i:nth-child(2) { background: #febc2e; }
.gx-hero__window-dots i:nth-child(3) { background: #28c840; }
.gx-hero__window-url {
  flex: 1;
  text-align: center;
  font-size: 0.76rem;
  color: var(--gx-muted);
  letter-spacing: 0.02em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.gx-hero__window-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gx-hero__window-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: gxPulseGreen 1.8s ease-out infinite;
}
@keyframes gxPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.gx-hero__window-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.gx-hero__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gx-hero__kpi {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8faff, #f1f4ff);
  border: 1px solid rgba(53, 89, 255, 0.10);
  display: grid;
  gap: 4px;
  min-width: 0;
}
.gx-hero__kpi-label {
  font-size: 0.7rem;
  color: var(--gx-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gx-hero__kpi-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gx-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.gx-hero__kpi-value small {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gx-muted);
  margin-left: 2px;
}
.gx-hero__kpi-trend {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gx-muted);
}
.gx-hero__kpi-trend--up { color: #10b981; }

.gx-hero__chart {
  padding: 14px 16px 4px;
  border-radius: 12px;
  background: #fafbff;
  border: 1px solid var(--gx-border);
}
.gx-hero__chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.gx-hero__chart-head strong {
  font-size: 0.82rem;
  color: var(--gx-ink);
  font-weight: 700;
}
.gx-hero__chart-head span {
  font-size: 0.7rem;
  color: var(--gx-muted);
}
.gx-hero__chart-svg {
  display: block;
  width: 100%;
  height: 70px;
}

.gx-hero__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.gx-hero__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fafbff;
  border: 1px solid var(--gx-border);
}
.gx-hero__row-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3559ff, #7c3aed);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
}
.gx-hero__row-main {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.gx-hero__row-main strong {
  font-size: 0.82rem;
  color: var(--gx-ink);
  font-weight: 700;
}
.gx-hero__row-main span {
  font-size: 0.72rem;
  color: var(--gx-muted);
}
.gx-hero__row-meta {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.gx-hero__row-meta--ok   { background: rgba(16, 185, 129, 0.12); color: #047857; }
.gx-hero__row-meta--warn { background: rgba(245, 158, 11, 0.14); color: #b45309; }

/* Floating chips overlapping the window */
.gx-hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--gx-border);
  box-shadow: 0 18px 38px -12px rgba(15, 23, 42, 0.22);
  z-index: 3;
  font-size: 0.82rem;
  line-height: 1.2;
  animation: gxChipFloat 6s ease-in-out infinite;
}
.gx-hero__chip strong { display: block; font-size: 0.84rem; color: var(--gx-ink); font-weight: 700; }
.gx-hero__chip span  { font-size: 0.74rem; color: var(--gx-muted); }
.gx-hero__chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex: 0 0 auto;
}
.gx-hero__chip-icon svg { width: 18px; height: 18px; }
.gx-hero__chip-icon--green { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 8px 18px rgba(16, 185, 129, 0.30); }
.gx-hero__chip-icon--blue  { background: linear-gradient(135deg, #3559ff, #7c3aed); box-shadow: 0 8px 18px rgba(53, 89, 255, 0.30); }

.gx-hero__chip--a { top: 8%; left: -28px; animation-delay: -1s; }
.gx-hero__chip--b { bottom: 12%; right: -32px; animation-delay: -3s; }

@keyframes gxChipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .gx-hero__layout { gap: 36px; }
  .gx-hero__chip--a { left: -8px; }
  .gx-hero__chip--b { right: -8px; }
}

@media (max-width: 900px) {
  .gavy-hero--v2 { padding: 36px 0 56px; }
  .gx-hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gx-hero__preview { order: 2; }
  .gx-hero__copy    { order: 1; text-align: left; }
  .gx-hero__lede    { max-width: 100% !important; }
  .gx-hero__window  { transform: none; animation: none; }
  .gx-hero__chip--a { top: -16px; left: 12px; }
  .gx-hero__chip--b { bottom: -16px; right: 12px; }
  .gx-mod-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .gavy-hero--v2 { padding: 24px 0 40px !important; }
  .gx-hero__title { font-size: clamp(1.85rem, 8vw, 2.4rem) !important; }
  .gx-hero__lede  { font-size: 0.95rem !important; }
  .gx-hero__cta { gap: 10px; }
  .gx-hero__btn { padding: 11px 18px; font-size: 0.9rem; }
  .gx-hero__watch { font-size: 0.85rem; }
  .gx-hero__kpis { grid-template-columns: 1fr 1fr; }
  .gx-hero__kpi:nth-child(3) { grid-column: 1 / -1; }
  .gx-hero__window-body { padding: 14px; gap: 12px; }
  .gx-hero__chip { font-size: 0.76rem; padding: 8px 12px 8px 8px; }
  .gx-hero__chip strong { font-size: 0.78rem; }
  .gx-hero__chip-icon { width: 30px; height: 30px; border-radius: 8px; }
  .gx-hero__chip--a { top: -14px; left: 4px; }
  .gx-hero__chip--b { bottom: -14px; right: 4px; }
  .gx-os-grid { grid-template-columns: 1fr; }
  .gx-os-panel__title { flex-wrap: wrap; }
  .gx-os-panel__hint { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .gx-hero__window,
  .gx-hero__chip,
  .gx-hero__glow,
  .gx-hero__eyebrow-pulse,
  .gx-hero__window-live-dot {
    animation: none !important;
  }
}

/* ---------- Platform variant: OS tile grid + trust list ---------- */

.gavy-hero--platform.gavy-hero--v2 .gx-hero__lede { max-width: 600px !important; }

.gx-hero__trust {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.86rem;
  color: var(--gx-muted);
  font-weight: 600;
}
.gx-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gx-hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tint, var(--gx-primary));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tint, var(--gx-primary)) 18%, transparent);
}

.gx-hero__os {
  position: relative;
  min-width: 0;
}

.gx-hero__os-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gx-border);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 40px 80px -20px rgba(15, 23, 42, 0.22),
    0 18px 38px -18px rgba(53, 89, 255, 0.20);
}

.gx-hero__os-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--gx-border);
  text-decoration: none;
  color: var(--gx-ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.gx-hero__os-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tint) 18%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gx-hero__os-tile--live { cursor: pointer; }
.gx-hero__os-tile--live:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tint) 40%, var(--gx-border));
  box-shadow: 0 18px 32px -16px color-mix(in srgb, var(--tint) 55%, transparent);
  color: var(--gx-ink);
}
.gx-hero__os-tile--live:hover::before { opacity: 1; }

.gx-hero__os-tile--soon {
  cursor: default;
  opacity: 0.78;
}

.gx-hero__os-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--tint) 12%, transparent);
  color: var(--tint);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.gx-hero__os-name {
  position: relative;
  z-index: 1;
}

.gx-hero__os-badge {
  position: relative;
  z-index: 1;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.08);
  color: var(--gx-muted);
}
.gx-hero__os-badge--live {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}
.gx-hero__os-badge--preview {
  background: rgba(14, 165, 233, 0.15);
  color: #0369a1;
}

@media (max-width: 900px) {
  .gx-hero__os-grid { grid-template-columns: repeat(2, 1fr); padding: 14px; gap: 10px; }
  .gx-hero__trust { gap: 8px 16px; font-size: 0.8rem; }
}
@media (max-width: 560px) {
  .gx-hero__os-grid { padding: 12px; gap: 8px; }
  .gx-hero__os-tile { padding: 10px; font-size: 0.86rem; gap: 8px; }
  .gx-hero__os-icon { width: 30px; height: 30px; font-size: 1rem; border-radius: 8px; }
  .gx-hero__os-badge { font-size: 0.6rem; padding: 2px 7px; }
}

/* =============================================================================
   v2 page sections — shared section header + Stats + OS picker + Why + Contact
   Used by platform_home.html. Namespaced under `gx-*` to avoid collisions.
   ============================================================================= */

.gx-section {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: #ffffff;
}
.gx-section--alt {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.gx-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.gx-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(53, 89, 255, 0.08);
  border: 1px solid rgba(53, 89, 255, 0.18);
  color: #3559ff;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gx-section__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3559ff;
  box-shadow: 0 0 0 0 rgba(53, 89, 255, 0.6);
  animation: gxPulse 2s ease-out infinite;
}
.gx-section__title {
  margin: 20px 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: #0b1530;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.gx-section__title--left { text-align: left; margin-left: 0; }
.gx-section__title-accent {
  background: linear-gradient(120deg, #3559ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gx-section__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5a6378;
  margin: 0;
}
.gx-section__lede--left { text-align: left; }

/* ---------- Stats ---------- */

.gx-stats {
  padding: clamp(36px, 5vw, 56px) 0;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.gx-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gx-stats__card {
  position: relative;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gx-stats__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -18px rgba(15, 23, 42, 0.2);
}
.gx-stats__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  margin-bottom: 4px;
}
.gx-stats__icon svg { width: 20px; height: 20px; }
.gx-stats__icon--green  { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 8px 18px rgba(16,185,129,0.28); }
.gx-stats__icon--blue   { background: linear-gradient(135deg, #3559ff, #7c3aed); box-shadow: 0 8px 18px rgba(53,89,255,0.28); }
.gx-stats__icon--orange { background: linear-gradient(135deg, #f97316, #fb923c); box-shadow: 0 8px 18px rgba(249,115,22,0.28); }
.gx-stats__icon--violet { background: linear-gradient(135deg, #a855f7, #ec4899); box-shadow: 0 8px 18px rgba(168,85,247,0.28); }
.gx-stats__num {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 900;
  color: #0b1530;
  letter-spacing: -0.03em;
  line-height: 1;
}
.gx-stats__num small {
  font-size: 0.55em;
  margin-left: 2px;
  color: #5a6378;
  font-weight: 800;
}
.gx-stats__label {
  font-size: 0.86rem;
  color: #5a6378;
  font-weight: 600;
}

/* ---------- OS picker ---------- */

.gx-os {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(60% 50% at 12% 18%, rgba(53, 89, 255, 0.10), transparent 65%),
    radial-gradient(50% 50% at 92% 88%, rgba(124, 58, 237, 0.10), transparent 65%),
    linear-gradient(180deg, #fbfcff 0%, #f4f6ff 60%, #fbfcff 100%);
}
.gx-os::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
}
.gx-os::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  animation: gxGlowDrift 16s ease-in-out infinite alternate;
}
.gx-os__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gx-os__card {
  --tint: #3559ff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  text-decoration: none;
  color: #0b1530;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.gx-os__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, color-mix(in srgb, var(--tint) 12%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.gx-os__card--live { cursor: pointer; }
.gx-os__card--live:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--tint) 40%, rgba(15, 23, 42, 0.08));
  box-shadow: 0 22px 42px -16px color-mix(in srgb, var(--tint) 55%, transparent);
  color: #0b1530;
}
.gx-os__card--live:hover::before { opacity: 1; }
.gx-os__card--soon { opacity: 0.92; }

.gx-os__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.gx-os__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--tint) 14%, transparent);
  color: var(--tint);
}
.gx-os__card-icon svg { width: 22px; height: 22px; }
.gx-os__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.06);
  color: #5a6378;
}
.gx-os__card-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.gx-os__card-badge--live    { background: rgba(16, 185, 129, 0.14); color: #047857; }
.gx-os__card-badge--live i  { animation: gxPulseGreen 1.6s ease-out infinite; }
.gx-os__card-badge--preview { background: rgba(14, 165, 233, 0.14); color: #0369a1; }

.gx-os__card-title {
  margin: 4px 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b1530;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}
.gx-os__card-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5a6378;
  flex: 1;
  position: relative;
  z-index: 1;
}
.gx-os__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tint);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-align: left;
  transition: gap 0.2s ease;
}
.gx-os__card-cta svg { transition: transform 0.2s ease; }
.gx-os__card:hover .gx-os__card-cta { gap: 10px; }
.gx-os__card:hover .gx-os__card-cta svg { transform: translateX(2px); }

.gx-os__foot {
  margin-top: 36px;
  text-align: center;
  font-size: 0.95rem;
  color: #5a6378;
}
.gx-os__foot a {
  color: #3559ff;
  font-weight: 700;
  text-decoration: none;
}
.gx-os__foot a:hover { text-decoration: underline; }

/* ---------- Why one platform ---------- */

.gx-why {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}
.gx-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gx-why__card {
  --tint: #3559ff;
  padding: 26px 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gx-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -18px color-mix(in srgb, var(--tint) 35%, transparent);
}
.gx-why__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--tint) 14%, transparent);
  color: var(--tint);
}
.gx-why__icon svg { width: 24px; height: 24px; }
.gx-why__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b1530;
  letter-spacing: -0.015em;
}
.gx-why__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a6378;
}

/* ---------- Contact ---------- */

.gx-section--contact {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}
.gx-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.gx-contact__intro .gx-section__title { text-align: left; margin-top: 16px; }
.gx-contact__intro .gx-section__lede { text-align: left; margin-top: 14px; }
.gx-contact__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.gx-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
}
.gx-contact__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex: 0 0 42px;
}
.gx-contact__icon svg { width: 20px; height: 20px; }
.gx-contact__icon--green { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 8px 18px rgba(16,185,129,0.30); }
.gx-contact__icon--blue  { background: linear-gradient(135deg, #3559ff, #7c3aed); box-shadow: 0 8px 18px rgba(53,89,255,0.30); }
.gx-contact__item-text { display: grid; gap: 2px; }
.gx-contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a6378;
}
.gx-contact__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b1530;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.gx-contact__value:hover { color: #3559ff; }
.gx-contact__hint {
  font-size: 0.8rem;
  color: #5a6378;
}

.gx-contact__card {
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.2);
}
.gx-contact__card-head { margin-bottom: 20px; }
.gx-contact__card-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1530;
  letter-spacing: -0.015em;
}
.gx-contact__card-sub {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: #5a6378;
  line-height: 1.55;
}

.gx-contact__alerts {
  margin-bottom: 16px;
  display: grid;
  gap: 8px;
}
.gx-contact__alert {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  background: rgba(53, 89, 255, 0.08);
  border: 1px solid rgba(53, 89, 255, 0.20);
  color: #1e3a8a;
}
.gx-contact__alert--success { background: rgba(16, 185, 129, 0.10); border-color: rgba(16, 185, 129, 0.25); color: #065f46; }
.gx-contact__alert--error,
.gx-contact__alert--danger  { background: rgba(239, 68, 68, 0.10); border-color: rgba(239, 68, 68, 0.25); color: #991b1b; }

.gx-contact__form {
  display: grid;
  gap: 14px;
}
.gx-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gx-contact__field {
  display: grid;
  gap: 6px;
}
.gx-contact__field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b1530;
  letter-spacing: 0.01em;
}
.gx-contact__field-label em {
  color: #ef4444;
  font-style: normal;
  margin-left: 2px;
}
.gx-contact__input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  font: inherit;
  font-size: 0.94rem;
  color: #0b1530;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.gx-contact__input:focus {
  outline: none;
  border-color: #3559ff;
  box-shadow: 0 0 0 3px rgba(53, 89, 255, 0.15);
}
.gx-contact__input::placeholder { color: #94a3b8; }
.gx-contact__input--textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.gx-contact__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.gx-contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(120deg, #3559ff, #7c3aed);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 36px -12px rgba(53, 89, 255, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gx-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -10px rgba(53, 89, 255, 0.65);
}
.gx-contact__submit-hint {
  font-size: 0.8rem;
  color: #5a6378;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .gx-stats__grid,
  .gx-os__grid,
  .gx-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 640px) {
  .gx-stats__grid,
  .gx-os__grid,
  .gx-why__grid {
    grid-template-columns: 1fr;
  }
  .gx-section__title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .gx-section__lede  { font-size: 0.95rem; }
  .gx-contact__row   { grid-template-columns: 1fr; }
  .gx-contact__card  { padding: 20px; }
  .gx-os__card { padding: 18px; }
  .gx-stats__card { padding: 18px; }
  .gx-why__card { padding: 22px 18px; }
}
