/* Website Development page styles */
  :root {
    --bg: #05070D;
    --bg-2: #0A0E1A;
    --surface: #0F1424;
    --surface-2: #141A2E;
    --line: rgba(255,255,255,0.07);
    --line-strong: rgba(255,255,255,0.14);
    --text: #ECEFF7;
    --muted: #8B92A8;
    --dim: #5A6079;
    --accent: #5CE1FF;        /* electric cyan */
    --accent-2: #4A7BFF;      /* premium blue */
    --accent-soft: rgba(92,225,255,0.08);
    --accent-glow: rgba(92,225,255,0.35);
    --warn: #FF8A5C;
    --good: #57F0B0;
    --radius: 18px;
    --radius-sm: 10px;
    --pad: clamp(20px, 4vw, 64px);
    --maxw: 1320px;
  }
  /* These custom-property names also exist in the global index.css :root
     (--accent & --muted as HSL triplets, --radius as 0.75rem). Re-declaring
     them on .wd-root makes the Website Development palette win for this page
     regardless of stylesheet load order — otherwise var(--accent) resolves to
     an invalid color and gradients/icons disappear. */
  .wd-root { --accent: #5CE1FF; --muted: #8B92A8; --radius: 18px; }
  html:not(.dark) .wd-root { --accent: #0284C7; --muted: #64748B; }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-feature-settings: "ss01","cv11";
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ::selection { background: var(--accent); color: #001018; }

  .mono { font-family: Poppins, sans-serif; }
  .serif { font-family: Poppins, sans-serif; font-weight: 400; font-style: normal; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

  /* ============ NAV ============ */
  .nav {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    background: rgba(5,7,13,0.6);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 14px var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: inline-flex; align-items: center; gap: 0;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 24px -10px rgba(74,123,255,0.45), inset 0 0 0 1px rgba(255,255,255,0.6);
    transition: transform .25s, box-shadow .25s;
  }
  .logo:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(74,123,255,0.65); }
  .logo img { height: 30px; width: auto; display: block; }
  .logo-sub { display: none; }
  .footer-logo { background: #ffffff; padding: 12px 18px; border-radius: 12px; display: inline-flex; }
  .footer-logo img { height: 38px; width: auto; display: block; }

  .nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
  .nav-links a { transition: color .2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    padding: 10px 18px; border-radius: 999px;
    background: var(--text); color: #05070D;
    font-weight: 600; font-size: 13px;
    transition: transform .25s, box-shadow .25s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }

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

  /* ============ HERO ============ */
  .hero {
    position: relative; padding: 88px var(--pad) 26px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(800px 500px at 80% 0%, rgba(74,123,255,0.18), transparent 60%),
      radial-gradient(700px 400px at 10% 30%, rgba(92,225,255,0.12), transparent 60%);
    pointer-events: none;
  }
  .grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 80%);
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: var(--maxw); margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
    align-items: center;
  }
  @media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 50px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 8px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 12px; color: var(--muted);
    background: rgba(255,255,255,0.02);
  }
  .eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 0 4px rgba(87,240,176,0.15);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

  h1.hero-title {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin: 16px 0 16px;
  }
  h1.hero-title .accent {
    background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 70%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .hero-tagline {
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 70%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    margin: 0 0 14px;
    line-height: 1.4;
  }
  .hero-sub {
    color: var(--muted); font-size: clamp(14px, 1.2vw, 16px);
    max-width: 560px; margin-bottom: 24px;
  }
  .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px;
    font-weight: 600; font-size: 14px;
    transition: transform .25s, box-shadow .25s, background .25s;
  }
  .btn-primary {
    background: var(--text); color: #05070D;
    box-shadow: 0 10px 40px -10px rgba(255,255,255,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--accent-glow); }
  .btn-ghost {
    border: 1px solid var(--line-strong); color: var(--text);
    background: rgba(255,255,255,0.02);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--accent); }
  .btn .arrow { transition: transform .25s; }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Hero visual: 3D device stage (Laptop + Tablet + Phone) */
  .hero-visual {
    position: relative;
    perspective: 1800px;
    perspective-origin: 50% 45%;
    min-height: 520px;
    display: flex; align-items: center; justify-content: center;
  }
  .devices-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/11.5;
    transform-style: preserve-3d;
    animation: stageFloat 10s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes stageFloat {
    0%,100% { transform: rotateX(8deg) rotateY(-14deg) translateY(0); }
    50%     { transform: rotateX(6deg) rotateY(-10deg) translateY(-12px); }
  }
  .hero-laptop {
    position: absolute;
    inset: 2% 14% 18% 14%;
    transform-style: preserve-3d;
    z-index: 1;
    transform: translateZ(-60px);
  }
  @keyframes heroLaptopFloat {
    0%,100% { transform: translateZ(-60px) rotateX(10deg) rotateY(-16deg) translateY(0); }
    50%     { transform: translateZ(-60px) rotateX(8deg)  rotateY(-12deg) translateY(-14px); }
  }
  .hl-screen {
    position: absolute; inset: 0 0 8% 0;
    background: #0B0E18;
    border: 8px solid #1a1f2e;
    border-radius: 14px 14px 4px 4px;
    box-shadow:
      0 60px 100px -30px rgba(0,0,0,0.9),
      0 0 90px -20px rgba(74,123,255,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
  }
  .hl-screen::before {
    content: ""; position: absolute; top: 1px; left: 50%; transform: translateX(-50%);
    width: 64px; height: 5px; background: #0a0d15;
    border-radius: 0 0 8px 8px; z-index: 5;
  }
  .hl-screen::after {
    content: ""; position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: #2a3047; border-radius: 50%; z-index: 6;
  }
  .hl-base {
    position: absolute; bottom: 0; left: -6%; right: -6%; height: 13px;
    background: linear-gradient(180deg, #2b3142, #1a1f2e 40%, #0a0d15);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .hl-base::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 130px; height: 5px;
    background: linear-gradient(180deg, #0a0d15, #1a1f2e);
    border-radius: 0 0 10px 10px;
  }
  .hl-glow {
    position: absolute; left: 4%; right: 4%; bottom: -40px; height: 60px;
    background: radial-gradient(ellipse, rgba(74,123,255,0.5), transparent 70%);
    filter: blur(18px);
    z-index: -1;
  }

  /* Website rendered inside the laptop screen */
  .hl-ui {
    position: absolute; inset: 0;
    background:
      radial-gradient(700px 400px at 100% 0%, rgba(255,138,92,0.12), transparent 55%),
      radial-gradient(600px 400px at 0% 100%, rgba(74,123,255,0.20), transparent 60%),
      linear-gradient(180deg, #0A0E1A 0%, #06080F 100%);
    display: flex; flex-direction: column;
    color: var(--text);
  }
  .hl-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hl-logo {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 700; font-size: 10px; letter-spacing: -0.01em;
  }
  .hl-logo i {
    width: 12px; height: 12px;
    background: linear-gradient(135deg, #5CE1FF, #4A7BFF);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(92,225,255,0.5);
    transform: rotate(45deg);
  }
  .hl-navlinks { display: flex; gap: 14px; font-size: 8.5px; color: var(--muted); }
  .hl-navlinks span:hover { color: var(--text); }
  .hl-navcta {
    padding: 5px 11px; border-radius: 999px;
    background: var(--text); color: #05070D;
    font-size: 8.5px; font-weight: 700;
  }

  .hl-body {
    flex: 1;
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 18px; padding: 22px 22px 18px;
    align-items: center;
  }
  .hl-left { display: flex; flex-direction: column; gap: 7px; }
  .hl-badge {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px 3px 6px; border-radius: 999px;
    background: rgba(87,240,176,0.08); border: 1px solid rgba(87,240,176,0.28);
    color: var(--good); font-family: Poppins, sans-serif;
    font-size: 8px; letter-spacing: 0.05em;
  }
  .hl-badge::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 6px rgba(87,240,176,0.8);
  }
  .hl-headline {
    margin: 2px 0 0;
    font-size: clamp(14px, 2.3vw, 22px);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
  }
  .hl-headline em {
    font-family: Poppins, sans-serif; font-style: normal; font-weight: 400;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .hl-sub { margin: 2px 0 0; font-size: 8.5px; color: var(--muted); line-height: 1.5; max-width: 92%; }
  .hl-btns { display: flex; gap: 7px; margin-top: 5px; align-items: center; }
  .hl-btns .b1 {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 12px; border-radius: 999px;
    background: var(--text); color: #05070D;
    font-size: 8.5px; font-weight: 700;
    box-shadow: 0 4px 14px -2px rgba(255,255,255,0.25);
  }
  .hl-btns .b2 {
    padding: 5px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 8.5px; color: var(--muted);
  }
  .hl-stats {
    margin-top: 10px;
    display: grid; grid-template-columns: repeat(3,auto);
    gap: 14px; align-items: end;
  }
  .hl-stat { display: flex; flex-direction: column; gap: 1px; }
  .hl-stat b {
    font-size: 14px; font-weight: 700; letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ECEFF7, #8B92A8);
    -webkit-background-clip: text; color: transparent;
  }
  .hl-stat span { font-size: 7.5px; color: var(--muted); }

  /* Right side: gradient orb with floating product card */
  .hl-right {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
  }
  .hl-orb {
    position: absolute; inset: 10% 8% 10% 10%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 32% 28%, #8FC2FF 0%, #4A7BFF 40%, #1A3FB8 75%, #0d1f5e 100%);
    box-shadow:
      0 20px 60px -10px rgba(74,123,255,0.7),
      inset -10px -16px 30px rgba(0,0,0,0.4),
      inset 6px 8px 20px rgba(255,255,255,0.18);
    animation: orbFloat 6s ease-in-out infinite;
  }
  .hl-orb::after {
    content: ""; position: absolute;
    top: 10%; left: 18%;
    width: 38%; height: 26%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent 65%);
    filter: blur(6px);
    border-radius: 50%;
  }
  @keyframes orbFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
  }
  .hl-ring {
    position: absolute; inset: 0;
    border: 1px dashed rgba(92,225,255,0.35);
    border-radius: 50%;
    animation: ringSpin 22s linear infinite;
  }
  .hl-ring::before, .hl-ring::after {
    content: ""; position: absolute;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
  }
  .hl-ring::before { top: -3px; left: 50%; transform: translateX(-50%); }
  .hl-ring::after { bottom: -3px; left: 50%; transform: translateX(-50%); background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
  @keyframes ringSpin { to { transform: rotate(360deg); } }

  .hl-card {
    position: absolute;
    background: rgba(15,20,36,0.94);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 7px 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    display: flex; align-items: center; gap: 7px;
    font-size: 8px;
    white-space: nowrap;
    animation: hlCardFloat 5s ease-in-out infinite;
  }
  .hl-card .ic {
    width: 16px; height: 16px; border-radius: 4px;
    background: linear-gradient(135deg, #5CE1FF, #4A7BFF);
    display: grid; place-items: center;
    color: #001018; font-weight: 800; font-size: 9px;
    flex-shrink: 0;
  }
  .hl-card .t { display: flex; flex-direction: column; gap: 0; line-height: 1.15; }
  .hl-card .t b { font-size: 8.5px; font-weight: 700; }
  .hl-card .t span { font-size: 7px; color: var(--muted); }
  .hl-card.c1 { top: 6%; right: -10%; animation-delay: 0s; }
  .hl-card.c2 { bottom: 4%; left: -14%; animation-delay: 1.5s; }
  @keyframes hlCardFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
  }

  /* Floating chips around hero visual */
  .chip-float {
    position: absolute; z-index: 2;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(15,20,36,0.9);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(8px);
    font-size: 12px; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: chipFloat 6s ease-in-out infinite;
  }
  .chip-float .ico {
    width: 16px; height: 16px; border-radius: 4px;
    background: var(--accent); display: grid; place-items: center;
    color: #001018; font-weight: 800; font-size: 10px;
  }
  .chip-float.c1 { top: -10px; left: -20px; animation-delay: 0s; z-index: 5;}
  .chip-float.c2 { top: 32%; right: -30px; animation-delay: 1.5s; z-index: 5;}
  .chip-float.c3 { bottom: 10%; left: -30px; animation-delay: 3s; z-index: 5;}
  @keyframes chipFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
  }

  /* ============ TABLET (behind, left) ============ */
  .tablet3d {
    position: absolute;
    width: 32%;
    aspect-ratio: 3/4;
    left: 50%;
    top: 22%;
    transform-style: preserve-3d;
    z-index: 4;
    animation: tabletFloat 7s ease-in-out infinite;
  }
  @keyframes tabletFloat {
    0%,100% { transform: translate(-50%, 0) translateZ(160px) rotateY(-6deg) rotateX(4deg) rotateZ(-2deg); }
    50%     { transform: translate(-50%, -10px) translateZ(160px) rotateY(-6deg) rotateX(4deg) rotateZ(-2deg); }
  }
  .tb-frame {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2a2f44, #12151f);
    border-radius: 22px;
    padding: 14px 10px;
    box-shadow:
      0 50px 80px -30px rgba(0,0,0,0.8),
      0 0 60px -20px rgba(92,225,255,0.25),
      inset 0 0 0 1px rgba(255,255,255,0.06);
  }
  .tb-cam {
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: #050810; box-shadow: inset 0 0 2px rgba(92,225,255,0.6);
  }
  .tb-screen {
    position: absolute; inset: 14px 10px;
    background: #06080F;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .tb-ui {
    position: absolute; inset: 0;
    background:
      radial-gradient(500px 320px at 80% 0%, rgba(74,123,255,0.22), transparent 60%),
      radial-gradient(400px 300px at 0% 100%, rgba(92,225,255,0.14), transparent 60%),
      linear-gradient(180deg, #0A0E1A 0%, #05070D 100%);
    color: var(--text);
    display: flex; flex-direction: column;
  }
  .tb-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .tb-logo {
    display: inline-flex; align-items: center; gap: 5px;
    font-weight: 800; font-size: 9px; letter-spacing: -0.01em;
  }
  .tb-logo i {
    width: 10px; height: 10px;
    background: linear-gradient(135deg, #5CE1FF, #4A7BFF);
    border-radius: 2px; transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(92,225,255,0.5);
  }
  .tb-menu {
    width: 14px; height: 2px; background: var(--muted); border-radius: 2px;
    box-shadow: 0 4px 0 var(--muted), 0 8px 0 var(--muted);
  }
  .tb-hero { padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }
  .tb-pill {
    align-self: flex-start;
    padding: 3px 8px; border-radius: 999px;
    background: rgba(92,225,255,0.08);
    border: 1px solid rgba(92,225,255,0.3);
    color: var(--accent);
    font-family: Poppins, sans-serif;
    font-size: 7px; letter-spacing: 0.05em;
  }
  .tb-hero h6 {
    margin: 0; font-size: 16px; line-height: 1.05;
    font-weight: 700; letter-spacing: -0.02em;
  }
  .tb-hero h6 em {
    font-family: Poppins, sans-serif; font-style: normal; font-weight: 400;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .tb-grid {
    margin-top: 10px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  }
  .tb-grid > div {
    aspect-ratio: 1/1; border-radius: 6px;
    background: linear-gradient(135deg, rgba(74,123,255,0.18), rgba(92,225,255,0.08));
    border: 1px solid rgba(255,255,255,0.06);
  }
  .tb-grid > div:nth-child(2) { background: linear-gradient(135deg, rgba(255,138,92,0.16), rgba(74,123,255,0.06)); }
  .tb-grid > div:nth-child(3) { background: linear-gradient(135deg, rgba(87,240,176,0.16), rgba(74,123,255,0.06)); }

  /* ============ PHONE (front, right) ============ */
  .phone3d {
    position: absolute;
    width: 16%;
    aspect-ratio: 9/19.5;
    right: 2%;
    bottom: 2%;
    transform-style: preserve-3d;
    z-index: 3;
    animation: phoneFloat 8s ease-in-out infinite;
  }
  @keyframes phoneFloat {
    0%,100% { transform: translateZ(80px) rotateY(-22deg) rotateX(4deg) rotateZ(6deg) translateY(0); }
    50%     { transform: translateZ(80px) rotateY(-22deg) rotateX(4deg) rotateZ(6deg) translateY(-8px); }
  }
  .ph-frame {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2a2f44, #0c0f18);
    border-radius: 22px;
    padding: 6px;
    box-shadow:
      0 40px 70px -20px rgba(0,0,0,0.85),
      0 0 50px -10px rgba(74,123,255,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .ph-notch {
    position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
    width: 38%; height: 10px; background: #05070D;
    border-radius: 0 0 8px 8px; z-index: 3;
  }
  .ph-home {
    position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 28%; height: 2.5px; border-radius: 2px;
    background: rgba(255,255,255,0.35);
  }
  .ph-screen {
    position: absolute; inset: 6px;
    background: #06080F;
    border-radius: 17px;
    overflow: hidden;
  }
  .ph-ui {
    position: absolute; inset: 0;
    background:
      radial-gradient(220px 200px at 100% 0%, rgba(255,138,92,0.18), transparent 60%),
      radial-gradient(220px 200px at 0% 100%, rgba(74,123,255,0.32), transparent 60%),
      linear-gradient(180deg, #0A0E1A, #05070D);
    color: var(--text);
    display: flex; flex-direction: column;
    padding: 18px 8px 10px;
    gap: 8px;
  }
  .ph-status {
    display: flex; justify-content: space-between; align-items: center;
    font-family: Poppins, sans-serif;
    font-size: 7px; color: var(--muted);
    padding: 0 2px;
  }
  .ph-dots { display: inline-flex; gap: 2px; }
  .ph-dots i { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
  .ph-hero { padding: 2px 4px; display: flex; flex-direction: column; gap: 4px; }
  .ph-tag {
    align-self: flex-start;
    padding: 2px 6px; border-radius: 999px;
    background: rgba(92,225,255,0.1);
    border: 1px solid rgba(92,225,255,0.3);
    color: var(--accent);
    font-family: Poppins, sans-serif;
    font-size: 6px;
  }
  .ph-hero h6 {
    margin: 0; font-size: 11px; line-height: 1.1;
    font-weight: 700; letter-spacing: -0.02em;
  }
  .ph-hero h6 em {
    font-family: Poppins, sans-serif; font-style: normal; font-weight: 400;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .ph-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 0 2px; }
  .ph-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px; padding: 4px;
    display: flex; flex-direction: column; gap: 3px;
  }
  .ph-thumb { aspect-ratio: 4/3; border-radius: 4px; }
  .ph-thumb.g1 { background: linear-gradient(135deg, #4A7BFF, #5CE1FF); }
  .ph-thumb.g2 { background: linear-gradient(135deg, #FF8A5C, #4A7BFF); }
  .ph-l1, .ph-l2 {
    display: block; height: 2px; border-radius: 1px;
    background: rgba(255,255,255,0.18);
  }
  .ph-l2 { width: 60%; background: rgba(255,255,255,0.1); }
  .ph-cta {
    margin-top: auto;
    text-align: center;
    background: var(--text); color: #05070D;
    font-size: 7.5px; font-weight: 800;
    padding: 5px; border-radius: 999px;
    box-shadow: 0 4px 14px -2px rgba(255,255,255,0.25);
  }

  @media (max-width: 980px) {
    .hero-visual { min-height: 420px; }
    .tablet3d { width: 36%; top: 18%; }
    .phone3d  { width: 19%; right: 2%; }
  }

  /* ============ SECTION SCAFFOLDING ============ */
  section { position: relative; }
  .section-pad {
    padding: clamp(30px, 3.5vw, 48px) var(--pad);
  }
  .section-pad > .wrap {
    width: 100%; max-width: var(--maxw); margin: 0 auto;
  }
  .section-header {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px;
    margin-bottom: clamp(16px, 2vw, 26px);
    align-items: end;
  }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 18px; } }
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: Poppins, sans-serif; font-size: 12px;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em;
  }
  .section-tag::before {
    content: ""; width: 22px; height: 1px; background: var(--accent);
  }
  h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin: 14px 0 0;
  }
  .section-lede {
    color: var(--muted); font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.6;
  }

  /* ============ WHY FAIL — Glassy Bento (matches site bg) ============ */
  #why {
    --mi-accent: #4f46e5;
    --mi-text: var(--text);
    --mi-muted: var(--muted);
    --mi-dim: var(--dim);
    position: relative;
  }
  #why::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(60% 50% at 15% 10%, rgba(79,70,229,0.08), transparent 60%),
      radial-gradient(40% 40% at 90% 85%, rgba(79,70,229,0.06), transparent 70%);
    pointer-events: none;
  }
  #why::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(60% 50% at 15% 10%, rgba(79,70,229,0.10), transparent 60%),
      radial-gradient(40% 40% at 90% 85%, rgba(79,70,229,0.08), transparent 70%);
    pointer-events: none;
  }
  #why .wrap { position: relative; z-index: 1; }
  #why .section-tag { color: var(--mi-accent); }
  #why .section-tag::before { background: var(--mi-accent); }
  #why h2 { color: var(--mi-text); }
  #why h2 .fail-soft { color: rgba(255,255,255,0.55); }
  .fail-intro p {
    color: var(--mi-muted);
    max-width: 720px;
    font-size: clamp(15px,1.2vw,17px);
  }
  .fail-intro p strong { color: var(--mi-text) !important; }

  /* Section header: centered */
  #why .fail-head {
    position: relative; z-index: 2;
    max-width: 760px; margin: 0 auto 34px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  #why .fail-head .section-tag {
    display: inline-flex; padding: 6px 14px; border-radius: 999px;
    border: 1px solid rgba(79,70,229,0.35);
    background: rgba(79,70,229,0.08);
    font-family: Poppins, sans-serif;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  }
  #why .fail-head .section-tag::before { display: none; }
  #why .fail-head h2 {
    margin: 4px 0 6px;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.1; letter-spacing: -0.025em;
  }
  #why .fail-head .fail-intro p { margin: 0 auto; }

  /* Giant backdrop word */
  .fail-bg-word {
    position: absolute;
    top: 70px; left: 50%; transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(110px, 17vw, 240px);
    letter-spacing: -0.04em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: 0.7;
  }

  /* Orbit layout */
  .fail-orbit {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.4fr) minmax(220px, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 18px;
  }
  .fail-col { display: flex; flex-direction: column; gap: 22px; }
  .fail-col .fail-card:nth-child(1) { transform: translateX(-8px); }
  .fail-col .fail-card:nth-child(3) { transform: translateX(-8px); }
  .fail-col-right .fail-card:nth-child(1) { transform: translateX(8px); }
  .fail-col-right .fail-card:nth-child(2) { transform: translateX(0); }
  .fail-col-right .fail-card:nth-child(3) { transform: translateX(8px); }

  .fail-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 18px 20px;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: auto 1fr; gap: 10px 14px;
    align-items: start;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.07),
      0 16px 40px -22px rgba(0,0,0,0.7);
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
  }
  .fail-card::before {
    content: ""; position: absolute; inset: 0; border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
  }
  .fail-card::after {
    content: ""; position: absolute; inset: -1px; border-radius: 20px;
    background: radial-gradient(120% 80% at 50% 0%, rgba(79,70,229,0.25), transparent 60%);
    opacity: 0; transition: opacity .35s ease; pointer-events: none;
  }
  .fail-card:hover {
    border-color: rgba(79,70,229,0.5);
    transform: translateY(-3px) !important;
  }
  .fail-card:hover::after { opacity: 1; }
  .fail-card > * { position: relative; z-index: 1; }

  .fail-card .icon-warn {
    grid-row: span 2;
    width: 38px; height: 38px; border-radius: 12px;
    background: rgba(79,70,229,0.12);
    border: 1px solid rgba(79,70,229,0.28);
    display: grid; place-items: center;
    color: var(--mi-accent);
    transition: transform .4s ease;
  }
  .fail-card:hover .icon-warn { transform: scale(1.08); }
  .fail-card .icon-warn.iw-amber {
    background: rgba(245,158,11,0.10);
    border-color: rgba(245,158,11,0.28);
    color: #f59e0b;
  }
  .fail-card .icon-warn.iw-indigo {
    background: rgba(129,140,248,0.12);
    border-color: rgba(129,140,248,0.28);
    color: #a5b4fc;
  }
  .fail-card h3 {
    margin: 2px 0 0;
    color: var(--mi-text);
    font-size: 15.5px; font-weight: 700;
    letter-spacing: -0.01em;
  }
  .fail-card p {
    grid-column: 2;
    margin: 0;
    color: var(--mi-muted);
    font-size: 13px; line-height: 1.55;
  }

  /* Stage with laptop */
  .fail-stage {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    perspective: 1400px;
  }
  .fail-laptop {
    width: 100%;
    max-width: 560px;
    position: relative;
    transform-style: preserve-3d;
    animation: failLaptopFloat 7s ease-in-out infinite;
  }
  @keyframes failLaptopFloat {
    0%,100% { transform: rotateX(4deg) translateY(0); }
    50%     { transform: rotateX(4deg) translateY(-8px); }
  }
  .fl-screen {
    background: linear-gradient(180deg, #1c2030, #0c0f1a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px 16px 6px 6px;
    padding: 14px;
    box-shadow:
      0 30px 70px -20px rgba(0,0,0,0.7),
      0 0 60px -20px rgba(79,70,229,0.4),
      inset 0 0 0 1px rgba(255,255,255,0.04);
  }
  .fl-base {
    height: 12px; margin: 0 auto;
    width: 108%;
    transform: translateX(-3.7%);
    background: linear-gradient(180deg, #2a2f44 0%, #14182a 70%, #05070d 100%);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 30px -10px rgba(0,0,0,0.7);
    position: relative;
  }
  .fl-base::before {
    content: ""; position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 4px;
    background: #05070d; border-radius: 0 0 6px 6px;
  }
  .fl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    aspect-ratio: 16/10;
  }
  .fl-tile {
    position: relative;
    background: #f5f6f8;
    border: 1px solid #e2e5eb;
    border-radius: 6px;
    overflow: hidden;
    padding: 6px;
    display: flex; flex-direction: column; gap: 4px;
    font-size: 6px;
    color: #1a1a1a;
  }
  .fl-tile.fl-img { padding: 0; background: #0b0b14; }
  .fl-tile.fl-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s ease;
  }
  .fl-tile.fl-img:hover img { transform: scale(1.06); }
  .ft-badge {
    position: absolute; right: 4px; bottom: 4px;
    background: #ef4444; color: #fff;
    width: 14px; height: 14px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 7px; font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .ft-bar {
    display: flex; align-items: center; gap: 3px;
    padding: 3px 4px;
    background: #e9ebef; border-radius: 3px;
  }
  .ft-bar i { width: 4px; height: 4px; border-radius: 50%; background: #cbd0d8; }
  .ft-bar i:nth-child(1) { background: #ff5f57; }
  .ft-bar i:nth-child(2) { background: #ffbd2e; }
  .ft-bar i:nth-child(3) { background: #28c940; }
  .ft-url {
    margin-left: 6px; padding: 1px 5px;
    background: #fff; border-radius: 3px;
    font-size: 5px; color: #6b7280;
    flex: 1; overflow: hidden;
  }
  .ft-body { padding: 4px 2px; display: flex; flex-direction: column; gap: 3px; }
  .ft-alert {
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 5px;
    background: #fff1f1;
    border: 1px solid #fecaca;
    border-radius: 3px;
    font-size: 6px;
    color: #b91c1c; font-weight: 700;
    align-self: flex-start;
  }
  .ft-alert .ft-ic { color: #dc2626; }
  .ft-alert .ft-host { color: #6b7280; font-weight: 400; }
  .ft-line { height: 3px; border-radius: 2px; background: #e5e7eb; }
  .ft-line.w90 { width: 90%; }
  .ft-line.w80 { width: 80%; }
  .ft-line.w70 { width: 70%; }
  .ft-line.w60 { width: 60%; }
  .ft-line.w50 { width: 50%; }

  .ft-popup {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; gap: 3px;
    margin-top: 6px;
  }
  .ft-pophead {
    display: flex; align-items: center; gap: 3px;
    font-size: 6px; font-weight: 700; color: #1f2937;
  }
  .ft-pophead .ft-ic.info { color: #f59e0b; }
  .ft-pophead .x { margin-left: auto; color: #9ca3af; font-weight: 400; }

  .ft-devices {
    flex: 1;
    display: flex; align-items: flex-end; justify-content: center; gap: 4px;
    padding: 4px 2px;
  }
  .ft-desktop {
    width: 55%; aspect-ratio: 4/3;
    background: linear-gradient(180deg, #f9fafb, #e5e7eb);
    border: 1.5px solid #1f2937;
    border-radius: 3px 3px 0 0;
    position: relative;
  }
  .ft-desktop::after {
    content: ""; position: absolute;
    bottom: -3px; left: 50%; transform: translateX(-50%);
    width: 50%; height: 3px;
    background: #1f2937;
    border-radius: 0 0 4px 4px;
  }
  .ft-desktop span {
    display: block; margin: 4px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, #d4a574 0%, #c9a064 50%, #f5f1ea 50%, #f5f1ea 100%);
    border-radius: 1px;
  }
  .ft-tab {
    width: 18%; aspect-ratio: 3/4;
    background: #f5f1ea;
    border: 1.5px solid #1f2937;
    border-radius: 2px;
  }
  .ft-phone {
    width: 11%; aspect-ratio: 1/2;
    background: #f5f1ea;
    border: 1.5px solid #1f2937;
    border-radius: 2px;
  }

  .ft-old {
    flex: 1;
    background: #8b6f47;
    border-radius: 3px;
    padding: 4px;
    display: flex; flex-direction: column; gap: 3px;
    color: #fff;
  }
  .ft-oldhead {
    font-size: 6px; font-weight: 800;
    color: #2c2418;
    background: #d4a574;
    padding: 2px 4px;
    border-radius: 2px;
    text-align: center;
  }
  .ft-oldnav { display: flex; gap: 3px; padding: 0 2px; }
  .ft-oldnav span { flex: 1; height: 3px; background: rgba(255,255,255,0.4); border-radius: 1px; }
  .ft-oldbody { display: flex; gap: 3px; flex: 1; }
  .ft-oldimg {
    width: 40%;
    background: linear-gradient(135deg, #c9a064, #8b6f47);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
  }
  .ft-oldtxt { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .ft-oldtxt span { height: 2px; background: rgba(255,255,255,0.5); border-radius: 1px; }
  .ft-oldtxt span:last-child { width: 60%; }

  .ft-loader {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  }
  .ft-spin {
    width: 22px; height: 22px;
    border: 2px solid #e5e7eb;
    border-top-color: #6b7280;
    border-radius: 50%;
    animation: ftSpin 1.1s linear infinite;
  }
  @keyframes ftSpin { to { transform: rotate(360deg); } }
  .ft-loader span { font-size: 6px; color: #6b7280; font-weight: 600; }

  .ft-shophead { font-size: 6px; font-weight: 700; color: #1f2937; }
  .ft-products { display: flex; gap: 3px; }
  .ft-products > div { flex: 1; aspect-ratio: 1; border-radius: 2px; }
  .ft-products > div:nth-child(1) { background: linear-gradient(135deg, #d4a574, #b8895a); }
  .ft-products > div:nth-child(2) { background: linear-gradient(135deg, #c9b18a, #8b6f47); }
  .ft-products > div:nth-child(3) { background: linear-gradient(135deg, #a8957a, #6b5640); }
  .ft-prices {
    display: flex; justify-content: space-around;
    font-size: 5.5px; color: #1f2937; font-weight: 700;
  }
  .ft-cta {
    text-align: center;
    background: #d4a574; color: #2c2418;
    font-size: 5.5px; font-weight: 800;
    padding: 2px; border-radius: 2px;
    letter-spacing: 0.05em;
  }
  .ft-cart { position: absolute; top: 8px; right: 8px; font-size: 8px; }


  @media (max-width: 1100px) {
    .fail-orbit { grid-template-columns: 1fr; gap: 24px; }
    .fail-col { flex-direction: row; flex-wrap: wrap; }
    .fail-col .fail-card { flex: 1 1 calc(50% - 11px); transform: none !important; }
    .fail-stage { order: -1; }
    .fail-bg-word { top: 50px; font-size: clamp(80px, 16vw, 160px); }
  }
  @media (max-width: 700px) {
    .fail-col .fail-card { flex: 1 1 100%; }
    .fail-card { padding: 16px; gap: 8px 12px; }
    .fail-card h3 { font-size: 14.5px; }
    .fail-card p { font-size: 12.5px; }
    .fail-bg-word { font-size: clamp(60px, 18vw, 110px); top: 30px; }
  }

  /* ============ DELIVER ============ */
  .deliver-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 1100px) { .deliver-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 700px) { .deliver-grid { grid-template-columns: 1fr; } }
  .deliver-card {
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    position: relative; overflow: hidden;
    transition: border-color .3s, transform .3s;
  }
  .deliver-card::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(400px 200px at 80% 0%, var(--accent-soft), transparent 60%);
    opacity: 0; transition: opacity .4s; pointer-events: none;
  }
  .deliver-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
  .deliver-card:hover::before { opacity: 1; }
  .deliver-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #001018;
    display: grid; place-items: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px -6px var(--accent-glow);
  }
  .deliver-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
  .deliver-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.55; }

  /* ============ 3D MOCKUP SHOWCASE ============ */
  .showcase {
    position: relative;
    background: linear-gradient(180deg, var(--bg), var(--bg-2) 60%, var(--bg));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .showcase-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(700px 500px at 75% 30%, rgba(74,123,255,0.18), transparent 65%),
      radial-gradient(600px 500px at 20% 70%, rgba(92,225,255,0.10), transparent 65%);
  }
  .showcase-grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 90%);
  }
  .showcase .wrap { position: relative; z-index: 1; }
  .showcase-stage {
    position: relative;
    margin-top: 18px;
    perspective: 1600px;
    perspective-origin: 50% 40%;
    min-height: 430px;
    display: flex; align-items: center; justify-content: center;
  }
  @media (max-width: 880px) { .showcase-stage { min-height: 760px; flex-direction: column; gap: 48px; } }

  .laptop3d {
    position: relative;
    width: clamp(420px, 60vw, 760px);
    aspect-ratio: 16/10.6;
    transform-style: preserve-3d;
    animation: laptop3dFloat 10s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes laptop3dFloat {
    0%   { transform: rotateX(12deg) rotateY(-18deg) translateY(0) translateZ(0); }
    50%  { transform: rotateX(10deg) rotateY(-14deg) translateY(-14px) translateZ(20px); }
    100% { transform: rotateX(12deg) rotateY(-18deg) translateY(0) translateZ(0); }
  }
  .lp-screen {
    position: absolute; inset: 0 0 8% 0;
    background: #0B0E18;
    border: 9px solid #1a1f2e;
    border-radius: 16px 16px 4px 4px;
    box-shadow:
      0 60px 120px -40px rgba(0,0,0,0.9),
      0 0 100px -25px rgba(74,123,255,0.55),
      inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
  }
  .lp-screen::before {
    content: ""; position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 6px; background: #0a0d15;
    border-radius: 0 0 8px 8px; z-index: 4;
  }
  .lp-screen::after {
    content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: #2a3047; border-radius: 50%; z-index: 5;
  }
  .lp-base {
    position: absolute; bottom: 0; left: -6%; right: -6%;
    height: 14px;
    background: linear-gradient(180deg, #2b3142, #1a1f2e 40%, #0a0d15);
    border-radius: 0 0 18px 18px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .lp-base::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 140px; height: 5px;
    background: linear-gradient(180deg, #0a0d15, #1a1f2e);
    border-radius: 0 0 10px 10px;
  }
  .lp-reflect {
    position: absolute; left: 0; right: 0; bottom: -50px; height: 80px;
    background: radial-gradient(ellipse, rgba(74,123,255,0.4), transparent 70%);
    filter: blur(20px);
    z-index: -1;
  }
  .lp-ui {
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 100%, rgba(74,123,255,0.20), transparent 50%),
      linear-gradient(180deg, #0A0E1A, #060912);
    display: flex; flex-direction: column;
    font-size: 11px;
  }
  .lp-topbar {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .lp-topbar .dots { display: flex; gap: 5px; }
  .lp-topbar .dots span { width: 8px; height: 8px; border-radius: 50%; background: #2a3047; }
  .lp-topbar .url {
    flex: 1; background: rgba(255,255,255,0.05);
    border-radius: 5px; padding: 4px 10px; font-size: 9px;
    font-family: Poppins, sans-serif; color: var(--muted);
  }
  .lp-body { flex: 1; padding: 22px 26px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; align-items: center; }
  .lp-hero { display: flex; flex-direction: column; gap: 10px; }
  .lp-hero .badge {
    align-self: flex-start;
    font-size: 9px; padding: 3px 10px; border-radius: 999px;
    background: rgba(74,123,255,0.18); border: 1px solid rgba(74,123,255,0.35);
    color: #8FC0FF; font-family: Poppins, sans-serif;
  }
  .lp-hero h5 {
    margin: 0; font-size: clamp(15px, 2.3vw, 26px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  }
  .lp-hero h5 em {
    font-style: normal;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .lp-hero p { margin: 0; font-size: 9.5px; color: var(--muted); line-height: 1.5; }
  .lp-hero .btnrow { display: flex; gap: 8px; margin-top: 6px; align-items: center; }
  .lp-hero .btnrow .b1 {
    padding: 6px 14px; border-radius: 999px;
    background: linear-gradient(180deg, #4A8BFF, #2E6DFF);
    color: #fff; font-size: 9.5px; font-weight: 600;
    box-shadow: 0 6px 18px -6px rgba(74,139,255,0.7);
  }
  .lp-hero .btnrow .b2 { font-size: 9px; color: var(--muted); }
  .lp-vis {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(20,28,52,0.9), rgba(8,12,24,0.95));
    border: 1px solid rgba(74,139,255,0.22);
    box-shadow: 0 12px 40px -10px rgba(74,139,255,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
    padding: 14px;
    overflow: hidden;
  }
  .lp-vis .pill {
    position: absolute; top: 10px; left: 10px;
    font-size: 8.5px; padding: 3px 8px;
    background: rgba(74,139,255,0.18);
    border: 1px solid rgba(74,139,255,0.35);
    border-radius: 999px; color: #8FC0FF; font-weight: 600;
  }
  .lp-vis svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .lp-vis .bar3d {
    transform-origin: bottom;
    animation: barGrow 1.6s cubic-bezier(.2,.8,.2,1) backwards;
  }
  @keyframes barGrow { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }

  .phone3d {
    position: absolute;
    right: 2%; bottom: 4%;
    width: clamp(170px, 18vw, 230px);
    aspect-ratio: 9/19;
    transform-style: preserve-3d;
    animation: phone3dFloat 7s ease-in-out infinite;
    will-change: transform;
    z-index: 3;
  }
  @media (max-width: 880px) {
    .phone3d { position: relative; right: auto; bottom: auto; width: 230px; }
  }
  @keyframes phone3dFloat {
    0%   { transform: rotateX(8deg) rotateY(-18deg) translateY(0) translateZ(60px); }
    50%  { transform: rotateX(6deg) rotateY(-14deg) translateY(-18px) translateZ(80px); }
    100% { transform: rotateX(8deg) rotateY(-18deg) translateY(0) translateZ(60px); }
  }
  .ph-frame {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #1a1f2e, #0a0d15);
    border-radius: 30px;
    padding: 10px;
    box-shadow:
      0 40px 80px -20px rgba(0,0,0,0.9),
      0 0 60px -10px rgba(92,225,255,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.08),
      inset 0 1px 2px rgba(255,255,255,0.15);
  }
  .ph-screen {
    position: absolute; inset: 8px;
    background: #060912;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .ph-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 56px; height: 14px;
    background: #050810;
    border-radius: 999px; z-index: 3;
  }
  .ph-side {
    position: absolute; top: 70px; right: -2px; width: 3px; height: 28px;
    background: linear-gradient(180deg, #2b3142, #1a1f2e);
    border-radius: 2px;
  }
  .ph-side.s2 { top: 110px; height: 50px; }
  .ph-side.s3 { right: auto; left: -2px; top: 90px; height: 30px; }
  .ph-side.s4 { right: auto; left: -2px; top: 130px; height: 50px; }
  .ph-ui {
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(74,123,255,0.22), transparent 60%),
      linear-gradient(180deg, #0A0E1A, #060912);
    padding: 30px 14px 14px;
    display: flex; flex-direction: column; gap: 10px;
    font-size: 9px;
  }
  .ph-status {
    display: flex; align-items: center; justify-content: space-between;
    font-family: Poppins, sans-serif; font-size: 8px;
    color: rgba(255,255,255,0.7);
    padding: 0 6px;
  }
  .ph-status .icons { display: flex; gap: 4px; }
  .ph-status .icons span {
    display: inline-block; width: 12px; height: 6px;
    background: rgba(255,255,255,0.4); border-radius: 1px;
  }
  .ph-status .icons span.bat { width: 14px; border: 1px solid rgba(255,255,255,0.4); background: transparent; position: relative; }
  .ph-status .icons span.bat::after { content: ""; position: absolute; inset: 1px 60% 1px 1px; background: var(--good); border-radius: 1px; }
  .ph-hero {
    margin-top: 4px;
    font-size: 14px; font-weight: 700; line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .ph-hero em {
    font-style: normal;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .ph-sub { font-size: 8px; color: var(--muted); line-height: 1.4; }
  .ph-cta {
    align-self: flex-start;
    padding: 6px 12px; border-radius: 999px;
    background: linear-gradient(180deg, #4A8BFF, #2E6DFF);
    color: #fff; font-size: 8.5px; font-weight: 600;
    box-shadow: 0 4px 14px -3px rgba(74,139,255,0.7);
  }
  .ph-card {
    margin-top: auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 10px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .ph-card .row { display: flex; justify-content: space-between; align-items: center; }
  .ph-card .lbl { font-size: 8px; color: var(--muted); }
  .ph-card .val { font-size: 11px; font-weight: 700; color: var(--text); }
  .ph-card .val.good { color: var(--good); }
  .ph-bars { display: flex; gap: 3px; align-items: flex-end; height: 22px; }
  .ph-bars span {
    flex: 1; background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    border-radius: 2px; opacity: 0.9;
    transform-origin: bottom;
    animation: barGrow 1.8s cubic-bezier(.2,.8,.2,1) backwards;
  }
  .ph-bars span:nth-child(1) { animation-delay: .1s; height: 30%; }
  .ph-bars span:nth-child(2) { animation-delay: .2s; height: 55%; }
  .ph-bars span:nth-child(3) { animation-delay: .3s; height: 40%; }
  .ph-bars span:nth-child(4) { animation-delay: .4s; height: 75%; }
  .ph-bars span:nth-child(5) { animation-delay: .5s; height: 65%; }
  .ph-bars span:nth-child(6) { animation-delay: .6s; height: 95%; }
  .ph-nav {
    display: flex; justify-content: space-around;
    padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--muted);
  }
  .ph-nav span {
    width: 16px; height: 16px; border-radius: 4px;
    background: rgba(255,255,255,0.04);
    display: grid; place-items: center;
  }
  .ph-nav span.active { background: rgba(92,225,255,0.18); color: var(--accent); }

  /* ===== Laptop dashboard layout ===== */
  .lp-ui.lp-dash { font-size: 10px; }
  .lp-dash-body { flex: 1; display: grid; grid-template-columns: 0.32fr 1fr; gap: 0; min-height: 0; }
  .lp-side {
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 14px 12px; display: flex; flex-direction: column; gap: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  }
  .lp-brand {
    display: flex; align-items: center; gap: 7px;
    font-weight: 700; font-size: 11px; letter-spacing: -0.01em; color: var(--text);
  }
  .lp-logo {
    width: 16px; height: 16px; border-radius: 5px;
    background: linear-gradient(135deg, #5CE1FF, #4A8BFF);
    box-shadow: 0 4px 12px -2px rgba(74,139,255,0.6);
  }
  .lp-nav { display: flex; flex-direction: column; gap: 2px; }
  .lp-nav span {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 9px; border-radius: 6px;
    font-size: 9.5px; color: var(--muted);
  }
  .lp-nav span i {
    width: 6px; height: 6px; border-radius: 2px;
    background: rgba(255,255,255,0.18);
  }
  .lp-nav span.active {
    background: linear-gradient(90deg, rgba(74,139,255,0.18), transparent);
    color: var(--text);
    box-shadow: inset 2px 0 0 #6BAEFF;
  }
  .lp-nav span.active i { background: #6BAEFF; box-shadow: 0 0 8px #6BAEFF; }
  .lp-upgrade {
    margin-top: auto;
    background: linear-gradient(160deg, rgba(74,139,255,0.18), rgba(92,225,255,0.08));
    border: 1px solid rgba(74,139,255,0.3);
    border-radius: 10px; padding: 10px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .lp-upgrade .tag {
    align-self: flex-start;
    font-size: 7.5px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
    background: #6BAEFF; color: #001018; letter-spacing: 0.08em;
  }
  .lp-upgrade p { margin: 0; font-size: 8.5px; color: var(--text); line-height: 1.3; }
  .lp-upgrade .b1 {
    align-self: flex-start;
    font-size: 8.5px; color: #6BAEFF; font-weight: 600;
  }
  .lp-main { padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
  .lp-mainhead { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
  .lp-mainhead .eyebrow {
    font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase;
    color: #5CE1FF; font-family: Poppins, sans-serif;
  }
  .lp-mainhead h5 {
    margin: 4px 0 0; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--text);
  }
  .lp-mainhead h5 em {
    font-style: normal;
    background: linear-gradient(180deg, #6BAEFF, #2E6DFF);
    -webkit-background-clip: text; color: transparent;
  }
  .lp-mainactions { display: flex; gap: 2px; padding: 3px; border-radius: 7px; background: rgba(255,255,255,0.04); }
  .lp-mainactions .seg {
    font-size: 8.5px; padding: 3px 8px; border-radius: 5px; color: var(--muted);
    font-family: Poppins, sans-serif;
  }
  .lp-mainactions .seg.active { background: rgba(74,139,255,0.25); color: #fff; }
  .lp-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .kpi {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 9px 10px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .kpi .lbl { font-size: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .kpi .num { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
  .kpi .delta { font-size: 8.5px; font-family: Poppins, sans-serif; }
  .kpi .delta.up { color: #4ADE80; }
  .kpi .delta.down { color: #FF6B6B; }
  .lp-chartcard {
    flex: 1;
    background: linear-gradient(180deg, rgba(20,28,52,0.7), rgba(8,12,24,0.9));
    border: 1px solid rgba(74,139,255,0.18);
    border-radius: 10px; padding: 10px;
    display: flex; flex-direction: column; gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    min-height: 0;
  }
  .cc-head { display: flex; align-items: center; justify-content: space-between; }
  .cc-head .pill {
    font-size: 8px; padding: 3px 8px; border-radius: 999px;
    background: rgba(74,139,255,0.18); border: 1px solid rgba(74,139,255,0.3);
    color: #8FC0FF; font-weight: 600;
  }
  .cc-head .ccnum { font-size: 11px; font-weight: 700; color: var(--text); }
  .cc-svg { flex: 1; width: 100%; height: auto; min-height: 0; }

  /* ===== Tablet (e-commerce product) ===== */
  .tablet3d {
    position: absolute;
    left: -2%; bottom: 2%;
    width: clamp(240px, 26vw, 320px);
    aspect-ratio: 4/3;
    transform-style: preserve-3d;
    animation: tablet3dFloat 9s ease-in-out infinite;
    z-index: 4;
    will-change: transform;
  }
  @keyframes tablet3dFloat {
    0%   { transform: rotateX(8deg) rotateY(16deg) translateY(0) translateZ(70px); }
    50%  { transform: rotateX(6deg) rotateY(12deg) translateY(-12px) translateZ(90px); }
    100% { transform: rotateX(8deg) rotateY(16deg) translateY(0) translateZ(70px); }
  }
  @media (max-width: 880px) {
    .tablet3d { position: relative; left: auto; bottom: auto; width: 320px; }
  }
  .tb-frame {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #1a1f2e, #0a0d15);
    border-radius: 18px;
    padding: 9px;
    box-shadow:
      0 40px 80px -20px rgba(0,0,0,0.85),
      0 0 60px -10px rgba(255,138,92,0.35),
      inset 0 0 0 1px rgba(255,255,255,0.08),
      inset 0 1px 2px rgba(255,255,255,0.12);
  }
  .tb-screen {
    position: absolute; inset: 9px;
    background: #f5f1ea;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .tb-cam {
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: #050810; border-radius: 50%; z-index: 3;
  }
  .tb-ui {
    position: absolute; inset: 0;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 12px;
    color: #1a1410;
    font-family: 'Poppins', sans-serif;
  }
  .tb-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .tb-brand {
    font-family: Poppins, sans-serif;
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  }
  .tb-brand span { margin: 0 3px; color: #c44a1f; }
  .tb-nav { display: flex; gap: 10px; }
  .tb-nav span { font-size: 8.5px; color: #6b5d52; letter-spacing: 0.08em; text-transform: uppercase; }
  .tb-nav span.active { color: #1a1410; border-bottom: 1px solid #c44a1f; padding-bottom: 1px; }
  .tb-icons { display: flex; gap: 8px; align-items: center; }
  .tb-icons i {
    width: 12px; height: 12px; border-radius: 50%;
    border: 1px solid #1a1410; display: inline-block; position: relative;
  }
  .tb-icons i.bag { border-radius: 2px; border-color: #1a1410; }
  .tb-icons i.bag b {
    position: absolute; top: -4px; right: -4px;
    background: #c44a1f; color: #fff;
    font-size: 7px; font-weight: 700;
    width: 9px; height: 9px; border-radius: 50%;
    display: grid; place-items: center; font-style: normal;
  }
  .tb-hero { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 0; }
  .tb-left { display: flex; flex-direction: column; gap: 6px; }
  .tb-eyebrow {
    font-size: 7.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: #c44a1f; font-weight: 600;
  }
  .tb-left h4 {
    margin: 0; font-family: Poppins, sans-serif;
    font-size: 22px; font-weight: 400; line-height: 1; letter-spacing: -0.01em;
  }
  .tb-left h4 em { font-style: normal; color: #c44a1f; }
  .tb-left p { margin: 0; font-size: 8.5px; color: #6b5d52; line-height: 1.5; }
  .tb-priceline { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
  .tb-price { font-size: 14px; font-weight: 700; color: #1a1410; }
  .tb-strike { font-size: 9px; color: #a99887; text-decoration: line-through; }
  .tb-swatches { display: flex; gap: 6px; margin-top: 2px; }
  .tb-swatches .sw {
    width: 14px; height: 14px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
  }
  .tb-swatches .sw.active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px #1a1410; }
  .tb-swatches .s1 { background: #e8dcc7; }
  .tb-swatches .s2 { background: #2c241e; }
  .tb-swatches .s3 { background: #8c5a3b; }
  .tb-swatches .s4 { background: #c44a1f; }
  .tb-cta { display: flex; gap: 8px; margin-top: auto; align-items: center; }
  .tb-cta .b1 {
    padding: 7px 14px; border-radius: 999px;
    background: #1a1410; color: #f5f1ea;
    font-size: 9px; font-weight: 600;
  }
  .tb-cta .b2 { font-size: 9px; color: #1a1410; }
  .tb-right { position: relative; display: flex; flex-direction: column; gap: 6px; }
  .tb-product {
    position: relative; flex: 1; border-radius: 10px;
    background: radial-gradient(circle at 50% 40%, #ede2cd, #d8c7a8);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  }
  .tb-prod-shape {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 58%; height: 52%;
    background: linear-gradient(160deg, #c9b18a, #8c6a44);
    border-radius: 6px 6px 14px 14px;
    box-shadow: 0 12px 24px -8px rgba(80,55,30,0.6), inset 0 -8px 12px rgba(0,0,0,0.18);
  }
  .tb-prod-strap {
    position: absolute; left: 50%; top: 18%;
    transform: translateX(-50%);
    width: 36%; height: 24%;
    border: 3px solid #8c6a44; border-bottom: none;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  }
  .tb-tag {
    position: absolute; top: 8px; left: 8px;
    font-size: 7px; padding: 2px 6px;
    background: rgba(26,20,16,0.85); color: #f5f1ea;
    border-radius: 3px; letter-spacing: 0.08em;
    font-family: Poppins, sans-serif;
  }
  .tb-thumbs { display: flex; gap: 4px; }
  .tb-thumbs .th {
    flex: 1; aspect-ratio: 1; border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .tb-thumbs .th.active { border-color: #c44a1f; box-shadow: 0 0 0 1px #c44a1f; }
  .tb-thumbs .t1 { background: linear-gradient(135deg, #ede2cd, #c9b18a); }
  .tb-thumbs .t2 { background: linear-gradient(135deg, #c9b18a, #6b5640); }
  .tb-thumbs .t3 { background: linear-gradient(135deg, #2c241e, #6b5640); }

  /* ===== Phone wallet layout ===== */
  .ph-ui.ph-wallet { gap: 8px; padding: 28px 12px 12px; }
  .ph-wallet-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 0 2px; }
  .ph-eyebrow {
    font-size: 7.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
  }
  .ph-balance {
    font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
    color: var(--text); line-height: 1.1; margin-top: 2px;
  }
  .ph-balance small { font-size: 11px; font-weight: 500; color: var(--muted); }
  .ph-delta { font-size: 8px; font-family: Poppins, sans-serif; }
  .ph-delta.up { color: #4ADE80; }
  .ph-avatar {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #6BAEFF, #5CE1FF);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  }
  .ph-chart-mini {
    height: 46px;
    background: linear-gradient(180deg, rgba(92,225,255,0.06), transparent);
    border-radius: 8px;
    padding: 2px;
  }
  .ph-chart-mini svg { width: 100%; height: 100%; display: block; }
  .ph-assets { display: flex; flex-direction: column; gap: 5px; }
  .ph-asset {
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 8px; align-items: center;
    padding: 7px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
  }
  .ph-ic {
    width: 20px; height: 20px; border-radius: 6px;
    display: grid; place-items: center;
    font-size: 10px; color: #001018; font-weight: 700;
  }
  .ph-ic.a1 { background: linear-gradient(135deg, #6BAEFF, #2E6DFF); color: #fff; }
  .ph-ic.a2 { background: linear-gradient(135deg, #5CE1FF, #6BAEFF); }
  .ph-ic.a3 { background: linear-gradient(135deg, #FF8A5C, #c44a1f); color: #fff; }
  .ph-asset .meta { display: flex; flex-direction: column; min-width: 0; }
  .ph-asset .nm { font-size: 9px; font-weight: 600; color: var(--text); }
  .ph-asset .sub { font-size: 7.5px; color: var(--muted); }
  .ph-asset .pv { display: flex; flex-direction: column; align-items: flex-end; }
  .ph-asset .pv span:first-child { font-size: 9px; font-weight: 700; color: var(--text); }
  .ph-asset .pv .up { font-size: 7.5px; color: #4ADE80; }
  .ph-asset .pv .down { font-size: 7.5px; color: #FF6B6B; }
  .ph-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 2px; }
  .ph-actions .pact {
    text-align: center; padding: 7px;
    border-radius: 8px; font-size: 9px; font-weight: 600;
    background: rgba(255,255,255,0.06); color: var(--text);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .ph-actions .pact.pri {
    background: linear-gradient(180deg, #4A8BFF, #2E6DFF); color: #fff;
    box-shadow: 0 6px 14px -4px rgba(74,139,255,0.7);
    border-color: transparent;
  }

  .sc-chip {
    position: absolute; z-index: 4;
    padding: 9px 14px 9px 10px;
    border-radius: 999px;
    background: rgba(15,20,36,0.85);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
    font-size: 12px; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 14px 40px -10px rgba(0,0,0,0.5);
    color: var(--text);
    animation: scChipFloat 7s ease-in-out infinite;
  }
  .sc-chip .ic {
    width: 22px; height: 22px; border-radius: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: grid; place-items: center;
    color: #001018;
  }
  .sc-chip.k1 { top: 8%; left: 2%; animation-delay: 0s; }
  .sc-chip.k2 { top: 18%; right: 4%; animation-delay: 1.5s; }
  .sc-chip.k3 { bottom: 12%; left: 6%; animation-delay: 3s; }
  @keyframes scChipFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-14px); }
  }
  @media (max-width: 880px) {
    .sc-chip { display: none; }
  }

  /* ============ SERVICES MARQUEE-CARDS ============ */
  .services-section { background: linear-gradient(180deg, transparent, rgba(10,14,26,0.6)); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
  .svc {
    padding: 22px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    display: flex; flex-direction: column; gap: 12px;
    min-height: 170px; position: relative; overflow: hidden;
    transition: background .3s;
  }
  .svc:hover { background: var(--surface); }
  .svc:hover .svc-arrow { transform: translate(4px,-4px); color: var(--accent); }
  .svc-num {
    font-family: Poppins, sans-serif; font-size: 12px; color: var(--dim);
  }
  .svc h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
  .svc p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; flex: 1; }
  .svc-arrow {
    position: absolute; top: 24px; right: 24px;
    color: var(--dim); transition: transform .3s, color .3s;
  }

  /* ============ PROCESS ============ */
  .process-section { background: var(--bg); }
  .process-wrap { position: relative; }
  .process-list {
    display: grid; gap: 0;
    border-top: 1px solid var(--line);
  }
  .step {
    display: grid;
    grid-template-columns: 100px 1.2fr 1.8fr;
    gap: 30px; padding: 24px 0;
    border-bottom: 1px solid var(--line);
    transition: background .3s;
    position: relative;
  }
  @media (max-width: 880px) {
    .step { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
    .step .step-bullets { grid-column: 1 / -1; padding-left: 60px; }
  }
  .step:hover { background: rgba(255,255,255,0.015); }
  .step:hover .step-num { color: var(--accent); }
  .step::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0;
    height: 1px; background: var(--accent);
    transform-origin: left; transform: scaleX(0); transition: transform .6s ease;
  }
  .step:hover::before { transform: scaleX(1); }

  .step-num {
    font-family: Poppins, sans-serif; font-size: 14px;
    color: var(--dim); transition: color .3s;
  }
  .step-title { font-size: clamp(18px,2vw,24px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 8px; }
  .step-desc { color: var(--muted); font-size: 14px; margin: 0; max-width: 480px; }
  .step-bullets { display: flex; flex-wrap: wrap; gap: 8px; align-self: center; }
  .step-bullets li {
    list-style: none;
    padding: 8px 14px; border: 1px solid var(--line-strong);
    border-radius: 999px; font-size: 13px; color: var(--muted);
    background: rgba(255,255,255,0.02);
    transition: color .3s, border-color .3s;
  }
  .step:hover .step-bullets li { border-color: rgba(92,225,255,0.25); color: var(--text); }
  .step-bullets ul { padding: 0; margin: 0; display: contents; }

  /* ============ ADDITIONAL SEO ============ */
  .seo-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  @media (max-width: 980px) { .seo-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .seo-grid { grid-template-columns: 1fr; } }
  .seo-card {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 22px 20px; background: var(--bg-2);
    position: relative; overflow: hidden;
    transition: border-color .3s, transform .3s;
  }
  .seo-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .seo-card .seo-num {
    font-family: Poppins, sans-serif; font-style: normal;
    font-size: 36px; color: var(--accent); line-height: 1;
    margin-bottom: 10px;
  }
  .seo-card h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .seo-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

  /* ============ PORTFOLIO ============ */
  .portfolio-section {
    background: linear-gradient(180deg, var(--bg), var(--bg-2));
    position: relative;
    overflow: hidden;
  }
  .portfolio-section::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(900px 500px at 85% 10%, rgba(74,123,255,0.16), transparent 65%),
      radial-gradient(700px 500px at 5% 90%, rgba(92,225,255,0.10), transparent 65%);
  }
  .portfolio-section .wrap { position: relative; z-index: 1; }

  .pf-meta-row {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px;
  }
  .pf-meta-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.02);
    font-family: Poppins, sans-serif;
    font-size: 11px; color: var(--muted);
    letter-spacing: 0.04em;
  }
  .pf-meta-pill .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 0 4px rgba(87,240,176,0.18);
    animation: pulse 2s infinite;
  }

  .portfolio-showcase {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }
  @media (max-width: 1080px) { .portfolio-showcase { grid-template-columns: 1fr; } }

  .pf-card {
    position: relative; display: block;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s;
    isolation: isolate;
  }
  /* Animated gradient border on hover */
  .pf-card::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit;
    padding: 1px; z-index: -1;
    background: conic-gradient(from var(--ang, 0deg),
      transparent 0deg, rgba(92,225,255,0.0) 40deg,
      rgba(92,225,255,0.85) 90deg, rgba(74,123,255,0.85) 140deg,
      rgba(92,225,255,0.0) 200deg, transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .5s;
  }
  .pf-card:hover { transform: translateY(-6px); }
  .pf-card:hover::before { opacity: 1; animation: borderSpin 6s linear infinite; }
  @property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
  @keyframes borderSpin { to { --ang: 360deg; } }

  /* Featured large card */
  .pf-featured {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 560px;
    padding: 28px;
  }
  @media (max-width: 1080px) { .pf-featured { min-height: auto; } }

  .pf-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
    font-family: Poppins, sans-serif; font-size: 11px;
    color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase;
  }
  .pf-live {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--good); font-weight: 600;
  }
  .pf-live::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 12px var(--good);
  }

  .pf-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    box-shadow:
      0 30px 60px -25px rgba(0,0,0,0.7),
      0 0 0 1px rgba(255,255,255,0.04),
      inset 0 1px 0 rgba(255,255,255,0.06);
    transform: translateZ(0);
    transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  }
  .pf-card:hover .pf-frame {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
      0 40px 80px -25px rgba(0,0,0,0.85),
      0 0 60px -10px rgba(92,225,255,0.35),
      0 0 0 1px rgba(255,255,255,0.06);
  }
  .pf-frame-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px solid var(--line);
  }
  .pf-frame-bar .dots { display: flex; gap: 6px; }
  .pf-frame-bar .dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: #2a3047;
  }
  .pf-frame-bar .dots span:nth-child(1) { background: #ff5f57; }
  .pf-frame-bar .dots span:nth-child(2) { background: #febc2e; }
  .pf-frame-bar .dots span:nth-child(3) { background: #28c840; }
  .pf-frame-url {
    flex: 1; margin-left: 6px;
    background: rgba(255,255,255,0.04);
    padding: 5px 12px; border-radius: 6px;
    font-family: Poppins, sans-serif; font-size: 11px;
    color: var(--muted); display: flex; align-items: center; gap: 8px;
  }
  .pf-frame-url::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 8px rgba(87,240,176,0.6);
  }
  .pf-screen {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg);
    overflow: hidden;
  }
  .pf-featured .pf-screen { aspect-ratio: 16/11; }
  .pf-screen img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .5s;
    filter: saturate(0.92);
  }
  .pf-card:hover .pf-screen img {
    transform: scale(1.03);
    filter: saturate(1.1);
  }
  /* sheen sweep on hover */
  .pf-screen::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg,
      transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .9s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
  }
  .pf-card:hover .pf-screen::after { transform: translateX(100%); }

  .pf-info {
    padding-top: 22px;
    display: grid; gap: 12px;
  }
  .pf-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .pf-tags span {
    font-family: Poppins, sans-serif; font-size: 10.5px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(92,225,255,0.08);
    border: 1px solid rgba(92,225,255,0.22);
    color: var(--accent);
    letter-spacing: 0.04em;
  }
  .pf-tags span.alt {
    background: rgba(255,255,255,0.03);
    border-color: var(--line-strong);
    color: var(--muted);
  }
  .pf-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600; letter-spacing: -0.025em;
    line-height: 1.1; margin: 4px 0 0;
  }
  .pf-card:hover .pf-title { color: var(--accent); }
  .pf-title { transition: color .3s; }
  .pf-desc {
    color: var(--muted); font-size: 14px; line-height: 1.6;
    margin: 0; max-width: 56ch;
  }
  .pf-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 8px;
    font-size: 13px; font-weight: 600;
    color: var(--text);
  }
  .pf-cta .arr {
    display: inline-grid; place-items: center;
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid var(--line-strong);
    transition: background .3s, border-color .3s, transform .3s, color .3s;
  }
  .pf-card:hover .pf-cta .arr {
    background: var(--accent); border-color: var(--accent);
    color: #001018; transform: translateX(4px);
  }

  /* Side stacked cards */
  .pf-side { display: grid; gap: 22px; align-content: start; }
  .pf-compact {
    padding: 20px;
    display: flex; flex-direction: column;
  }
  .pf-compact .pf-info { align-content: start; }
  .pf-compact .pf-screen { aspect-ratio: 16/9; }
  .pf-compact .pf-title { font-size: 20px; }
  .pf-compact .pf-desc { font-size: 13px; }
  .pf-compact .pf-info { padding-top: 16px; gap: 10px; }

  @media (max-width: 1080px) {
    .pf-side { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 680px) {
    .pf-side { grid-template-columns: 1fr; }
  }

  /* Stats */
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
  }
  .stats-row::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 200px at 50% 0%, rgba(92,225,255,0.08), transparent 70%);
    pointer-events: none;
  }
  @media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
  .stat {
    padding: 36px 28px; border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 6px;
  }
  .stat:last-child { border-right: 0; }
  @media (max-width: 720px) {
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  }
  .stat-val {
    font-size: clamp(34px,3.6vw,52px); font-weight: 600;
    letter-spacing: -0.04em; line-height: 1;
    background: linear-gradient(180deg, var(--text), var(--muted));
    -webkit-background-clip: text; color: transparent;
  }
  .stat-label { font-size: 13px; color: var(--muted); }

  /* ============ INDUSTRIES ============ */
  .industries-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  }
  @media (max-width: 880px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 540px) { .industries-grid { grid-template-columns: 1fr; } }
  .ind {
    background: var(--bg-2); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: transform .3s, border-color .3s, background .3s;
  }
  .ind:hover { transform: translateY(-3px); border-color: var(--line-strong); background: var(--surface); }
  .ind-glyph {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.02);
    display: grid; place-items: center; flex-shrink: 0;
    color: var(--accent);
  }
  .ind h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
  .ind p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

  /* ============ CTA BLOCK ============ */
  .cta-block {
    margin: 0 var(--pad);
    max-width: var(--maxw);
    margin-left: auto; margin-right: auto;
    background:
      radial-gradient(800px 400px at 80% 0%, rgba(74,123,255,0.18), transparent 70%),
      radial-gradient(600px 400px at 10% 100%, rgba(92,225,255,0.12), transparent 70%),
      var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 64px);
    position: relative; overflow: hidden;
    text-align: center;
  }
  .cta-block::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 80%);
  }
  .cta-block-inner { position: relative; z-index: 1; }
  .cta-block h2 {
    font-size: clamp(32px,4.4vw,60px);
    max-width: 900px; margin: 10px auto 16px;
  }
  .cta-block p {
    max-width: 760px; margin: 0 auto 22px;
    color: var(--muted); font-size: 16px; line-height: 1.6;
  }
  .cta-rocket {
    display: inline-block;
    font-size: clamp(20px,2.2vw,28px); font-weight: 600;
    margin-bottom: 16px; letter-spacing: -0.02em;
  }
  .cta-rocket .emoji {
    display: inline-block;
    transform-origin: bottom;
    animation: rocket 3s ease-in-out infinite;
  }
  @keyframes rocket {
    0%,100% { transform: translateY(0) rotate(-12deg); }
    50%     { transform: translateY(-6px) rotate(-2deg); }
  }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ============ FAQ ============ */
  .faq-list {
    display: grid; gap: 0;
    border-top: 1px solid var(--line);
  }
  details.faq {
    border-bottom: 1px solid var(--line);
    transition: background .3s;
  }
  details.faq[open] { background: rgba(255,255,255,0.02); }
  details.faq summary {
    list-style: none; cursor: pointer;
    padding: 28px 0;
    display: grid; grid-template-columns: 48px 1fr 36px; gap: 20px;
    align-items: center;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  .faq-num { font-family: Poppins, sans-serif; color: var(--dim); font-size: 14px; }
  .faq-q { font-size: clamp(17px,1.8vw,22px); font-weight: 500; letter-spacing: -0.01em; line-height: 1.3; }
  details.faq[open] .faq-q { color: var(--accent); }
  .faq-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: grid; place-items: center; justify-self: end;
    transition: background .3s, border-color .3s;
  }
  details.faq[open] .faq-toggle { background: var(--accent); border-color: var(--accent); color: #001018; }
  .faq-toggle svg { transition: transform .3s; }
  details.faq[open] .faq-toggle svg { transform: rotate(45deg); }
  .faq-a {
    padding: 0 56px 28px 68px;
    color: var(--muted); font-size: 15px; line-height: 1.7;
    max-width: 900px;
  }
  @media (max-width: 700px) {
    details.faq summary { grid-template-columns: 30px 1fr 30px; gap: 12px; }
    .faq-a { padding: 0 0 24px 42px; }
  }

  /* ============ FOOTER ============ */
  footer {
    border-top: 1px solid var(--line);
    padding: 44px var(--pad) 28px;
    color: var(--muted);
  }
  .foot-inner {
    max-width: var(--maxw); margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  }
  @media (max-width: 880px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
  .foot-col h4 { color: var(--text); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
  .foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
  .foot-col a:hover { color: var(--text); }
  .foot-bottom {
    max-width: var(--maxw); margin: 32px auto 0;
    padding-top: 24px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    font-size: 13px;
  }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .08s; }
  .reveal[data-delay="2"] { transition-delay: .16s; }
  .reveal[data-delay="3"] { transition-delay: .24s; }
  .reveal[data-delay="4"] { transition-delay: .32s; }
  .reveal[data-delay="5"] { transition-delay: .4s; }

  /* Marquee for trust strip */
  .trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    overflow: hidden; padding: 22px 0;
  }
  .marquee {
    display: flex; gap: 60px; width: max-content;
    animation: scroll 35s linear infinite;
  }
  .marquee span {
    font-size: 14px; color: var(--muted); white-space: nowrap;
    display: flex; align-items: center; gap: 60px;
    font-family: Poppins, sans-serif; letter-spacing: 0.04em;
  }
  .marquee span::after {
    content: "✦"; color: var(--accent); opacity: .5;
  }
  @keyframes scroll {
    to { transform: translateX(-50%); }
  }

  /* ============ 3D FLOATING SHAPES (HERO + CTA) ============ */
  .shape3d {
    position: absolute; pointer-events: none;
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* --- 3D Cube --- */
  .cube3d {
    width: var(--s, 110px); height: var(--s, 110px);
    transform-style: preserve-3d;
    animation: cubeSpin 18s linear infinite;
  }
  .cube3d .face {
    position: absolute; inset: 0;
    border: 1px solid rgba(92,225,255,0.5);
    background:
      linear-gradient(135deg, rgba(74,123,255,0.18), rgba(92,225,255,0.06));
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 20px rgba(92,225,255,0.15);
  }
  .cube3d .f-front  { transform: translateZ(calc(var(--s, 110px) / 2)); }
  .cube3d .f-back   { transform: rotateY(180deg) translateZ(calc(var(--s, 110px) / 2)); }
  .cube3d .f-right  { transform: rotateY(90deg)  translateZ(calc(var(--s, 110px) / 2)); }
  .cube3d .f-left   { transform: rotateY(-90deg) translateZ(calc(var(--s, 110px) / 2)); }
  .cube3d .f-top    { transform: rotateX(90deg)  translateZ(calc(var(--s, 110px) / 2)); }
  .cube3d .f-bottom { transform: rotateX(-90deg) translateZ(calc(var(--s, 110px) / 2)); }
  @keyframes cubeSpin {
    0%   { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
  }

  /* --- 3D Sphere (wireframe orb) --- */
  .sphere3d {
    width: var(--s, 140px); height: var(--s, 140px);
    border-radius: 50%;
    position: relative;
    transform-style: preserve-3d;
    animation: sphereSpin 22s linear infinite;
    background: radial-gradient(circle at 30% 30%, rgba(92,225,255,0.25), transparent 60%);
  }
  .sphere3d .ring {
    position: absolute; inset: 0;
    border: 1px solid rgba(92,225,255,0.45);
    border-radius: 50%;
  }
  .sphere3d .ring:nth-child(1) { transform: rotateY(0deg); }
  .sphere3d .ring:nth-child(2) { transform: rotateY(45deg); border-color: rgba(74,123,255,0.5); }
  .sphere3d .ring:nth-child(3) { transform: rotateY(90deg); border-color: rgba(92,225,255,0.35); }
  .sphere3d .ring:nth-child(4) { transform: rotateY(135deg); border-color: rgba(74,123,255,0.35); }
  .sphere3d .ring:nth-child(5) { transform: rotateX(60deg); border-color: rgba(92,225,255,0.4); }
  .sphere3d .ring:nth-child(6) { transform: rotateX(-30deg); border-color: rgba(74,123,255,0.45); }
  @keyframes sphereSpin {
    0%   { transform: rotateX(15deg) rotateY(0); }
    100% { transform: rotateX(15deg) rotateY(360deg); }
  }

  /* --- 3D Pyramid --- */
  .pyramid3d {
    width: var(--s, 90px); height: var(--s, 90px);
    transform-style: preserve-3d;
    animation: pyramidSpin 14s linear infinite;
  }
  .pyramid3d .face {
    position: absolute; left: 50%; top: 0;
    width: 0; height: 0;
    border-left: calc(var(--s, 90px) / 2) solid transparent;
    border-right: calc(var(--s, 90px) / 2) solid transparent;
    border-bottom: var(--s, 90px) solid rgba(74,123,255,0.18);
    transform-origin: 0 100%;
    filter: drop-shadow(0 0 20px rgba(74,123,255,0.3));
  }
  .pyramid3d .face:nth-child(1) { transform: translate(-50%, 0) rotateY(0deg)   rotateX(-25deg); }
  .pyramid3d .face:nth-child(2) { transform: translate(-50%, 0) rotateY(90deg)  rotateX(-25deg); border-bottom-color: rgba(92,225,255,0.22); }
  .pyramid3d .face:nth-child(3) { transform: translate(-50%, 0) rotateY(180deg) rotateX(-25deg); border-bottom-color: rgba(74,123,255,0.16); }
  .pyramid3d .face:nth-child(4) { transform: translate(-50%, 0) rotateY(270deg) rotateX(-25deg); border-bottom-color: rgba(92,225,255,0.2); }
  @keyframes pyramidSpin {
    0%   { transform: rotateY(0); }
    100% { transform: rotateY(360deg); }
  }

  /* --- 3D Torus (hollow ring) --- */
  .torus3d {
    width: var(--s, 130px); height: var(--s, 130px);
    position: relative;
    transform-style: preserve-3d;
    animation: torusSpin 16s linear infinite;
  }
  .torus3d span {
    position: absolute; inset: 0;
    border: 6px solid transparent;
    border-top-color: rgba(92,225,255,0.7);
    border-right-color: rgba(74,123,255,0.5);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(92,225,255,0.3);
  }
  .torus3d span:nth-child(2) { transform: rotateX(60deg); }
  .torus3d span:nth-child(3) { transform: rotateX(-60deg); }
  @keyframes torusSpin {
    0%   { transform: rotateY(0) rotateX(20deg); }
    100% { transform: rotateY(360deg) rotateX(20deg); }
  }

  /* Floating wrappers */
  .float3d {
    position: absolute; z-index: 0;
    animation: drift3d 9s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes drift3d {
    0%,100% { transform: translateY(0) translateX(0); }
    50%     { transform: translateY(-22px) translateX(8px); }
  }

  /* Position presets in the hero */
  .hero .float3d.fA { top: 14%; right: 6%;  --s: 100px; animation-delay: 0s; }
  .hero .float3d.fB { top: 64%; left: 4%;   --s: 130px; animation-delay: -3s; }
  .hero .float3d.fC { top: 22%; left: 6%;   --s: 70px;  animation-delay: -1.5s; opacity: .8; }
  .hero .float3d.fD { bottom: 8%; right: 12%; --s: 90px; animation-delay: -4.5s; }

  /* Position presets in the CTA */
  .cta-block .float3d.ctaA { top: -30px; left: -30px; --s: 120px; opacity: .85; }
  .cta-block .float3d.ctaB { bottom: -20px; right: -10px; --s: 140px; opacity: .8; }
  .cta-block .float3d.ctaC { top: 30%; right: 8%; --s: 70px; opacity: .65; }

  /* ============ 3D ISOMETRIC STACK (CTA) ============ */
  .iso-stack {
    position: absolute; z-index: 0;
    right: 4%; top: 50%;
    width: 220px; height: 180px;
    transform: translateY(-50%) rotateX(55deg) rotateZ(-40deg);
    transform-style: preserve-3d;
    opacity: .55;
    animation: isoFloat 6s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes isoFloat {
    0%,100% { transform: translateY(-50%) rotateX(55deg) rotateZ(-40deg) translateZ(0); }
    50%     { transform: translateY(-52%) rotateX(55deg) rotateZ(-40deg) translateZ(20px); }
  }
  .iso-stack .layer {
    position: absolute; inset: 0;
    border: 1px solid rgba(92,225,255,0.45);
    background: linear-gradient(135deg, rgba(74,123,255,0.15), rgba(92,225,255,0.05));
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(92,225,255,0.2);
  }
  .iso-stack .layer.l1 { transform: translateZ(0px); }
  .iso-stack .layer.l2 { transform: translateZ(40px); }
  .iso-stack .layer.l3 { transform: translateZ(80px); background: linear-gradient(135deg, rgba(92,225,255,0.18), rgba(74,123,255,0.08)); }
  @media (max-width: 880px) { .iso-stack { display: none; } }

  /* ============ 3D TILT CARDS ============ */
  .tilt3d {
    transform-style: preserve-3d;
    transition: transform .15s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
  }
  .tilt3d > * {
    transform: translateZ(20px);
    transition: transform .25s;
  }
  .tilt3d::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle 250px at var(--mx, 50%) var(--my, 50%),
                rgba(92,225,255,0.12), transparent 60%);
    opacity: 0; transition: opacity .35s;
    pointer-events: none; border-radius: inherit;
    z-index: 1;
  }
  .tilt3d:hover::after { opacity: 1; }

  @media (prefers-reduced-motion: reduce) {
    .float3d, .cube3d, .sphere3d, .pyramid3d, .torus3d, .iso-stack { animation: none !important; }
  }

  /* ============ HERO LAYOUT (text left, mockup right) ============ */
  .hero { padding: 88px var(--pad) 26px; min-height: 100svh; }
  .hero-inner {
    width: 100%;
    grid-template-columns: 1.05fr 1fr !important;
    gap: 42px !important;
    text-align: left;
    align-items: center;
  }
  .hero-top {
    max-width: 640px;
    min-width: 0;
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 12px;
  }
  .hero-top .hero-title { margin: 4px 0 2px; font-size: clamp(34px, 4.8vw, 62px); text-align: left; font-weight: 700; }
  .hero-top .hero-sub { margin: 0 0 8px; text-align: left; }
  .hero-top .hero-cta-row { justify-content: flex-start; }

  .hero-visual {
    width: 100%;
    max-width: 720px;
    min-height: 470px;
    perspective: 2000px;
    perspective-origin: 50% 50%;
    margin-left: auto;
  }
  .hero-rings {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, 95%);
    aspect-ratio: 1/1;
    z-index: 0;
    pointer-events: none;
  }
  .hero-rings span {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(92,225,255,0.10);
    box-shadow: inset 0 0 80px rgba(74,123,255,0.06);
  }
  .hero-rings span:nth-child(2) { inset: 12%; border-color: rgba(74,123,255,0.14); }
  .hero-rings span:nth-child(3) {
    inset: 28%;
    border-color: rgba(92,225,255,0.22);
    background: radial-gradient(circle at 50% 40%, rgba(74,123,255,0.15), transparent 65%);
  }

  .devices-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    aspect-ratio: 16/11;
  }

  .hero-laptop {
    inset: 8% 14% 14% 14% !important;
    z-index: 2 !important;
    transform: translateZ(0) !important;
    animation: heroLaptopFloat 9s ease-in-out infinite;
  }
  @keyframes heroLaptopFloat {
    0%,100% { transform: translateZ(0) rotateX(6deg) rotateY(-10deg) translateY(0); }
    50%     { transform: translateZ(0) rotateX(5deg) rotateY(-8deg) translateY(-10px); }
  }
  .tablet3d {
    left: 2% !important;
    top: 16% !important;
    width: 30% !important;
    z-index: 1 !important;
  }
  @keyframes tabletFloat {
    0%,100% { transform: translateZ(-60px) rotateY(16deg) rotateX(4deg) rotateZ(-3deg) translateY(0); }
    50%     { transform: translateZ(-60px) rotateY(16deg) rotateX(4deg) rotateZ(-3deg) translateY(-10px); }
  }
  .phone3d {
    right: 2% !important;
    bottom: 2% !important;
    width: 18% !important;
    z-index: 4 !important;
  }
  @keyframes phoneFloat {
    0%,100% { transform: translateZ(140px) rotateY(-20deg) rotateX(3deg) rotateZ(5deg) translateY(0); }
    50%     { transform: translateZ(140px) rotateY(-20deg) rotateX(3deg) rotateZ(5deg) translateY(-8px); }
  }

  .chip-float.c1 { top: 2%;  left: -10px; }
  .chip-float.c2 { top: 38%; right: -10px; }
  .chip-float.c3 { bottom: 6%; left: 2%; }

  @media (max-width: 1120px) {
    .hero-inner {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
      text-align: center;
      justify-items: center;
    }
    .hero-top { align-items: center; max-width: 920px; }
    .hero-top .hero-title,
    .hero-top .hero-sub { text-align: center; }
    .hero-top .hero-cta-row { justify-content: center; }
    .hero-visual { margin: 0 auto; min-height: 390px; max-width: min(680px, 100%); }
    .hero-rings { width: 95%; }
    .tablet3d { width: 32% !important; left: 2% !important; }
    .phone3d  { width: 20% !important; right: 2% !important; }
  }
  @media (max-width: 640px) {
    .hero-visual { min-height: 380px; }
    .hero-laptop { inset: 10% 6% 16% 6% !important; }
  }

  /* ============ PORTFOLIO REDESIGN (editorial split rows) ============ */
  .portfolio-showcase {
    display: flex !important;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
  }
  .pf-side {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
  }
  .pf-card.pf-featured,
  .pf-card.pf-compact {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(600px 280px at 0% 0%, rgba(74,123,255,0.10), transparent 60%),
      linear-gradient(180deg, var(--surface), var(--bg-2));
  }
  .pf-card > div:first-child {
    position: relative;
    padding: 22px;
    background: radial-gradient(420px 220px at 100% 100%, rgba(92,225,255,0.08), transparent 60%);
  }
  .pf-card .pf-frame {
    margin: 0;
    border-radius: 14px;
    transform: none;
  }
  .pf-card > .pf-info,
  .pf-card .pf-info {
    padding: 36px 40px !important;
    align-content: center;
    align-self: center;
    gap: 14px !important;
    border-left: 1px solid var(--line);
    position: relative;
  }
  .pf-card .pf-info::before {
    content: "";
    position: absolute; left: -1px; top: 28px; bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity .4s;
  }
  .pf-card:hover .pf-info::before { opacity: 1; }
  .pf-card .pf-info .pf-title::before {
    content: attr(data-index);
    display: block;
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 0.9;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
  }
  .pf-card .pf-title { font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.03em; }
  .pf-card .pf-desc { font-size: 14.5px; max-width: 48ch; }
  .pf-card .pf-screen,
  .pf-featured .pf-screen,
  .pf-compact .pf-screen { aspect-ratio: 16/10; }
  .pf-compact .pf-title { font-size: clamp(22px, 2vw, 30px); }
  .pf-compact .pf-desc { font-size: 14px; }

  /* Alternate row: image on the right side of the row */
  .pf-side .pf-card:nth-child(2) {
    grid-template-columns: 1fr 1.15fr;
  }
  .pf-side .pf-card:nth-child(2) > div:first-child { order: 2; }
  .pf-side .pf-card:nth-child(2) > .pf-info {
    order: 1;
    border-left: 0;
    border-right: 1px solid var(--line);
  }
  .pf-side .pf-card:nth-child(2) .pf-info::before {
    left: auto; right: -1px;
  }

  @media (max-width: 880px) {
    .pf-card.pf-featured,
    .pf-card.pf-compact,
    .pf-side .pf-card:nth-child(2) {
      grid-template-columns: 1fr !important;
    }
    .pf-side .pf-card:nth-child(2) > div:first-child { order: 0; }
    .pf-side .pf-card:nth-child(2) > .pf-info {
      order: 1; border-right: 0;
    }
    .pf-card .pf-info {
      border-left: 0 !important;
      border-top: 1px solid var(--line);
      padding: 28px !important;
    }
  }

  /* ============================================================
     LIGHT MODE — overrides when html does NOT have .dark class
     ============================================================ */
  html:not(.dark) {
    --bg: #F8FAFC;
    --bg-2: #EEF2F8;
    --surface: #FFFFFF;
    --surface-2: #E8EDF6;
    --line: rgba(0,0,0,0.08);
    --line-strong: rgba(0,0,0,0.13);
    --text: #0F172A;
    --muted: #64748B;
    --dim: #94A3B8;
    --accent: #0284C7;
    --accent-2: #1D4ED8;
    --accent-soft: rgba(2,132,199,0.07);
    --accent-glow: rgba(2,132,199,0.28);
    --warn: #EA580C;
    --good: #16A34A;
  }

  html:not(.dark) body {
    background: #F8FAFC;
    color: #0F172A;
  }

  html:not(.dark) ::selection { background: var(--accent); color: #fff; }

  /* Hero */
  html:not(.dark) .hero-bg {
    background:
      radial-gradient(800px 500px at 80% 0%, rgba(2,132,199,0.10), transparent 60%),
      radial-gradient(700px 400px at 10% 30%, rgba(29,78,216,0.07), transparent 60%);
  }
  html:not(.dark) .grid-bg {
    background-image:
      linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  }
  html:not(.dark) .eyebrow {
    border-color: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.02);
    color: var(--muted);
  }
  html:not(.dark) .chip-float {
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,0,0,0.10);
    color: var(--text);
  }
  html:not(.dark) .hero-rings span { border-color: rgba(2,132,199,0.10); }
  html:not(.dark) .hero-rings span:nth-child(2) { border-color: rgba(29,78,216,0.12); }
  html:not(.dark) .hero-rings span:nth-child(3) {
    border-color: rgba(2,132,199,0.18);
    background: radial-gradient(circle at 50% 40%, rgba(29,78,216,0.08), transparent 65%);
  }

  /* Trust strip */
  html:not(.dark) .trust-strip {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .marquee span { color: var(--muted); }

  /* Problem / Why section */
  html:not(.dark) .fail-bg-word {
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
  }
  html:not(.dark) #why h2 .fail-soft { color: rgba(0,0,0,0.4); }
  html:not(.dark) #why::before {
    background:
      radial-gradient(60% 50% at 15% 10%, rgba(2,132,199,0.06), transparent 60%),
      radial-gradient(40% 40% at 90% 85%, rgba(29,78,216,0.04), transparent 70%);
  }
  html:not(.dark) .fail-card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
  }
  html:not(.dark) .fail-card::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.02), transparent 40%);
  }
  html:not(.dark) .fail-card h3 { color: #0F172A; }
  html:not(.dark) .fail-card p { color: #64748B; }
  html:not(.dark) .fail-card .icon-warn {
    background: rgba(2,132,199,0.08);
    border-color: rgba(2,132,199,0.22);
    color: #0284C7;
  }
  html:not(.dark) .fail-card .icon-warn.iw-amber {
    background: rgba(234,88,12,0.07);
    border-color: rgba(234,88,12,0.22);
    color: #EA580C;
  }
  html:not(.dark) .fail-card .icon-warn.iw-indigo {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.22);
    color: #6366F1;
  }
  html:not(.dark) .fl-screen {
    background: linear-gradient(180deg, #E2E8F0, #CBD5E1);
    border-color: rgba(0,0,0,0.10);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.18), 0 0 40px -15px rgba(2,132,199,0.20);
  }

  /* Deliver */
  html:not(.dark) .deliver-card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .deliver-card h3 { color: #0F172A; }
  html:not(.dark) .deliver-card p { color: #64748B; }

  /* Showcase */
  html:not(.dark) .showcase {
    background: linear-gradient(180deg, #F8FAFC, #EEF2F8 60%, #F8FAFC);
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .showcase-bg {
    background:
      radial-gradient(700px 500px at 75% 30%, rgba(2,132,199,0.08), transparent 65%),
      radial-gradient(600px 500px at 20% 70%, rgba(29,78,216,0.06), transparent 65%);
  }
  html:not(.dark) .showcase-grid-bg {
    background-image:
      linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  }
  html:not(.dark) .sc-chip {
    background: rgba(255,255,255,0.92);
    border-color: rgba(0,0,0,0.10);
    color: var(--text);
  }

  /* Services */
  html:not(.dark) .services-section { background: transparent; }
  html:not(.dark) .services-grid { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) .svc {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .svc:hover { background: #F8FAFC; }
  html:not(.dark) .svc h3 { color: #0F172A; }
  html:not(.dark) .svc p { color: #64748B; }
  html:not(.dark) .svc-num { color: #94A3B8; }
  html:not(.dark) .svc-arrow { color: #94A3B8; }

  /* Process */
  html:not(.dark) .process-section { background: #F8FAFC; }
  html:not(.dark) .process-list { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) .step { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) .step:hover { background: rgba(0,0,0,0.015); }
  html:not(.dark) .step-num { color: #94A3B8; }
  html:not(.dark) .step-title { color: #0F172A; }
  html:not(.dark) .step-desc { color: #64748B; }
  html:not(.dark) .step-bullets li {
    border-color: rgba(0,0,0,0.10);
    color: #64748B;
    background: rgba(0,0,0,0.02);
  }
  html:not(.dark) .step:hover .step-bullets li { border-color: rgba(2,132,199,0.3); color: #0F172A; }

  /* SEO */
  html:not(.dark) .seo-card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .seo-card h3 { color: #0F172A; }
  html:not(.dark) .seo-card p { color: #64748B; }

  /* Portfolio */
  html:not(.dark) .portfolio-section { background: linear-gradient(180deg, #F8FAFC, #EEF2F8); }
  html:not(.dark) .portfolio-section::before { display: none; }
  html:not(.dark) .pf-meta-pill {
    border-color: rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.02);
    color: #64748B;
  }
  html:not(.dark) .pf-card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .pf-card > div:first-child {
    background: rgba(0,0,0,0.01);
  }
  html:not(.dark) .pf-frame {
    border-color: rgba(0,0,0,0.10);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  }
  html:not(.dark) .pf-frame-bar { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
  html:not(.dark) .pf-frame-bar .dots span { background: #CBD5E1; }
  html:not(.dark) .pf-frame-bar .dots span:nth-child(1) { background: #ff5f57; }
  html:not(.dark) .pf-frame-bar .dots span:nth-child(2) { background: #febc2e; }
  html:not(.dark) .pf-frame-bar .dots span:nth-child(3) { background: #28c840; }
  html:not(.dark) .pf-frame-url { background: rgba(0,0,0,0.04); color: #64748B; }
  html:not(.dark) .pf-info { border-color: rgba(0,0,0,0.08) !important; }
  html:not(.dark) .pf-tags span {
    background: rgba(2,132,199,0.07);
    border-color: rgba(2,132,199,0.18);
    color: #0284C7;
  }
  html:not(.dark) .pf-tags span.alt {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.10);
    color: #64748B;
  }
  html:not(.dark) .pf-title { color: #0F172A; }
  html:not(.dark) .pf-desc { color: #64748B; }
  html:not(.dark) .pf-head { color: #94A3B8; }
  html:not(.dark) .pf-cta { color: #0F172A; }
  html:not(.dark) .pf-cta .arr { border-color: rgba(0,0,0,0.12); }
  html:not(.dark) .pf-card:hover .pf-cta .arr { background: #0284C7; border-color: #0284C7; color: #fff; }
  html:not(.dark) .stats-row {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .stat { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) .stat-val {
    background: linear-gradient(180deg, #0F172A, #64748B);
    -webkit-background-clip: text; color: transparent;
  }
  html:not(.dark) .stat-label { color: #64748B; }

  /* Industries */
  html:not(.dark) .ind {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  html:not(.dark) .ind:hover { background: #F8FAFC; border-color: rgba(0,0,0,0.12); }
  html:not(.dark) .ind h3 { color: #0F172A; }
  html:not(.dark) .ind p { color: #64748B; }
  html:not(.dark) .ind-glyph {
    border-color: rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.02);
    color: #0284C7;
  }

  /* CTA block */
  html:not(.dark) .cta-block {
    background: linear-gradient(135deg, rgba(2,132,199,0.06), rgba(29,78,216,0.04)), #FFFFFF;
    border-color: rgba(0,0,0,0.10);
  }
  html:not(.dark) .cta-block::before {
    background-image:
      linear-gradient(to right, rgba(0,0,0,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,0.025) 1px, transparent 1px);
  }
  html:not(.dark) .cta-block h2 { color: #0F172A; }
  html:not(.dark) .cta-block p { color: #64748B; }
  html:not(.dark) .btn-primary {
    background: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 10px 40px -10px rgba(15,23,42,0.3);
  }
  html:not(.dark) .btn-ghost {
    border-color: rgba(0,0,0,0.14);
    color: #0F172A;
    background: rgba(0,0,0,0.02);
  }
  html:not(.dark) .btn-ghost:hover { background: rgba(0,0,0,0.05); border-color: #0284C7; }

  /* FAQ */
  html:not(.dark) .faq-list { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) details.faq { border-color: rgba(0,0,0,0.08); }
  html:not(.dark) details.faq[open] { background: rgba(0,0,0,0.018); }
  html:not(.dark) .faq-num { color: #94A3B8; }
  html:not(.dark) .faq-q { color: #0F172A; }
  html:not(.dark) details.faq[open] .faq-q { color: #0284C7; }
  html:not(.dark) .faq-toggle { border-color: rgba(0,0,0,0.12); color: #0F172A; }
  html:not(.dark) details.faq[open] .faq-toggle { background: #0284C7; border-color: #0284C7; color: #fff; }
  html:not(.dark) .faq-a { color: #64748B; }

  /* Section labels & headings */
  html:not(.dark) .section-tag { color: #64748B; }
  html:not(.dark) .section-tag::before { background: #0284C7; }
  html:not(.dark) h2 { color: #0F172A; }
  html:not(.dark) .section-lede { color: #64748B; }

  /* 3D shapes — subtle tint for light mode */
  html:not(.dark) .cube3d .face {
    border-color: rgba(2,132,199,0.35);
    background: linear-gradient(135deg, rgba(2,132,199,0.08), rgba(29,78,216,0.04));
  }
  html:not(.dark) .sphere3d .ring { border-color: rgba(2,132,199,0.35); }
  html:not(.dark) .torus3d span {
    border-top-color: rgba(2,132,199,0.6);
    border-right-color: rgba(29,78,216,0.45);
  }

  /* Nav (wd page uses ExpandingNavbar so its nav is handled by Tailwind dark classes) */
  /* Footer */
  html:not(.dark) footer {
    border-color: rgba(0,0,0,0.08);
    color: #64748B;
  }
  html:not(.dark) .foot-col h4 { color: #0F172A; }
  html:not(.dark) .foot-bottom { border-color: rgba(0,0,0,0.08); }
