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

  :root {
    --bg: #0d0b14;
    --bg2: #120f1d;
    --purple: #7c3aed;
    --purple-light: #a855f7;
    --purple-glow: #c084fc;
    --accent: #e879f9;
    --white: #f5f0ff;
    --muted: #8b7aa8;
    --card: #16112a;
    --card-border: #2a1f45;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }



  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124,58,237,0.1);
    background: rgba(13,11,20,0.7);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo-img {
    height: 84px;
    width: auto;
    display: block;
  }
  .nav-logo span { color: var(--purple-glow); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--purple);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover {
    background: var(--purple-light);
    box-shadow: 0 0 24px rgba(168,85,247,0.4);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .orb1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
    top: -100px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,121,249,0.12) 0%, transparent 70%);
    bottom: 50px; left: 100px;
    animation: orbFloat 12s ease-in-out infinite reverse;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-glow);
    margin-bottom: 36px;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--purple-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 700px;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  .hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--purple-glow), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    margin-top: 28px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex; gap: 16px; align-items: center;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    background: var(--purple);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
    cursor: none;
  }
  .btn-primary:hover {
    background: var(--purple-light);
    box-shadow: 0 8px 40px rgba(124,58,237,0.5);
    transform: translateY(-2px);
  }
  .btn-ghost {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(4px); }

  .hero-stats {
    margin-top: 80px;
    display: flex; gap: 56px;
    animation: fadeUp 0.8s ease 0.4s both;
    border-top: 1px solid var(--card-border);
    padding-top: 48px;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--purple-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MARQUEE */
  .marquee-section {
    padding: 32px 0;
    background: rgba(124,58,237,0.06);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 64px;
    width: max-content;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    display: flex; align-items: center; gap: 16px;
  }
  .marquee-item::after {
    content: '◆';
    color: var(--purple);
    font-size: 0.5rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTIONS */
  section { padding: 120px 48px; }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-glow);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-bottom: 20px;
  }
  .section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 64px;
  }

  /* SERVICES GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--card-border);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
  }
  .service-card {
    background: var(--card);
    padding: 40px 36px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { background: #1a1232; }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 48px; height: 48px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
  }
  .service-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .service-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* MVP SECTION */
  .mvp-section {
    background: var(--bg2);
  }
  .mvp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .mvp-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .mvp-badge {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(232,121,249,0.1));
    border: 1px solid rgba(124,58,237,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-glow);
    font-weight: 600;
  }

  .team-cards {
    display: flex; flex-direction: column; gap: 16px;
  }
  .team-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex; align-items: center; gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .team-card:hover {
    border-color: rgba(124,58,237,0.5);
    transform: translateX(8px);
  }
  .team-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border: 2px solid rgba(124,58,237,0.4);
    display: block;
  }

  .partner-logos {
    grid-column: 1 / -1;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
  }
  .partner-logos img {
    max-width: 480px;
    width: 100%;
    opacity: 0.55;
    filter: brightness(1.4);
    transition: opacity 0.3s;
  }
  .partner-logos img:hover { opacity: 0.8; }
  .team-info {}
  .team-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .team-role {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .team-mvp {
    margin-left: auto;
    background: rgba(232,121,249,0.1);
    border: 1px solid rgba(232,121,249,0.3);
    color: var(--accent);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
  }

  /* PRODUCTS GRID */
  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .product-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .product-card:hover { border-color: rgba(124,58,237,0.4); }
  .product-card .task-widget { width: 100%; }
  .product-card-body { flex: 1; }
  .product-card-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 36px;
  }

  /* PRODUCT CTA (legacy, keep for fallback) */
  .product-section {
    position: relative;
    overflow: hidden;
  }
  .product-inner {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .product-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-glow);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .product-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .product-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
  }
  .product-actions {
    display: flex; flex-direction: column; gap: 12px; align-items: center; flex-shrink: 0;
  }
  .product-free-tag {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* TASK PREVIEW WIDGET */
  .task-widget {
    background: #0d0b14;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    flex-shrink: 0;
    margin-top: 32px;
  }
  .widget-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
  }
  .widget-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .widget-progress {
    font-size: 0.7rem;
    color: var(--purple-glow);
    font-weight: 600;
  }
  .task-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.8rem;
  }
  .task-item:last-child { border-bottom: none; }
  .task-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem;
    flex-shrink: 0;
  }
  .task-check.done { background: rgba(124,58,237,0.3); color: var(--purple-glow); border: 1px solid rgba(124,58,237,0.5); }
  .task-check.pending { border: 1px solid var(--card-border); }
  .task-text { flex: 1; color: var(--white); }
  .task-text.done-text { color: var(--muted); text-decoration: line-through; }
  .task-pill {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .pill-auto { background: rgba(124,58,237,0.2); color: var(--purple-glow); border: 1px solid rgba(124,58,237,0.3); }
  .pill-manual { background: rgba(232,121,249,0.1); color: var(--accent); border: 1px solid rgba(232,121,249,0.3); }

  /* CONTACT */
  .contact-section {
    background: var(--bg2);
  }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-detail {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 40px;
  }
  .contact-line {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .contact-line a {
    color: var(--purple-glow);
    text-decoration: none;
  }
  .contact-line a:hover { text-decoration: underline; }

  .contact-form {
    display: flex; flex-direction: column; gap: 16px;
  }
  .form-field {
    display: flex; flex-direction: column; gap: 6px;
  }
  .form-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
  }
  .form-input {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
  }
  textarea.form-input { resize: vertical; min-height: 120px; }

  /* FOOTER */
  footer {
    padding: 40px 48px;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .footer-logo span { color: var(--purple-glow); }
  .footer-copy {
    color: var(--muted);
    font-size: 0.8rem;
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-logo { font-size: 1rem; gap: 6px; }
    .nav-logo-img { height: 48px; }
    .nav-cta { padding: 8px 14px; font-size: 0.72rem; }
    .hero { padding: 120px 24px 60px; }
    section { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .mvp-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .product-inner { grid-template-columns: 1fr; padding: 48px 32px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }
