
  :root{
    --bg: #0A0B10;
    --panel: #14161C;
    --panel-raised: #191B23;
    --line: #24262F;
    --pink: #F72466;
    --pink-dim: #7A1233;
    --cyan: #2DD4E8;
    --text: #F5F5F7;
    --muted: #8A8D9B;
    --muted-dim: #5B5E6B;
    --display: 'Rajdhani', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

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

  html{ scroll-behavior:smooth; }

  section[id], .product-card[id]{ scroll-margin-top: 96px; }

  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--body);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
  }

  a{ color:inherit; text-decoration:none; }
  :focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; }

  .wrap{ max-width:1160px; margin:0 auto; padding:0 32px; }

  /* ---------- NAV ---------- */
  nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    backdrop-filter: blur(12px);
    background: rgba(10,11,16,0.75);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    max-width:1160px; margin:0 auto; padding:16px 32px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .brand{ display:flex; align-items:center; gap:10px; }
  .brand svg{ width:26px; height:26px; }
  .brand-name{ font-family:var(--display); font-weight:700; font-size:20px; letter-spacing:0.02em; }
  .nav-links{ display:flex; gap:36px; align-items:center; }
  .nav-links a{
    font-size:14px; color:var(--muted); font-weight:500;
    transition:color 0.15s ease;
  }
  .nav-links a:hover{ color:var(--text); }
  .nav-cta{
    background:var(--pink); color:#fff !important; padding:9px 18px;
    border-radius:6px; font-weight:600; font-size:14px;
    box-shadow: 0 0 0 1px rgba(247,36,102,0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .nav-cta:hover{ transform:translateY(-1px); box-shadow:0 4px 16px rgba(247,36,102,0.35); }
  .nav-mobile-hide{ display:flex; }
  @media (max-width:720px){ .nav-mobile-hide{ display:none; } }

  /* ---------- NAV DROPDOWN ---------- */
  .nav-links{ align-items:center; gap:36px; }
  .nav-dropdown{ position:relative; padding-bottom:18px; margin-bottom:-18px; }
  .nav-dropdown-trigger{
    background:none; border:none; cursor:pointer;
    font-family:var(--body); font-size:14px; font-weight:500; color:var(--muted);
    display:flex; align-items:center; gap:6px; padding:0;
    transition:color 0.15s ease;
  }
  .nav-dropdown-trigger svg{ transition:transform 0.2s ease; }
  .nav-dropdown:hover .nav-dropdown-trigger{ color:var(--text); }
  .nav-dropdown:hover .nav-dropdown-trigger svg{ transform:rotate(180deg); }
  .nav-dropdown-menu{
    position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(-6px);
    width:280px; background:var(--panel); border:1px solid var(--line); border-radius:12px;
    padding:8px; opacity:0; pointer-events:none; visibility:hidden;
    box-shadow:0 20px 50px -12px rgba(0,0,0,0.6);
    transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav-dropdown:hover .nav-dropdown-menu{
    opacity:1; pointer-events:auto; visibility:visible; transform:translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu a{
    display:flex; flex-direction:column; gap:2px; padding:10px 12px;
    border-radius:8px; transition:background 0.15s ease;
  }
  .nav-dropdown-menu a:hover{ background:var(--panel-raised); }
  .nav-dd-title{ font-size:14px; font-weight:600; color:var(--text); display:flex; align-items:center; gap:8px; }
  .nav-dd-desc{ font-size:12px; color:var(--muted-dim); }
  .nav-dd-pill{
    font-family:var(--mono); font-size:9.5px; font-weight:600; color:var(--pink);
    background:rgba(247,36,102,0.12); padding:2px 6px; border-radius:6px; letter-spacing:0.03em;
  }

  /* ---------- NAV MOBILE ---------- */
  .nav-burger{
    display:none; flex-direction:column; justify-content:center; gap:4px;
    width:32px; height:32px; background:none; border:none; cursor:pointer; padding:0;
  }
  .nav-burger span{ width:100%; height:2px; background:var(--text); border-radius:2px; transition:transform 0.2s ease, opacity 0.2s ease; }
  .nav-burger.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2){ opacity:0; }
  .nav-burger.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
  @media (max-width:720px){ .nav-burger{ display:flex; } }
  .nav-mobile-menu{
    display:none; flex-direction:column; max-width:1160px; margin:0 auto;
    padding:0 32px 20px; gap:2px;
  }
  .nav-mobile-menu.open{ display:flex; }
  .nav-mobile-menu a{
    padding:12px 4px; font-size:14.5px; color:var(--muted); border-top:1px solid var(--line);
  }
  .nav-mobile-menu a.nav-cta{
    color:#fff; background:var(--pink); border:none; border-radius:6px; text-align:center;
    margin-top:10px; padding:12px; font-weight:600;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative; padding:168px 0 90px; overflow:hidden;
    border-bottom:1px solid var(--line);
  }
  .hero-grid{
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 30%, transparent 75%);
  }
  .hero-glow{
    position:absolute; top:-200px; left:50%; transform:translateX(-50%);
    width:900px; height:600px;
    background: radial-gradient(ellipse, rgba(247,36,102,0.18), transparent 65%);
    pointer-events:none;
  }
  .hero-inner{ position:relative; z-index:2; text-align:center; }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--mono); font-size:12px; color:var(--cyan);
    background:rgba(45,212,232,0.08); border:1px solid rgba(45,212,232,0.25);
    padding:6px 12px; border-radius:20px; margin-bottom:28px;
    letter-spacing:0.04em;
  }
  .eyebrow .dot{
    width:6px; height:6px; border-radius:50%; background:var(--cyan);
    box-shadow:0 0 8px var(--cyan);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }

  .hero h1{
    font-family:var(--display); font-weight:700;
    font-size:clamp(42px, 7vw, 84px);
    line-height:0.98; letter-spacing:-0.01em;
    max-width:820px; margin:0 auto;
  }
  .hero h1 .accent{ color:var(--pink); }

  .hero p{
    margin:26px auto 0; max-width:520px;
    font-size:17px; line-height:1.6; color:var(--muted);
  }

  .hero-actions{
    display:flex; gap:14px; justify-content:center; margin-top:38px;
    flex-wrap:wrap;
  }
  .btn-primary{
    background:var(--pink); color:#fff; padding:14px 26px;
    border-radius:8px; font-weight:600; font-size:15px;
    display:inline-flex; align-items:center; gap:8px;
    box-shadow:0 0 0 1px rgba(247,36,102,0.4), 0 8px 24px rgba(247,36,102,0.25);
    transition:transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 32px rgba(247,36,102,0.4); }
  .btn-secondary{
    background:var(--panel-raised); color:var(--text); padding:14px 26px;
    border-radius:8px; font-weight:600; font-size:15px;
    border:1px solid var(--line);
    transition:border-color 0.15s ease, background 0.15s ease;
  }
  .btn-secondary:hover{ border-color:var(--muted-dim); background:#1d1f28; }

  /* ---------- LOGO MARK ---------- */
  .hero-mark{
    margin:64px auto 0; width:92px; height:92px; position:relative;
  }
  .hero-mark svg{ width:100%; height:100%; filter: drop-shadow(0 0 40px rgba(247,36,102,0.45)); }

  /* ---------- DISPATCH TICKER ---------- */
  .ticker-shell{
    margin:56px auto 0; max-width:640px;
    background:var(--panel); border:1px solid var(--line); border-radius:10px;
    overflow:hidden;
  }
  .ticker-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 16px; border-bottom:1px solid var(--line);
    font-family:var(--mono); font-size:11px; color:var(--muted-dim);
  }
  .ticker-head .live{ display:flex; align-items:center; gap:6px; color:var(--cyan); }
  .ticker-head .live .dot{ width:6px; height:6px; border-radius:50%; background:var(--cyan); animation:pulse 1.4s ease-in-out infinite; }
  .ticker-body{ height:132px; overflow:hidden; position:relative; text-align:left; }
  .ticker-body::after{
    content:''; position:absolute; bottom:0; left:0; right:0; height:36px;
    background:linear-gradient(transparent, var(--panel));
  }
  .ticker-list{ animation: scrollUp 14s linear infinite; }
  .ticker-list div{
    padding:9px 16px; font-family:var(--mono); font-size:12.5px;
    color:var(--muted); border-bottom:1px solid rgba(255,255,255,0.03);
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .ticker-list div .ts{ color:var(--muted-dim); margin-right:10px; }
  .ticker-list div .tag-mod{ color:var(--pink); }
  .ticker-list div .tag-sys{ color:var(--cyan); }
  @keyframes scrollUp{
    0%{ transform:translateY(0); }
    100%{ transform:translateY(-50%); }
  }

  /* ---------- PRODUCT STRIP ---------- */
  .product-strip{
    display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
    margin:36px auto 0; max-width:760px;
  }
  .product-strip a{
    font-family:var(--mono); font-size:12.5px; color:var(--muted);
    background:var(--panel); border:1px solid var(--line); padding:8px 14px;
    border-radius:20px; transition:border-color 0.15s ease, color 0.15s ease;
  }
  .product-strip a:hover{ border-color:var(--pink); color:var(--text); }

  /* ---------- PRODUCTS ---------- */
  .products{ border-top:1px solid var(--line); }
  .product-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; }
  @media (max-width:920px){ .product-grid{ grid-template-columns:repeat(2, 1fr); } }
  @media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }
  .product-card{ background:var(--panel); padding:30px 26px; position:relative; transition:background 0.2s ease; }
  .product-card:hover{ background:var(--panel-raised); }
  .product-card-icon{ width:38px; height:38px; color:var(--cyan); margin-bottom:20px; }
  .product-card h3{ font-family:var(--display); font-weight:700; font-size:21px; margin-bottom:4px; }
  .product-tag{ font-family:var(--mono); font-size:11px; color:var(--muted-dim); letter-spacing:0.03em; margin-bottom:14px; }
  .product-desc{ color:var(--muted); font-size:14px; line-height:1.6; }
  .product-bullets{ list-style:none; margin-top:16px; display:flex; flex-direction:column; gap:8px; padding-top:16px; border-top:1px solid var(--line); }
  .product-bullets li{ font-size:12.5px; color:var(--muted-dim); padding-left:14px; position:relative; }
  .product-bullets li::before{ content:''; position:absolute; left:0; top:6px; width:5px; height:5px; background:var(--cyan); border-radius:50%; }
  .product-card-premium .product-bullets li::before{ background:var(--pink); }
  .product-card-premium{ background:linear-gradient(180deg, rgba(247,36,102,0.06), var(--panel) 40%); }
  .product-card-premium:hover{ background:linear-gradient(180deg, rgba(247,36,102,0.1), var(--panel-raised) 40%); }
  .icon-premium{ color:var(--pink); }
  .premium-badge{
    position:absolute; top:26px; right:26px; font-family:var(--mono); font-size:10px; font-weight:600;
    color:var(--pink); background:rgba(247,36,102,0.12); padding:3px 8px; border-radius:6px; letter-spacing:0.04em;
  }

  /* ---------- SECTION HEAD ---------- */
  .section{ padding:110px 0; }
  .section-head{ max-width:560px; margin-bottom:64px; }
  .section-eyebrow{
    font-family:var(--mono); font-size:12px; color:var(--pink);
    letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px;
    display:block;
  }
  .section-head h2{
    font-family:var(--display); font-weight:700; font-size:clamp(30px,4vw,42px);
    letter-spacing:-0.01em; line-height:1.08;
  }
  .section-head p{ margin-top:16px; color:var(--muted); font-size:16px; line-height:1.65; }

  /* ---------- FEATURES ---------- */
  .features{ border-top:1px solid var(--line); }
  .feature-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:1px;
    background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden;
  }
  @media (max-width:860px){ .feature-grid{ grid-template-columns:1fr; } }
  .feature-card{
    background:var(--panel); padding:32px 28px;
    transition:background 0.2s ease;
  }
  .feature-card:hover{ background:var(--panel-raised); }
  .feature-num{ font-family:var(--mono); font-size:12px; color:var(--muted-dim); }
  .feature-icon{ width:36px; height:36px; margin:18px 0 20px; color:var(--pink); }
  .feature-card h3{ font-family:var(--display); font-weight:600; font-size:20px; margin-bottom:10px; }
  .feature-card p{ color:var(--muted); font-size:14.5px; line-height:1.6; }

  /* ---------- DASHBOARD PREVIEW ---------- */
  .dashboard{ border-top:1px solid var(--line); }
  .dash-frame{
    border:1px solid var(--line); border-radius:14px; overflow:hidden;
    background:var(--panel);
    box-shadow:0 40px 100px -30px rgba(0,0,0,0.6);
  }
  .dash-topbar{
    display:flex; align-items:center; gap:8px; padding:14px 18px;
    border-bottom:1px solid var(--line); background:var(--panel-raised);
  }
  .dash-topbar .traffic{ display:flex; gap:6px; }
  .dash-topbar .traffic span{ width:10px; height:10px; border-radius:50%; background:var(--line); }
  .dash-topbar .path{ margin-left:12px; font-family:var(--mono); font-size:12px; color:var(--muted-dim); }
  .dash-body{ display:grid; grid-template-columns:200px 1fr; min-height:420px; }
  @media (max-width:720px){ .dash-body{ grid-template-columns:1fr; } .dash-side{ display:none; } }
  .dash-side{
    border-right:1px solid var(--line); padding:20px 14px;
  }
  .dash-side .item{
    padding:9px 12px; border-radius:6px; font-size:13.5px; color:var(--muted);
    margin-bottom:2px; font-weight:500;
  }
  .dash-side .item.active{ background:rgba(247,36,102,0.12); color:var(--pink); }
  .dash-main{ padding:26px 28px; }
  .dash-main h4{ font-family:var(--display); font-size:18px; font-weight:600; margin-bottom:4px; }
  .dash-main .sub{ color:var(--muted-dim); font-size:12.5px; font-family:var(--mono); margin-bottom:24px; }
  .stat-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:24px; }
  @media (max-width:520px){ .stat-row{ grid-template-columns:1fr; } }
  .stat-card{ background:var(--panel-raised); border:1px solid var(--line); border-radius:8px; padding:16px; }
  .stat-card .label{ font-family:var(--mono); font-size:11px; color:var(--muted-dim); margin-bottom:8px; }
  .stat-card .value{ font-family:var(--display); font-size:26px; font-weight:700; }
  .stat-card .value.pink{ color:var(--pink); }
  .stat-card .value.cyan{ color:var(--cyan); }
  .roster{ border:1px solid var(--line); border-radius:8px; overflow:hidden; }
  .roster-row{
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 16px; font-size:13.5px; border-bottom:1px solid var(--line);
  }
  .roster-row:last-child{ border-bottom:none; }
  .roster-row .name{ font-weight:500; }
  .roster-row .rank{
    font-family:var(--mono); font-size:11px; padding:3px 9px; border-radius:12px;
    background:rgba(45,212,232,0.1); color:var(--cyan);
  }
  .roster-row .rank.cmd{ background:rgba(247,36,102,0.12); color:var(--pink); }

  /* ---------- HOW IT WORKS ---------- */
  .how{ border-top:1px solid var(--line); }
  .how-list{ display:flex; flex-direction:column; }
  .how-row{
    display:grid; grid-template-columns:120px 1fr; gap:24px;
    padding:28px 0; border-bottom:1px solid var(--line);
    align-items:baseline;
  }
  .how-row:first-child{ border-top:1px solid var(--line); }
  @media (max-width:600px){ .how-row{ grid-template-columns:1fr; gap:8px; } }
  .how-row .callsign{ font-family:var(--mono); font-size:13px; color:var(--pink); }
  .how-row h4{ font-family:var(--display); font-size:20px; font-weight:600; margin-bottom:6px; }
  .how-row p{ color:var(--muted); font-size:14.5px; line-height:1.6; max-width:520px; }

  /* ---------- DEPARTMENTS ---------- */
  .departments{ border-top:1px solid var(--line); }
  .dept-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
  @media (max-width:860px){ .dept-grid{ grid-template-columns:1fr; } }
  .dept-copy h2{ font-family:var(--display); font-weight:700; font-size:clamp(28px,3.6vw,38px); letter-spacing:-0.01em; line-height:1.1; margin:14px 0 16px; }
  .dept-copy p{ color:var(--muted); font-size:15.5px; line-height:1.65; margin-bottom:24px; }
  .dept-list{ list-style:none; display:flex; flex-direction:column; gap:14px; }
  .dept-list li{ font-size:14.5px; color:var(--muted); line-height:1.5; padding-left:20px; position:relative; }
  .dept-list li::before{ content:''; position:absolute; left:0; top:7px; width:8px; height:8px; background:var(--pink); border-radius:2px; }
  .dept-list li strong{ color:var(--text); }

  .dept-visual{ display:flex; flex-direction:column; gap:16px; }
  .dept-card{ background:var(--panel); border:1px solid var(--line); border-radius:10px; overflow:hidden; }
  .dept-card-head{ font-family:var(--mono); font-size:11px; color:var(--cyan); padding:12px 16px; border-bottom:1px solid var(--line); letter-spacing:0.04em; }
  .dept-card-row{ display:flex; justify-content:space-between; padding:11px 16px; font-size:13.5px; border-bottom:1px solid var(--line); }
  .dept-card-row:last-child{ border-bottom:none; }
  .badge{ font-family:var(--mono); font-size:10.5px; padding:3px 8px; border-radius:10px; background:rgba(45,212,232,0.1); color:var(--cyan); }
  .badge.cmd{ background:rgba(247,36,102,0.12); color:var(--pink); }
  .badge.muted{ background:var(--panel-raised); color:var(--muted-dim); }
  .dept-shout{ background:var(--panel-raised); border:1px solid var(--line); border-radius:10px; padding:18px; }
  .dept-shout-head{ font-family:var(--mono); font-size:10.5px; color:var(--muted-dim); letter-spacing:0.06em; margin-bottom:10px; }
  .dept-shout p{ font-size:14px; color:var(--text); line-height:1.55; margin-bottom:10px; }
  .dept-shout-by{ font-family:var(--mono); font-size:12px; color:var(--muted); }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial{ border-top:1px solid var(--line); text-align:center; }
  .testimonial blockquote{
    font-family:var(--display); font-weight:600; font-size:clamp(22px,3vw,32px);
    line-height:1.35; max-width:760px; margin:0 auto; letter-spacing:-0.005em;
  }
  .testimonial em{ color:var(--pink); font-style:normal; }
  .testimonial-by{ margin-top:26px; display:flex; flex-direction:column; gap:2px; }
  .testimonial-by .name{ font-weight:600; font-size:14.5px; }
  .testimonial-by .role{ font-family:var(--mono); font-size:12.5px; color:var(--muted-dim); }

  /* ---------- CTA ---------- */
  .cta{
    border-top:1px solid var(--line);
    padding:120px 0; text-align:center; position:relative; overflow:hidden;
  }
  .cta-glow{
    position:absolute; bottom:-200px; left:50%; transform:translateX(-50%);
    width:700px; height:500px;
    background:radial-gradient(ellipse, rgba(247,36,102,0.14), transparent 65%);
  }
  .cta-inner{ position:relative; z-index:2; }
  .cta h2{
    font-family:var(--display); font-weight:700; font-size:clamp(30px,5vw,52px);
    letter-spacing:-0.01em; max-width:600px; margin:0 auto;
  }
  .cta p{ color:var(--muted); margin:18px auto 34px; max-width:440px; font-size:16px; }

  /* ---------- FOOTER ---------- */
  footer{ border-top:1px solid var(--line); padding:64px 0 32px; }
  .footer-grid{
    display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:44px; border-bottom:1px solid var(--line);
  }
  @media (max-width:720px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:460px){ .footer-grid{ grid-template-columns:1fr; } }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  .footer-brand svg{ width:20px; height:20px; }
  .footer-brand span{ font-family:var(--display); font-weight:700; font-size:16px; }
  .footer-col-brand p{ color:var(--muted-dim); font-size:13.5px; line-height:1.6; max-width:260px; }
  .footer-col{ display:flex; flex-direction:column; gap:12px; }
  .footer-col-head{ font-family:var(--mono); font-size:11px; color:var(--muted-dim); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:2px; }
  .footer-col a{ color:var(--muted); font-size:13.5px; }
  .footer-col a:hover{ color:var(--text); }
  .footer-bottom{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; padding-top:26px; }
  footer .fine{ color:var(--muted-dim); font-size:12.5px; font-family:var(--mono); }
  .footer-social{ display:flex; gap:20px; }
  .footer-social a{ color:var(--muted); font-size:13px; }
  .footer-social a:hover{ color:var(--text); }

/* ---------- PRODUCT DETAIL PAGES ---------- */
.breadcrumb{
  display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:12.5px;
  color:var(--muted-dim); margin-bottom:26px;
}
.breadcrumb a{ color:var(--muted); }
.breadcrumb a:hover{ color:var(--text); }

.detail-hero{ padding:158px 0 80px; border-bottom:1px solid var(--line); position:relative; overflow:hidden; }
.detail-hero-inner{ position:relative; z-index:2; max-width:720px; }
.detail-tag{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:12px;
  color:var(--cyan); background:rgba(45,212,232,0.08); border:1px solid rgba(45,212,232,0.25);
  padding:6px 12px; border-radius:20px; margin-bottom:22px; letter-spacing:0.04em;
}
.detail-tag.premium-tag{ color:var(--pink); background:rgba(247,36,102,0.08); border-color:rgba(247,36,102,0.25); }
.detail-hero h1{
  font-family:var(--display); font-weight:700; font-size:clamp(38px,6vw,64px);
  line-height:1.02; letter-spacing:-0.01em; margin-bottom:20px;
}
.detail-hero p.lead{ font-size:17px; line-height:1.65; color:var(--muted); max-width:560px; }
.detail-hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }

.detail-section{ padding:90px 0; border-top:1px solid var(--line); }
.detail-section:first-of-type{ border-top:none; }
.spec-list{ display:flex; flex-direction:column; }
.spec-row{
  display:grid; grid-template-columns:260px 1fr; gap:32px; padding:30px 0;
  border-bottom:1px solid var(--line); align-items:start;
}
.spec-row:first-child{ border-top:1px solid var(--line); }
@media (max-width:680px){ .spec-row{ grid-template-columns:1fr; gap:10px; } }
.spec-row .spec-num{ font-family:var(--mono); font-size:12.5px; color:var(--pink); }
.spec-row h4{ font-family:var(--display); font-weight:600; font-size:19px; margin-top:6px; }
.spec-row p{ color:var(--muted); font-size:14.5px; line-height:1.65; max-width:520px; }

.detail-cta{ text-align:center; padding:100px 0; border-top:1px solid var(--line); position:relative; overflow:hidden; }
.detail-cta h2{ font-family:var(--display); font-weight:700; font-size:clamp(28px,4.5vw,42px); }
.detail-cta p{ color:var(--muted); margin:16px auto 30px; max-width:420px; }

.other-products{ display:flex; gap:14px; flex-wrap:wrap; margin-top:18px; }
.other-products a{
  font-family:var(--mono); font-size:12.5px; color:var(--muted);
  background:var(--panel); border:1px solid var(--line); padding:9px 16px; border-radius:20px;
  transition:border-color 0.15s ease, color 0.15s ease;
}
.other-products a:hover{ border-color:var(--pink); color:var(--text); }

.product-learn-more{
  display:inline-flex; align-items:center; gap:4px; margin-top:16px;
  font-family:var(--mono); font-size:12.5px; color:var(--cyan); font-weight:500;
  transition:gap 0.15s ease;
}
.product-learn-more:hover{ gap:8px; }
.product-card-premium .product-learn-more{ color:var(--pink); }
