  :root {
    --ink: #fcfcfc;
    --paper: #191127;
    --cream: #f5f4f1;
    --accent: #883CF0;
    --accent2: #7c3aed;
    --gold: #b29dce;
    --light: #faf8f3;
    --mid: #d6d6d6;
    --border: #3a1c63;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Syne', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.6;
  }
  body:hover .cursor { opacity: 1; }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: #180f26;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    background: var(--ink);
    color: var(--paper) !important;
    padding: 10px 22px;
    opacity: 1 !important;
    border-radius: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 48px 80px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--accent);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 32px;
    color: var(--ink);
  }
  .hero-title em {
    font-style: italic;
    color: var(--accent);
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 420px;
    margin-bottom: 48px;
    font-weight: 400;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 16px 36px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-101%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .btn-primary:hover::after { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 16px 36px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid var(--ink);
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: var(--cream); color:var(--paper); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
  }
  .stat-num sup { font-size: 20px; color: var(--accent); }
  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 4px;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: var(--ink);
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
  }
  .dashboard-preview {
    width: 100%;
    max-width: 480px;
    background: #23133a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a1c63;
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
  }
  .db-header {
    background: #2a1647;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #3a1c63;
  }
  .db-dots { display: flex; gap: 6px; }
  .db-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .db-dots span:nth-child(1) { background: #ff5f57; }
  .db-dots span:nth-child(2) { background: #febc2e; }
  .db-dots span:nth-child(3) { background: #28c840; }
  .db-title {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.806);
    margin-left: 8px;
    letter-spacing: 0.08em;
  }
  .db-body { padding: 24px; }
  .db-metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
  .db-metric {
    background: #2a1647;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid #3a1c63;
  }
  .db-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }
  .db-metric-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.785);
    margin-top: 4px;
  }
  .db-metric-trend {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #28c840;
    margin-top: 6px;
  }
  .db-chart-area {
    background: #2a1647;
    border-radius: 8px;
    padding: 16px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border: 1px solid #3a1c63;
  }
  .db-chart-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.692);
    margin-bottom: 10px;
  }
  .db-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
  .db-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), rgba(124, 10, 200, 0.3));
    border-radius: 2px 2px 0 0;
    animation: grow 1s ease-out forwards;
    transform-origin: bottom;
  }
  @keyframes grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }
  .db-vendor-list { margin-top: 16px; }
  .db-vendor-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #3a1c63;
  }
  .db-vendor-item:last-child { border-bottom: none; }
  .db-vendor-info { display: flex; align-items: center; gap: 10px; }
  .db-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
  }
  .db-vendor-name {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Mono', monospace;
  }
  .db-badge {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
  }
  .badge-green { background: rgba(40,200,64,0.15); color: #28c840; }
  .badge-orange { background: rgba(200,65,10,0.2); color: #e8713a; }
  .badge-gold { background: rgba(184,154,78,0.2); color: var(--gold); }

  .hero-bg-text {
    position: absolute;
    bottom: -20px; left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -8px;
    user-select: none;
  }

  /* MARQUEE */
  .marquee-strip {
    background: #1f1232;
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid #3a1c63;
    border-bottom: 1px solid #3a1c63;
  }
  .marquee-inner {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.77);
  }
  .marquee-item .dot {
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* FEATURES */
  section { padding: 120px 80px; }
  
  .section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
    max-width: 480px;
  }
  .section-title em { font-style: italic; color: var(--accent); }
  .section-desc {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid);
    align-self: flex-end;
  }

  /* LIFECYCLE TABS */
  .lifecycle-section { background: #191127; }
  .tabs-wrapper { display: flex; flex-direction: column; gap: 0; }
  .tab-item {
    border-top: 1px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s;
  }
  .tab-item:last-child { border-bottom: 1px solid var(--border); }
  .tab-item:hover { background: #1f1232; }
  .tab-item.active { background: #1f1232; }
  .tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
  }
  .tab-left { display: flex; align-items: center; gap: 28px; }
  .tab-num {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--mid);
    letter-spacing: 0.1em;
    width: 32px;
    flex-shrink: 0;
  }
  .tab-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  .tab-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--mid);
  }
  .tab-arrow {
    font-size: 20px;
    transition: transform 0.3s;
    color: var(--mid);
    flex-shrink: 0;
  }
  .tab-item.active .tab-arrow { transform: rotate(90deg); color: var(--accent); }
  .tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .tab-item.active .tab-content { max-height: 500px; }
  .tab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 0 40px 60px;
  }
  .tab-text { font-size: 15px; line-height: 1.75; color: var(--mid); }
  .tab-features { display: flex; flex-direction: column; gap: 12px; }
  .tab-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--ink);
    font-family: 'DM Mono', monospace;
  }
  .tab-feature::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* STATS BAND */
  .stats-section {
    background: var(--paper);
    color: var(--ink);
    padding: 100px 80px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #2a1647;
    border: 1px solid #3a1c63;
  }
  .stats-cell {
    background: #23133a;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .stats-cell:hover { background: #1f1232; }
  .stats-cell::after {
    content: '';
    position: absolute;
    bottom: 0; left: 40px; right: 40px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
  }
  .stats-cell:hover::after { transform: scaleX(1); }
  .stats-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .stats-num span { color: var(--accent); }
  .stats-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.774);
  }
  .stats-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.609);
    margin-top: 8px;
    font-weight: 400;
  }

  .steps-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .steps-track::before {
    content: '';
    position: absolute;
    top: 32px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), var(--border), var(--border), transparent);
  }
  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    cursor: default;
  }
  .step-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }
  .step-item:hover .step-circle {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: scale(1.1);
  }
  .step-icon { font-size: 24px; }
  .step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  .step-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid);
    font-family: 'DM Mono', monospace;
  }

  /* TESTIMONIALS */
  .testimonials-section { background: #180f26; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
  .testimonial-card {
    background: #23133a;
    padding: 48px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  .testimonial-card.featured {
    background: #1f1232;
    color: var(--ink);
  }
  .t-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.55;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 32px;
    color: inherit;
  }
  .testimonial-card.featured .t-quote { color: rgba(255,255,255,0.85); }
  .t-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 24px;
    display: block;
    opacity: 0.6;
  }
  .t-person { display: flex; align-items: center; gap: 16px; }
  .t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
  }
  .t-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.2px;
  }
  .t-role {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 3px;
  }
  .testimonial-card.featured .t-role { color: rgba(255,255,255,0.4); }
  .t-company {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .t-side-cards { display: flex; flex-direction: column; gap: 24px; }

  /* CTA SECTION */
  .cta-section {
    background: #191127;
    padding: 140px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: 'START';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.041);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -12px;
    pointer-events: none;
  }
  .cta-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 24px;
  }
  .cta-title em { font-style: italic; color: var(--accent); }
  .cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.752);
    margin-bottom: 56px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
  }
  .cta-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 24px;
    border: 1px solid #3a1c63
  }
  .cta-input {
    flex: 1;
    background: rgb(255, 255, 255);
    border: none;
    padding: 18px 24px;
    color: var(--paper);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    outline: none;
    letter-spacing: 0.05em;
  }
  .cta-input::placeholder { color: rgba(255, 255, 255, 0.783); }
  .cta-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px 32px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .cta-submit:hover { background: #883cf0e0; }
  .cta-note {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.768);
    letter-spacing: 0.1em;
  }

  /* FOOTER */
  footer {
    background: #180f26;
    padding: 60px 80px 40px;
    border-top: 1px solid #3a1c63;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--paper);
    margin-bottom: 16px;
  }
  .footer-logo span { color: var(--accent); }
  .footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.806);
    line-height: 1.6;
    max-width: 260px;
    font-family: 'DM Mono', monospace;
  }
  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.766);
    margin-bottom: 20px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    color: rgba(255, 255, 255, 0.774);
    text-decoration: none;
    font-size: 13px;
    font-family: 'DM Mono', monospace;
    transition: color 0.2s;
    letter-spacing: 0.03em;
  }
  .footer-links a:hover { color: var(--paper); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #3a1c63;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.823);
    letter-spacing: 0.1em;
  }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* INTERACTIVE HOVER CARDS */
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 60px;
  }
  .feature-card {
    background: #23133a;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
  }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card:hover { background: #1f1232; }
  .fc-icon {
    font-size: 36px;
    margin-bottom: 24px;
    display: block;
  }
  .fc-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  .fc-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mid);
    font-family: 'DM Mono', monospace;
  }
  .fc-num {
    position: absolute;
    bottom: 24px; right: 32px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(250, 250, 250, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  /* Scroll indicator */
  .scroll-ind {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 200;
    transition: width 0.1s;
  }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 80px 24px 48px; }
    .hero-right { height: 420px; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .section-header { flex-direction: column; gap: 24px; }
    .steps-track { grid-template-columns: 1fr; gap: 32px; }
    .steps-track::before { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }
    .tab-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .cta-section { padding: 80px 24px; }
    .stats-section { padding: 60px 24px; }
    footer { padding: 48px 24px 32px; }
  }