:root{
      --bg:#09090b;
      --bg-soft:#111116;
      --panel:#141419;
      --panel-2:#19191f;
      --text:#f7f7f8;
      --muted:#a6a6b1;
      --line:rgba(255,255,255,.09);
      --accent:#ff3d81;
      --accent-2:#8b5cf6;
      --accent-3:#22d3ee;
      --shadow:0 24px 70px rgba(0,0,0,.38);
      --radius:24px;
      --max:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:
        radial-gradient(circle at 20% 0%, rgba(255,61,129,.12), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(139,92,246,.14), transparent 28%),
        var(--bg);
      color:var(--text);
      line-height:1.55;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    button,input,textarea{font:inherit}

    .wrap{width:min(calc(100% - 36px),var(--max));margin:auto}

    header{
      position:sticky;top:0;z-index:20;
      backdrop-filter:blur(18px);
      background:rgba(9,9,11,.72);
      border-bottom:1px solid var(--line);
    }

    nav{
      display:flex;align-items:center;justify-content:space-between;
      min-height:76px;
    }

    .brand{
      display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:-.03em
    }
    .brand-mark{
      width:36px;height:36px;border-radius:11px;
      overflow:hidden;
      display:grid;place-items:center;
      position:relative;
    }
    .brand-mark::after{ content:none; }        /* removes the "E" */
    .brand-mark img{
      width:100%;height:100%;
      object-fit:contain;                      /* or cover to fill */
      display:block;
    }

    .brand small{
      display:block;color:var(--muted);font-size:11px;font-weight:700;letter-spacing:.11em;text-transform:uppercase
    }

    .contact-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .email-link {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
    }

    .email-link:hover {
      color: var(--text);
    }

    .nav-links{display:flex;gap:24px;color:#d4d4da;font-size:14px;font-weight:700}
    .nav-links a:hover{color:white}

    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      min-height:50px;padding:0 20px;border-radius:14px;border:1px solid transparent;
      font-weight:850;transition:.2s ease;cursor:pointer;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      box-shadow:0 12px 40px rgba(139,92,246,.22);
    }
    .btn-primary:hover{transform:translateY(-2px);filter:brightness(1.07)}
    .btn-ghost{border-color:var(--line);background:rgba(255,255,255,.03)}
    .btn-ghost:hover{background:rgba(255,255,255,.07)}

    .hero{
      padding:80px 0 40px;
      display:grid;
      grid-template-columns:1.12fr .88fr;
      gap:62px;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;align-items:center;gap:10px;
      color:#f0d7e2;background:rgba(255,61,129,.08);
      border:1px solid rgba(255,61,129,.18);
      padding:9px 13px;border-radius:999px;
      font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase
    }
    .eyebrow i{width:7px;height:7px;border-radius:999px;background:var(--accent);box-shadow:0 0 18px var(--accent)}

    h1{
      margin:22px 0 20px;font-size:clamp(58px,8vw,104px);line-height:.93;
      letter-spacing:-.075em;max-width:850px
    }
    h1 .gradient{
      display:block;background:linear-gradient(90deg,#fff 5%,#ff7aa8 38%,#ad8aff 68%,#76e9f6);
      -webkit-background-clip:text;background-clip:text;color:transparent
    }
    .hero p{
      max-width:710px;color:#b9b9c4;font-size:clamp(18px,2vw,22px);margin:0 0 32px
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap}
    .location{margin-top:28px;color:var(--muted);font-size:14px;display:flex;gap:9px;align-items:center}

    .logo{
      display:block;
      width:clamp(140px,18vw,220px);           /* scales with screen, 140–220px */
      margin-bottom:24px;
    }
    .logo img{
      width:100%;height:auto;                  /* keeps the logo's proportions */
      display:block;
      filter:drop-shadow(0 0 28px rgba(255,61,129,.25));
    }

    .stage{
      min-height:540px;border-radius:34px;position:relative;overflow:hidden;
      background:
        linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.015)),
        #101014;
      border:1px solid var(--line);box-shadow:var(--shadow);
    }
    .stage::before{
      content:"";position:absolute;width:430px;height:430px;border-radius:50%;
      background:radial-gradient(circle,rgba(255,61,129,.35),rgba(139,92,246,.13) 42%,transparent 68%);
      top:-160px;right:-130px;filter:blur(12px)
    }
    .stage::after{
      content:"";position:absolute;inset:auto -10% -25% 0;height:60%;
      background:linear-gradient(25deg,rgba(34,211,238,.12),transparent 52%);
      transform:skewY(-8deg)
    }
    .studio-card{
      position:absolute;left:34px;right:34px;bottom:34px;z-index:2;
      background:rgba(11,11,15,.72);backdrop-filter:blur(18px);
      border:1px solid rgba(255,255,255,.1);border-radius:24px;padding:26px
    }
    .studio-card h3{margin:0 0 6px;font-size:26px;letter-spacing:-.04em}
    .studio-card p{margin:0;color:var(--muted);font-size:14px}
    .content-window{
      position:absolute; inset:0;
      display:grid; place-items:center;
      overflow:hidden;           /* clips anything that spills past the border */
    }

    .content-window img{
      width:100%;
      height:100%;
      object-fit:cover;          /* fills the box, crops the overflow */
      object-position:center;    /* keeps the crop centered (this is the default) */
      display:block;             /* removes the small gap under inline images */
    }

    .signal{
      position:absolute;top:28px;left:28px;display:flex;gap:7px;z-index:2
    }
    .signal span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.12)}
    .signal span:nth-child(1){background:var(--accent)}
    .signal span:nth-child(2){background:var(--accent-2)}
    .signal span:nth-child(3){background:var(--accent-3)}

    section{padding:64px 0}

    #services{
      padding-top:40px;
    }
    .section-head{
      display:block;
      margin-bottom:34px;
    }

    .section-head h2{
      font-size:clamp(38px,5vw,64px);
      line-height:1;
      letter-spacing:-.055em;
      margin:0 0 18px;
    }

    .section-head p{
      max-width:650px;
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
    }
    .services{
      display:grid;grid-template-columns:repeat(4,1fr);gap:14px
    }
    .service{
      border:1px solid var(--line);border-radius:20px;padding:24px;min-height:210px;
      background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
      transition:.22s ease
    }
    .service:hover{transform:translateY(-4px);border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.055)}
    .icon{
      width:44px;height:44px;border-radius:13px;display:grid;place-items:center;
      background:rgba(255,255,255,.07);font-size:20px;margin-bottom:42px
    }
    .service h3{font-size:18px;margin:0 0 8px}
    .service p{margin:0;color:var(--muted);font-size:14px}

    .revenue{
      margin-top:22px;padding:34px;border-radius:26px;
      border:1px solid rgba(139,92,246,.25);
      background:
        radial-gradient(circle at 80% 20%,rgba(139,92,246,.15),transparent 28%),
        rgba(255,255,255,.025)
    }
    .revenue h3{font-size:28px;margin:0 0 8px;letter-spacing:-.04em}
    .revenue p{color:var(--muted);margin:0 0 22px}
    .chips{display:flex;flex-wrap:wrap;gap:10px}
    .chip{
      padding:10px 13px;border-radius:999px;border:1px solid var(--line);
      background:rgba(255,255,255,.035);font-size:13px;font-weight:750;color:#dddde5
    }

    .split{
      display:grid;grid-template-columns:1fr 1fr;gap:18px
    }
    .panel{
      border:1px solid var(--line);border-radius:28px;padding:36px;background:var(--panel)
    }
    .panel h3{margin:0 0 12px;font-size:30px;letter-spacing:-.04em}
    .panel p{color:var(--muted);margin:0 0 24px}
    .bullets{display:grid;gap:12px}
    .bullet{display:flex;gap:12px;align-items:flex-start;color:#d8d8df}
    .bullet b{
      width:23px;height:23px;border-radius:999px;background:rgba(255,61,129,.12);
      color:#ff8bb1;display:grid;place-items:center;flex:0 0 23px;font-size:12px
    }

    .cta{
      padding:70px 0 110px
    }
    .cta-box{
      border-radius:34px;padding:58px;
      background:
        linear-gradient(120deg,rgba(255,61,129,.17),rgba(139,92,246,.17) 50%,rgba(34,211,238,.11)),
        #111116;
      border:1px solid rgba(255,255,255,.11);
      display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center
    }
    .cta-box h2{font-size:clamp(42px,6vw,76px);line-height:.95;letter-spacing:-.06em;margin:0 0 15px}
    .cta-box p{color:#c3c3cc;max-width:670px;margin:0}

    footer{border-top:1px solid var(--line);padding:30px 0 44px;color:var(--muted);font-size:13px}
    .footer-row{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap}

    @media (max-width:980px){
      .hero{grid-template-columns:1fr;padding-top:82px}
      .stage{min-height:410px}
      .services{grid-template-columns:repeat(2,1fr)}
      .split{grid-template-columns:1fr}
      .cta-box{grid-template-columns:1fr}
      .nav-links{display:none}
    }

    @media (max-width:600px){
      .wrap{width:min(calc(100% - 24px),var(--max))}
      h1{font-size:58px}
      .logo{width:120px;margin-bottom:18px}
      .services{grid-template-columns:1fr}
      .service{min-height:175px}
      .icon{margin-bottom:28px}
      .section-head{display:block}
      .section-head p{margin-top:16px}
      .panel,.revenue{padding:25px}
      .cta-box{padding:34px 24px}
      .hero-actions .btn{width:100%}
      .brand small{display:none}
    }
