:root {
      --black: #060608;
      --black-soft: #101017;
      --purple: #7b2fff;
      --purple-soft: #b98dff;
      --purple-deep: #3f1485;
      --gold: #ffb321;
      --gold-deep: #ff8a1f;
      --gold-soft: #ffe0a2;
      --white: #ffffff;
      --text-soft: #cbc6da;
      --text-dim: #9d97b0;
      --line: rgba(255, 255, 255, 0.08);
      --line-strong: rgba(255, 179, 33, 0.22);
      --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
      --glass-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
      --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.28);
      --shadow-xl: 0 34px 100px rgba(0, 0, 0, 0.45);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --max-width: 1220px;
      --transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
      --spot-x: 72%;
      --spot-y: 28%;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
      font-family: "Outfit", sans-serif;
      color: var(--white);
      background:
        radial-gradient(circle at 16% 10%, rgba(123, 47, 255, 0.24), transparent 22%),
        radial-gradient(circle at 82% 14%, rgba(255, 179, 33, 0.16), transparent 18%),
        radial-gradient(circle at 72% 74%, rgba(123, 47, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #030304 0%, #08080c 42%, #0c0b14 100%);
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
    }

    body::before {
      background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 120px 120px;
      mask-image: radial-gradient(circle at center, black 34%, transparent 100%);
      opacity: 0.36;
    }

    body::after {
      background:
        radial-gradient(circle at 12% 12%, rgba(123, 47, 255, 0.32), transparent 18%),
        radial-gradient(circle at 88% 80%, rgba(255, 179, 33, 0.15), transparent 18%);
      filter: blur(22px);
      opacity: 0.8;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .page-glow {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    .page-glow span {
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      opacity: 0.42;
      animation: floatOrb 12s ease-in-out infinite;
    }

    .page-glow span:nth-child(1) {
      width: 24rem;
      height: 24rem;
      top: 6%;
      left: -6%;
      background: rgba(123, 47, 255, 0.28);
    }

    .page-glow span:nth-child(2) {
      width: 18rem;
      height: 18rem;
      top: 10%;
      right: 4%;
      background: rgba(255, 179, 33, 0.22);
      animation-delay: -4s;
    }

    .page-glow span:nth-child(3) {
      width: 28rem;
      height: 28rem;
      bottom: -3%;
      right: -8%;
      background: rgba(123, 47, 255, 0.18);
      animation-delay: -7s;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max-width));
      margin: 0 auto;
    }

    .glass,
    .glass-strong {
      position: relative;
      isolation: isolate;
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .glass {
      background: var(--glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--shadow-lg);
    }

    .glass-strong {
      background: var(--glass-strong);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: var(--shadow-xl);
    }

    .glass::before,
    .glass-strong::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 20%, transparent 72%, rgba(255, 179, 33, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
      pointer-events: none;
      z-index: -1;
    }

    @supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
      .glass,
      .glass-strong {
        background: rgba(20, 20, 28, 0.96);
      }
    }

    .section {
      padding: 6rem 0;
      position: relative;
        overflow: hidden;
      isolation: isolate;
    }

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

    .section::before,
    .section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.16;
      animation: sectionDrift 16s ease-in-out infinite;
    }

    .section::before {
      width: 22rem;
      height: 22rem;
      top: 8%;
      left: -8%;
      background: rgba(123, 47, 255, 0.32);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.55rem 1rem;
      margin-bottom: 1rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 179, 33, 0.18);
      background: rgba(255, 179, 33, 0.08);
      color: #ffd994;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      font-size: 0.76rem;
    }

    .eyebrow::before {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      box-shadow: 0 0 18px rgba(255, 179, 33, 0.7);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Syne", sans-serif;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    h1 {
      font-size: clamp(3rem, 8vw, 6.1rem);
      max-width: 11ch;
    }

    h2 {
      font-size: clamp(2.1rem, 4vw, 3.5rem);
    }

    h3 {
      font-size: 1.4rem;
    }

    p {
      color: var(--text-soft);
      line-height: 1.8;
      font-size: 1rem;
    }

    .accent-text {
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 44%, #ffc44f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 0;
    }

    .nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 1.5rem;
      padding: 0.7rem 0.8rem;
      border-radius: 20px;  
      transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .nav.is-scrolled {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .nav-shell {
      display: contents;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      flex: 0 0 auto;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: clamp(3rem, 3.5vw, 4.1rem);
      max-width: min(19vw, 13.5rem);
      object-fit: contain;
      filter:
        drop-shadow(0 0 20px rgba(123, 47, 255, 0.18))
        drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
      animation: iconFloat 6.8s ease-in-out infinite;
    }

    .nav-toggle {
      display: none;
      width: 3rem;
      height: 3rem;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--white);
      cursor: pointer;
    }

    .nav-toggle-line,
    .nav-toggle-line::before,
    .nav-toggle-line::after {
      display: block;
      width: 1.05rem;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
      transition: transform var(--transition), opacity var(--transition);
    }

    .nav-toggle-line::before {
      transform: translateY(-6px);
    }

    .nav-toggle-line::after {
      transform: translateY(4px);
    }

    .nav.is-open .nav-toggle-line {
      transform: rotate(45deg);
    }

    .nav.is-open .nav-toggle-line::before {
      transform: translateY(0);
      opacity: 0;
    }

    .nav.is-open .nav-toggle-line::after {
      transform: translateY(-2px) rotate(-90deg);
    }

    .nav-links,
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .nav-links {
      justify-content: center;
      flex-wrap: nowrap;
    }

    .nav-actions {
      justify-content: flex-end;
      flex-wrap: nowrap;
    }

    .nav-links a {
      position: relative;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.95rem;
      white-space: nowrap;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.35rem;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
      background: linear-gradient(90deg, var(--purple), var(--gold));
    }

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

    .nav-links a:hover::after {
      transform: scaleX(1);
    }
@media (max-width: 768px) {

  .nav {
    grid-template-columns: 1fr auto; /* logo + menu */
    padding: 0.6rem 0.8rem;
  }

  .nav-shell {
    display: none;   /* hide by default */
    width: 100%;
  }

  .nav.is-open .nav-shell {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem; /* controlled spacing */
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }
}
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      padding: 0.95rem 1.4rem;
      border: 0;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
    }

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

    .btn::after {
      content: "";
      position: absolute;
      inset: -20% auto -20% -32%;
      width: 34%;
      transform: translateX(-170%) skewX(-20deg);
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
      opacity: 0;
      transition: transform 760ms ease, opacity 280ms ease;
      pointer-events: none;
    }

    .btn:hover::after {
      transform: translateX(430%) skewX(-20deg);
      opacity: 1;
    }

    .btn-primary {
      color: #160d00;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
      box-shadow: 0 18px 35px rgba(255, 138, 31, 0.25);
    }

    .btn-primary:hover {
      box-shadow: 0 24px 44px rgba(255, 138, 31, 0.34);
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .btn-secondary:hover {
      border-color: rgba(255, 179, 33, 0.26);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }

    .hero {
      padding-top: 0.2rem;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 40px;
      padding: clamp(1.5rem, 3vw, 2rem);
      isolation: isolate;
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(28px);
      z-index: -1;
    }

    .hero-shell::before {
      width: 22rem;
      height: 22rem;
      top: -8rem;
      left: -7rem;
      background: rgba(123, 47, 255, 0.3);
      animation: pulseGlow 6.2s ease-in-out infinite;
    }

    .hero-shell::after {
      width: 18rem;
      height: 18rem;
      right: -3rem;
      bottom: -5rem;
      background: rgba(255, 179, 33, 0.2);
      animation: pulseGlow 7s ease-in-out infinite reverse;
    }

    .hero-spotlight {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at calc(var(--spot-x) - 16%) calc(var(--spot-y) + 18%), rgba(255, 179, 33, 0.12), transparent 16%),
        radial-gradient(circle at calc(var(--spot-x) + 10%) calc(var(--spot-y) - 14%), rgba(123, 47, 255, 0.14), transparent 18%);
      mix-blend-mode: screen;
      opacity: 0.85;
      transition: opacity var(--transition);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      gap: 2rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      padding: 1rem 0;
    }

    .hero-copy p {
      max-width: 39rem;
      margin-top: 1.35rem;
      font-size: 1.06rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 2rem;
    }

    .hero-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2.1rem;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.85rem 1rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text-soft);
      animation: chipGlow 5.8s ease-in-out infinite;
    }

    .hero-chip:nth-child(2) {
      animation-delay: -2.8s;
    }

    .hero-chip span {
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--gold));
      box-shadow: 0 0 22px rgba(255, 179, 33, 0.62);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2.25rem;
    }

    .metric-card {
      padding: 1.15rem;
      border-radius: 24px;
      position: relative;
    }

    .metric-card::before {
      content: "";
      position: absolute;
      inset: auto -10% 0 auto;
      width: 6rem;
      height: 6rem;
      background: radial-gradient(circle, rgba(255, 179, 33, 0.18), transparent 68%);
      pointer-events: none;
    }

    .metric-number {
      display: block;
      margin-bottom: 0.3rem;
      font-family: "Syne", sans-serif;
      font-size: 1.7rem;
      color: var(--white);
    }

    .hero-visual {
      min-height: 42rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .orbital {
      position: absolute;
      inset: 50% auto auto 50%;
      width: min(100%, 35rem);
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 0 80px rgba(123, 47, 255, 0.08);
    }

    .orbital::before,
    .orbital::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      inset: 10%;
      border: 1px dashed rgba(255, 255, 255, 0.08);
      animation: spin 20s linear infinite;
    }

    .orbital::after {
      inset: 22%;
      border-style: solid;
      animation-direction: reverse;
      animation-duration: 16s;
    }

    .orbit-node {
      position: absolute;
      width: 0.95rem;
      height: 0.95rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      box-shadow: 0 0 22px rgba(255, 179, 33, 0.62);
    }

    .orbit-node::after {
      content: "";
      position: absolute;
      inset: -0.55rem;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.15);
      opacity: 0;
      animation: orbPing 2.8s ease-out infinite;
    }

    .orbit-node.node-a {
      top: 16%;
      left: 10%;
      box-shadow: 0 0 22px rgba(123, 47, 255, 0.62);
      background: linear-gradient(135deg, var(--purple-soft), var(--purple));
    }

    .orbit-node.node-b {
      top: 20%;
      right: 14%;
    }

    .orbit-node.node-b::after {
      animation-delay: -0.8s;
    }

    .orbit-node.node-c {
      bottom: 16%;
      left: 18%;
    }

    .orbit-node.node-c::after {
      animation-delay: -1.6s;
    }

    .interface-card,
    .metric-card,
    .story-card,
    .trust-card,
    .mini-panel,
    .trust-row,
    .benefit-card,
    .industry-card,
    .blog-card,
    .tab-stage,
    .tab-button,
    .cta-shell,
    .tab-detail-card,
    .footer-card,
    .signal-item {
      will-change: transform;
    }

    .metric-card,
    .signal-item,
    .mini-panel,
    .trust-row,
    .benefit-card,
    .industry-card,
    .blog-card,
    .footer-card,
    .tab-detail-card {
      position: relative;
      isolation: isolate;
      transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
      animation: cardBreathe 8.8s ease-in-out infinite;
    }

    .metric-card::after,
    .signal-item::after,
    .mini-panel::after,
    .trust-row::after,
    .benefit-card::after,
    .industry-card::after,
    .blog-card::after,
    .footer-card::after,
    .tab-detail-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 179, 33, 0.2), rgba(123, 47, 255, 0.16));
      opacity: 0;
      transition: opacity var(--transition);
      pointer-events: none;
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
    }

    .metric-card:hover::after,
    .signal-item:hover::after,
    .mini-panel:hover::after,
    .trust-row:hover::after,
    .benefit-card:hover::after,
    .industry-card:hover::after,
    .blog-card:hover::after,
    .footer-card:hover::after,
    .tab-detail-card:hover::after {
      opacity: 1;
    }

    .interface-card {
      width: min(100%, 29rem);
      padding: 1.35rem;
      border-radius: 30px;
      position: relative;
      overflow: hidden;
      animation: panelFloat 6.4s ease-in-out infinite;
    }

    .interface-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(145deg, rgba(123, 47, 255, 0.12), transparent 40%),
        linear-gradient(320deg, rgba(255, 179, 33, 0.13), transparent 40%);
      pointer-events: none;
    }

    .interface-head {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 1rem;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .panel-label,
    .blog-meta,
    .interface-head small {
      display: block;
      margin-bottom: 0.35rem;
      color: #f7c86b;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.73rem;
    }

    .interface-head strong {
      display: block;
      margin-bottom: 0.3rem;
      font-family: "Syne", sans-serif;
      font-size: 1.65rem;
    }

    .interface-score {
      min-width: 5.8rem;
      padding: 0.9rem 0.75rem;
      border-radius: 20px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .interface-score span {
      display: block;
      font-family: "Syne", sans-serif;
      font-size: 1.7rem;
    }

    .interface-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1rem;
    }

    .signal-list,
    .signal-chart {
      display: grid;
      gap: 1rem;
    }

    .signal-item,
    .signal-chart,
    .story-card,
    .trust-card,
    .industry-card,
    .blog-card,
    .footer-shell,
    .cta-shell,
    .tab-stage,
    .tab-detail-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .signal-item {
      padding: 1rem;
      transition: transform var(--transition), border-color var(--transition);
    }

    .signal-item:hover {
      border-color: rgba(255, 179, 33, 0.26);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    }

    .signal-item strong {
      display: block;
      margin-bottom: 0.25rem;
      font-size: 1rem;
    }

    .signal-chart {
      padding: 1rem;
      min-height: 100%;
    }

    .bars {
      height: 11rem;
      margin-top: 1.2rem;
      display: flex;
      align-items: end;
      gap: 0.75rem;
    }

    .bar {
      flex: 1;
      border-radius: 20px 20px 0 0;
      background: linear-gradient(180deg, var(--gold) 0%, var(--purple) 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
      transform-origin: bottom;
      transform: scaleY(0.2);
      opacity: 0;
      animation: riseUp 1.2s ease forwards, barPulse 4.8s ease-in-out 1.2s infinite;
    }

    .bar:nth-child(1) {
      animation-delay: 0.15s, 1.35s;
    }

    .bar:nth-child(2) {
      animation-delay: 0.3s, 1.5s;
    }

    .bar:nth-child(3) {
      animation-delay: 0.45s, 1.65s;
    }

    .bar:nth-child(4) {
      animation-delay: 0.6s, 1.8s;
    }

    .premium-strip {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.4rem;
      align-items: stretch;
    }

    .story-card,
    .trust-card {
      padding: 1.7rem;
    }

    .story-card::after,
    .trust-card::after,
    .tab-stage::after,
    .cta-shell::after {
      content: "";
      position: absolute;
      inset: auto -10% -10% auto;
      width: 10rem;
      height: 10rem;
      background: radial-gradient(circle, rgba(255, 179, 33, 0.18), transparent 68%);
      pointer-events: none;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.2rem;
    }

    .mini-panel {
      padding: 1rem;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mini-panel strong,
    .trust-row strong {
      display: block;
      margin-bottom: 0.3rem;
      font-family: "Syne", sans-serif;
      color: var(--white);
    }

    .trust-list {
      margin-top: 1.25rem;
      display: grid;
      gap: 0.8rem;
    }

    .trust-row {
      display: flex;
      align-items: start;
      gap: 0.85rem;
      padding: 0.95rem 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .trust-icon,
    .benefit-icon,
    .industry-badge {
      display: grid;
      place-items: center;
      font-family: "Syne", sans-serif;
      font-weight: 800;
    }

    .trust-icon {
      width: 2.3rem;
      height: 2.3rem;
      flex: 0 0 auto;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(123, 47, 255, 0.25), rgba(255, 179, 33, 0.28));
      color: var(--white);
      animation: iconFloat 7.2s ease-in-out infinite;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 1.4rem;
      align-items: stretch;
    }

    .tab-stack {
      display: grid;
      gap: 1rem;
    }

    .tab-button {
      width: 100%;
      padding: 1.2rem;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--white);
      text-align: left;
      cursor: pointer;
      transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
    }

    .tab-button:hover,
    .tab-button.is-active {
      transform: translateY(-4px);
      border-color: rgba(255, 179, 33, 0.28);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(123, 47, 255, 0.12), rgba(255, 179, 33, 0.08));
      box-shadow: var(--shadow-lg);
    }

    .tab-button small {
      display: block;
      margin-bottom: 0.35rem;
      color: #ffc65a;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .tab-button strong {
      display: block;
      margin-bottom: 0.35rem;
      font-size: 1.15rem;
    }

    .tab-stage {
      padding: 1.5rem;
      min-height: 100%;
    }

    .tab-stage-top {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .pulse-badge {
      min-width: 6.2rem;
      padding: 0.85rem 0.8rem;
      border-radius: 20px;
      text-align: center;
      border: 1px solid rgba(255, 179, 33, 0.18);
      background: rgba(255, 179, 33, 0.06);
      animation: borderGlow 3.8s ease-in-out infinite;
    }

    .pulse-badge span {
      display: block;
      font-family: "Syne", sans-serif;
      font-size: 1.65rem;
      color: var(--gold);
    }

    .tab-stage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1rem;
    }

    .tab-detail-card {
      padding: 1rem;
    }

    .detail-list {
      list-style: none;
      margin-top: 1rem;
      display: grid;
      gap: 0.8rem;
    }

    .detail-list li {
      display: flex;
      align-items: start;
      gap: 0.75rem;
      color: var(--text-soft);
    }

    .detail-list li::before {
      content: "";
      width: 0.7rem;
      height: 0.7rem;
      margin-top: 0.45rem;
      flex: 0 0 auto;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), var(--gold));
      box-shadow: 0 0 16px rgba(255, 179, 33, 0.5);
    }

    .progress-stack {
      display: grid;
      gap: 1rem;
      margin-top: 1rem;
    }

    .progress-row {
      display: grid;
      gap: 0.45rem;
    }

    .progress-row header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      color: var(--text-soft);
      font-size: 0.95rem;
    }

    .progress-track {
      height: 0.65rem;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
    }

    .progress-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--purple), var(--gold));
      box-shadow: 0 0 18px rgba(123, 47, 255, 0.42);
      transform-origin: left;
      animation: fillBar 1.1s ease forwards;
    }

    .benefits-grid,
    .industry-grid,
    .blog-grid,
    .footer-grid {
      display: grid;
      gap: 1.2rem;
    }

    .benefits-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefit-card {
      padding: 1.5rem;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 179, 33, 0.24);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
    }

    .benefit-icon {
      width: 3rem;
      height: 3rem;
      margin-bottom: 1rem;
      border-radius: 18px;
      color: #2b1700;
      font-size: 1.35rem;
      background: linear-gradient(135deg, var(--gold) 0%, #fff0a7 100%);
      animation: iconFloat 6.6s ease-in-out infinite;
    }

    .benefit-card p {
      margin-top: 0.75rem;
    }

    .industry-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .industry-card {
      padding: 1.5rem;
      transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
    }

    .industry-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 179, 33, 0.24);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(123, 47, 255, 0.12), rgba(255, 179, 33, 0.06));
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    }

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

    .industry-badge {
      width: 3.15rem;
      height: 3.15rem;
      border-radius: 18px;
      color: #1a0f00;
      background: linear-gradient(135deg, var(--gold), var(--gold-deep));
      box-shadow: 0 14px 28px rgba(255, 179, 33, 0.16);
      animation: iconFloat 7.6s ease-in-out infinite;
    }

    .industry-score {
      padding: 0.38rem 0.75rem;
      border-radius: 999px;
      font-size: 0.84rem;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* PRICING CARD */
.pricing-card {
  padding: 2rem 1.5rem;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 33, 0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* POPULAR PLAN */
.pricing-card.popular {
  border: 1px solid rgba(255, 179, 33, 0.6);
  background: linear-gradient(
    180deg,
    rgba(255, 179, 33, 0.08),
    rgba(123, 47, 255, 0.08)
  );
  transform: scale(1.05);
}

/* TAG */
.plan-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 179, 33, 0.15);
  color: var(--gold);
}

/* PRICE */
.price {
  font-size: 2.4rem;
  font-family: "Syne", sans-serif;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-dim);
}

/* FEATURES */
.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.7rem;
  color: var(--text-soft);
}

.plan-features li {
  font-size: 0.95rem;
}
.plan-note{
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
/* BUTTON FULL WIDTH */
.pricing-card .btn {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pricing-card.popular {
    transform: scale(1);
  }
}

    .blog-card:hover .blog-link,
    .footer-card:hover a,
    .industry-card:hover a {
      color: var(--white);
    }

    .blog-card:hover .blog-link {
      gap: 0.7rem;
      transform: translateX(2px);
    }

    .cta-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.4rem;
      padding: 1.7rem;
      border-radius: 30px;
    }

    .footer {
      padding: 0 0 2rem;
    }

    .footer-shell {
      padding: 1.6rem;
      border-radius: 36px;
    }

    .footer-grid {
      grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
      padding: 1.5rem;
      border-radius: 32px;
    }

    .footer-card {
      padding: 0.9rem;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: rgba(255, 255, 255, 0.02);
    }

    .footer-brand .brand-logo {
      height: clamp(2.8rem, 3vw, 3.5rem);
      max-width: 11.5rem;
    }

    .footer-card h3 {
      margin-bottom: 0.95rem;
    }

    .footer-card ul {
      list-style: none;
      margin: 1rem 0 0;
      display: grid;
      gap: 0.8rem;
    }

    .footer-card p + p {
      margin-top: 0.8rem;
      color: var(--text-soft);
    }

    .footer-card:hover,
    .mini-panel:hover,
    .trust-row:hover,
    .metric-card:hover,
    .tab-detail-card:hover {
      border-color: rgba(255, 179, 33, 0.2);
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      color: var(--text-dim);
      font-size: 0.92rem;
    }

    .btn:focus-visible,
    .nav-links a:focus-visible,
    .tab-button:focus-visible,
    .nav-toggle:focus-visible {
      outline: 2px solid rgba(255, 179, 33, 0.78);
      outline-offset: 3px;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(26px) scale(0.98);
      transition: opacity 0.8s ease, transform 0.8s ease;
      transition-delay: var(--reveal-delay, 0ms);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    @keyframes floatOrb {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -18px, 0); }
    }

    @keyframes pulseGlow {
      0%, 100% { transform: scale(1); opacity: 0.9; }
      50% { transform: scale(1.08); opacity: 0.65; }
    }

    @keyframes sectionDrift {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(18px, -16px, 0) scale(1.08); }
    }

    @keyframes chipGlow {
      0%, 100% { box-shadow: inset 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 179, 33, 0); }
      50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(123, 47, 255, 0.16); }
    }

    @keyframes linePulse {
      0%, 100% { opacity: 0.7; transform: scaleX(1); transform-origin: left; }
      50% { opacity: 1; transform: scaleX(1.08); transform-origin: left; }
    }

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

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

    @keyframes cardBreathe {
      0%, 100% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      }
      50% {
        box-shadow:
          0 18px 32px rgba(0, 0, 0, 0.14),
          0 0 30px rgba(123, 47, 255, 0.06);
      }
    }

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

    @keyframes orbPing {
      0% { transform: scale(0.55); opacity: 0; }
      30% { opacity: 0.55; }
      100% { transform: scale(1.85); opacity: 0; }
    }

    @keyframes riseUp {
      to {
        transform: scaleY(1);
        opacity: 1;
      }
    }

    @keyframes barPulse {
      0%, 100% { filter: saturate(1) brightness(1); }
      50% { filter: saturate(1.12) brightness(1.12); }
    }

    @keyframes fillBar {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    @keyframes borderGlow {
      0%, 100% { box-shadow: 0 0 0 rgba(255, 179, 33, 0); }
      50% { box-shadow: 0 0 0 6px rgba(255, 179, 33, 0.07); }
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .premium-strip,
      .showcase-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .benefits-grid,
      .industry-grid,
      .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
        border-radius: 30px;
      }

      .nav-shell {
        display: flex;
        flex-direction: column;
        grid-column: 1 / -1;
        gap: 1rem;
        width: 100%;
      }

      .nav-links,
      .nav-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .brand-logo {
        max-width: 11.5rem;
      }

      .hero-visual {
        min-height: 35rem;
      }

      .cta-shell {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 960px) {
      .hero-visual {
        min-height: 34rem;
      }

      .hero-shell,
      .footer-shell,
      .cta-shell {
        border-radius: 30px;
      }

      .tab-stage-top {
        flex-direction: column;
      }

      .pulse-badge {
        align-self: flex-start;
      }
    }

    @media (max-width: 760px) {
      .section {
        padding: 4rem 0;
      }

      .header {
        position: static;
      }

      .hero-shell {
        border-radius: 28px;
      }

      .hero-stats,
      .story-grid,
      .interface-grid,
      .tab-stage-grid,
      .benefits-grid,
      .industry-grid,
      .blog-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-meta,
      .footer-bottom,
      .nav-actions,
      .tab-stage-top {
        flex-direction: column;
        align-items: stretch;
      }

      .nav {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 0.95rem;
      }

      .js .nav-toggle {
        display: inline-flex;
      }

      .js .nav-shell {
        display: grid;
        grid-column: 1 / -1;
        gap: 0.9rem;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height var(--transition), opacity var(--transition), padding-top var(--transition);
        padding-top: 0;
      }

      .js .nav.is-open .nav-shell {
        max-height: 30rem;
        opacity: 1;
        padding-top: 0.8rem;
      }

      .nav-links,
      .nav-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        flex-wrap: nowrap;
      }

      .nav-links a {
        padding: 0.8rem 0.2rem;
      }

      .nav-links a::after {
        bottom: 0.2rem;
      }

      .nav-actions .btn,
      .hero-actions .btn {
        width: 100%;
      }

      .brand-logo {
        height: 2.9rem;
        max-width: 10.25rem;
      }

      .hero-visual {
        min-height: 30rem;
      }

      .interface-card {
        width: 100%;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(calc(100% - 1.1rem), var(--max-width));
      }

      .hero-shell,
      .story-card,
      .trust-card,
      .tab-stage,
      .cta-shell,
      .footer-shell,
      .industry-card,
      .blog-card,
      .benefit-card {
        border-radius: 24px;
      }

      .hero-shell,
      .story-card,
      .trust-card,
      .tab-stage,
      .cta-shell,
      .footer-shell,
      .industry-card,
      .blog-card,
      .benefit-card {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .metric-card,
      .signal-item,
      .signal-chart,
      .tab-detail-card {
        border-radius: 18px;
      }

      .hero-visual {
        min-height: 25rem;
      }

      .orbital {
        width: 19rem;
        max-width: 100%;
      }

      .interface-head {
        flex-direction: column;
      }

      .interface-score {
        width: 100%;
      }

      .footer-brand .brand-logo {
        height: 2.7rem;
        max-width: 9.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .section::before,
      .section::after {
        display: none;
      }
    }
.step {
  display: none;
}

.step.active {
  display: block;
}
.step{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.step.active{
  position: relative;
}

    /* SIGNUP PAGE */
.signup-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 30px;
}

.signup-left h2{
  margin-top: 0.8rem;
}

.signup-left p{
  margin-top: 1rem;
  max-width: 28rem;
}

.signup-benefits{
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
  color: var(--text-soft);
}

.signup-form{
  background: rgba(255,255,255,0.03);
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.signup-form{
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.form-group{
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label{
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-dim);
}

.form-group input{
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
}
.form-group select,
.form-group textarea{
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
}

.form-group input:focus{
  border-color: var(--gold);
}

.signup-form .btn{
  margin-top: 1rem;
}

.login-link{
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-dim);
}

.login-link a{
  color: var(--gold);
}

/* MOBILE */
@media (max-width: 768px){
  .signup-wrapper{
    grid-template-columns: 1fr;
  }
}
/* ================= MULTI STEP FORM ================= */

.step{
  display: none;
  animation: fadeIn 0.4s ease;
}

.step.active{
  display: block;
}

/* smooth animation */
@keyframes fadeIn{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}