  :root {
    --bg: #241729;
    --card-bg: #261D2E;
    --purple: #a875f7;
    --text: #E9D8E9;
    --muted: #9990aa;
    --stroke: #2e2e38;
    --radius: 18px;
    --font-main: 'Venti CF';
    --font-body: 'Venti CF';
  }

  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Black.otf");
    font-weight: 900;
  }
  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Extra-Bold.otf");
    font-weight: 800;
  }
  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Bold.otf");
    font-weight: 700;
  }
  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Demi-Bold.otf");
    font-weight: 600;
  }
  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Medium.otf");
    font-weight: 500;
  }
  @font-face {
    font-family: 'Venti CF';
    src: url("Media/VentiCF/Venti-CF-Regular.otf");
    font-weight: 400;
  }


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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── 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: rgba(26,26,31,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
  }

  .logo {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  }

  .btn:hover { transform: translateY(-2px); opacity: 0.92; }
  .btn:active { transform: translateY(0); }

  .btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 0 28px rgba(168,117,247,0.4);
  }

  .btn-primary:hover {
    box-shadow: 0 0 40px rgba(168,117,247,0.6);
  }

  /* ── HERO ── */
  #hero {

    display: flex;
    align-items: center;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
  }
  .hero-glow-1 {
    width: 520px; height: 520px;
    background: rgba(168,117,247,0.18);
    top: -120px; left: -80px;
  }
  .hero-glow-2 {
    width: 380px; height: 380px;
    background: rgba(215, 117, 247, 0.18);
    bottom: 160px; right: -60px;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(168,117,247,0.35);
    border-radius: 100px;
  }

  .hero-title {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 28px;
  }

  .hero-title span { color: var(--purple); }

  .hero-para {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
  }

  /* ── VIDEO REEL ── */
  .hero-reel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    aspect-ratio: 16/10;
    box-shadow: 0 0 0 1px var(--stroke), 0 40px 80px rgba(0,0,0,0.5);
  }

  .hero-reel video {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
  }

  .play-btn {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,0.2); }
  .play-btn svg { margin-left: 4px; }


  /* ── SECTION COMMON ── */
  section {
    padding: 120px 48px;
  }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
    text-align: center;
  }

  .section-sub {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 60px;
    text-align: center;
  }

  /* ── PROJECTS BENTO ── */
  #projects { background: var(--bg); }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bento-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--stroke);
    text-decoration: none;
    display: block;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
  }

  .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    border-color: var(--purple);
  }

  .bento-video-wrap {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: #111;
  }

  .bento-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .bento-card:hover .bento-video-wrap video {
    transform: scale(1.04);
  }

  .bento-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(22,22,26,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .bento-card:hover .bento-video-overlay { opacity: 1; }

  .bento-play {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .bento-info {
    padding: 20px 22px 22px;
  }

  .bento-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
  }

  .bento-title {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
  }

  .bento-arrow {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .bento-card:hover .bento-arrow { opacity: 1; }

  /* ── SOLUTIONS ── */
  #solutions {
    background: var(--bg);
  }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .solution-card {
    border-radius: 20px;
    padding: 28px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease;
  }

  .solution-icon {
    width: 32px; height: 32px;
    margin-bottom: 8px;
    fill: var(--purple);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }

  .solution-title {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
  }

  .solution-para {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--stroke);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }

  .footer-copy {
    font-size: 0.82rem;
    color: var(--muted);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .fade-up:nth-child(1) { animation-delay: 0.1s; }
  .fade-up:nth-child(2) { animation-delay: 0.22s; }
  .fade-up:nth-child(3) { animation-delay: 0.34s; }
  .fade-up:nth-child(4) { animation-delay: 0.46s; }

  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* scrollbar */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--stroke); border-radius: 3px; }

  @media (max-width: 1024px) {
    nav { padding: 18px 24px; }
    #hero { padding: 120px 24px 60px; }
    section { padding: 80px 24px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    footer { padding: 28px 24px; }
  }

  @media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
  }