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

    :root {
      --bg:       #06070f;
      --bg-1:     #0b0d1c;
      --bg-2:     #0f1228;
      --card:     rgba(15,18,37,0.85);
      --cyan:     #00deff;
      --cyan-dim: rgba(0,222,255,0.07);
      --cyan-b:   rgba(0,222,255,0.18);
      --orange:   #ff4f1f;
      --text:     #dde4f8;
      --text2:    #7b8fb5;
      --text3:    #3d4f70;
      --display:  'Rajdhani', sans-serif;
      --body:     'Outfit', sans-serif;
      --mono:     'Space Mono', monospace;
    }

    html { scroll-behavior: smooth; }

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

    /* ─── NOISE OVERLAY ─── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 200;
      height: 70px;
      padding: 0 6%;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(6,7,15,0.82);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--cyan-b);
    }
    .logo {
      font-family: var(--display);
      font-size: 22px; font-weight: 700; letter-spacing: 4px;
      color: var(--text); text-decoration: none;
    }
    .logo span { color: var(--cyan); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--text2); text-decoration: none;
      transition: color .3s;
    }
    .nav-links a:hover { color: var(--cyan); }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }
    .nav-tool,
    .nav-cta {
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--cyan); text-decoration: none;
      padding: 10px 24px; border: 1px solid var(--cyan-b);
      transition: all .3s;
      white-space: nowrap;
    }
    .nav-tool {
      min-width: 154px;
      text-align: center;
      color: var(--text2);
      background: transparent;
    }
    .nav-tool:hover {
      color: var(--cyan);
      border-color: var(--cyan);
      background: var(--cyan-dim);
    }
    .nav-cta {
      background: var(--cyan-dim);
    }
    .nav-cta:hover { background: var(--cyan); color: var(--bg); }

    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
    }
    #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
    .hero-inner {
      position: relative; z-index: 2;
      padding: 100px 6% 60px;
      display: grid; grid-template-columns: 1fr 440px;
      gap: 60px; align-items: center;
      width: 100%;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--cyan);
      padding: 7px 14px; border: 1px solid var(--cyan-b);
      background: var(--cyan-dim); margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: ''; width: 6px; height: 6px;
      background: var(--cyan); border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    h1 {
      font-family: var(--display);
      font-size: clamp(52px, 6.5vw, 98px);
      font-weight: 700; line-height: 1;
      letter-spacing: -1px; color: var(--text);
    }
    h1 .hl { color: var(--cyan); }
    h1 .dim { color: var(--text2); font-weight: 300; display: block; }

    .hero-sub {
      font-size: 16px; line-height: 1.8;
      color: var(--text2); max-width: 480px;
      margin: 24px 0 44px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

    .btn-fire {
      background: var(--orange); color: #fff;
      font-family: var(--body); font-size: 13px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 16px 36px; border: none; cursor: pointer;
      text-decoration: none; display: inline-block;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      transition: opacity .3s;
    }
    .btn-fire:hover { opacity: .88; }

    .btn-ghost {
      background: transparent; color: var(--text2);
      font-size: 13px; font-weight: 500;
      padding: 16px 0; border: none; cursor: pointer;
      text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px; transition: color .3s;
    }
    .btn-ghost:hover { color: var(--text); }
    .btn-ghost svg { transition: transform .3s; }
    .btn-ghost:hover svg { transform: translateX(5px); }

    /* Hero Right — Format pills stack */
    .hero-right { display: flex; flex-direction: column; gap: 14px; }

    .format-pill {
      display: flex; align-items: center; gap: 16px;
      padding: 18px 22px;
      background: rgba(11,13,28,0.9);
      border: 1px solid var(--cyan-b);
      backdrop-filter: blur(20px);
      opacity: 0; transform: translateX(40px);
      transition: opacity .6s ease, transform .6s ease, border-color .3s;
    }
    .format-pill:nth-child(1) { transition-delay: .4s; }
    .format-pill:nth-child(2) { transition-delay: .55s; margin-left: 24px; }
    .format-pill:nth-child(3) { transition-delay: .7s; }
    .format-pill:nth-child(4) { transition-delay: .85s; margin-left: 24px; }
    .format-pill.in { opacity: 1; transform: translateX(0); }
    .format-pill:hover { border-color: var(--cyan); }

    .pill-ico {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--cyan-dim); border: 1px solid var(--cyan-b);
      display: flex; align-items: center; justify-content: center;
    }
    .pill-label { font-family: var(--mono); font-size: 12px; color: var(--cyan); letter-spacing: 1px; }
    .pill-desc  { font-size: 11px; color: var(--text3); margin-top: 3px; }

    /* ─── STATS BAR ─── */
    .stats-bar {
      display: flex; flex-wrap: wrap;
      background: var(--bg-1);
      border-top: 1px solid var(--cyan-b);
      border-bottom: 1px solid var(--cyan-b);
    }
    .stat-item {
      flex: 1; min-width: 160px;
      padding: 36px 24px; text-align: center;
      border-right: 1px solid var(--cyan-b);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--display);
      font-size: 50px; font-weight: 700; line-height: 1;
      color: var(--cyan);
    }
    .stat-lbl {
      font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--text3);
      margin-top: 8px;
    }

    /* ─── SECTION COMMONS ─── */
    section { padding: 120px 6%; }
    .sec-tag {
      display: block; font-family: var(--mono);
      font-size: 10px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--cyan);
      margin-bottom: 14px;
    }
    .sec-title {
      font-family: var(--display);
      font-size: clamp(38px, 4vw, 68px);
      font-weight: 700; line-height: 1.04;
      color: var(--text);
    }
    .sec-desc {
      font-size: 15px; line-height: 1.85;
      color: var(--text2); max-width: 520px;
    }

    /* ─── SERVICES ─── */
    .services { background: var(--bg); }
    .svc-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 56px;
      flex-wrap: wrap; gap: 28px;
    }
    .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

    .svc-card {
      background: var(--bg-1); padding: 52px 44px;
      position: relative; overflow: hidden; cursor: default;
      border: 1px solid transparent;
      transition: background .4s, border-color .4s;
    }
    .svc-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(140deg, var(--cyan-dim), transparent 55%);
      opacity: 0; transition: opacity .4s;
    }
    .svc-card:hover { background: var(--bg-2); border-color: var(--cyan-b); }
    .svc-card:hover::before { opacity: 1; }

    .svc-card.hero-card {
      grid-column: 1 / -1;
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 60px; align-items: center;
    }

    .svc-num {
      font-family: var(--mono); font-size: 10px;
      color: var(--text3); letter-spacing: 2px; margin-bottom: 24px;
    }
    .svc-ico {
      width: 56px; height: 56px;
      border: 1px solid var(--cyan-b);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 26px;
      transition: border-color .3s, background .3s;
    }
    .svc-card:hover .svc-ico { border-color: var(--cyan); background: var(--cyan-dim); }

    .svc-name {
      font-family: var(--display); font-size: 30px;
      font-weight: 700; color: var(--text);
      margin-bottom: 14px; letter-spacing: .3px; line-height: 1.1;
    }
    .svc-desc { font-size: 14px; color: var(--text2); line-height: 1.85; margin-bottom: 28px; }

    .svc-tags { display: flex; gap: 7px; flex-wrap: wrap; }
    .svc-tag {
      font-family: var(--mono); font-size: 9px;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--cyan); border: 1px solid var(--cyan-b);
      padding: 4px 10px; background: var(--cyan-dim);
    }

    /* Rotating wireframe cube */
    .cube-wrap { perspective: 900px; width: 200px; height: 200px; margin: auto; }
    .cube {
      width: 100%; height: 100%;
      position: relative; transform-style: preserve-3d;
      animation: spin-cube 14s linear infinite;
    }
    @keyframes spin-cube {
      from { transform: rotateX(18deg) rotateY(0); }
      to   { transform: rotateX(18deg) rotateY(360deg); }
    }
    .cf {
      position: absolute; width: 200px; height: 200px;
      border: 1px solid rgba(0,222,255,.28);
      background: rgba(0,222,255,.025);
    }
    .cf.f { transform: translateZ(100px); }
    .cf.bk{ transform: rotateY(180deg) translateZ(100px); }
    .cf.r { transform: rotateY(90deg)  translateZ(100px); }
    .cf.l { transform: rotateY(-90deg) translateZ(100px); }
    .cf.t { transform: rotateX(90deg)  translateZ(100px); }
    .cf.bt{ transform: rotateX(-90deg) translateZ(100px); }

    /* Corner dots on cube faces */
    .cf::before, .cf::after {
      content: '';
      position: absolute;
      width: 6px; height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      top: -3px; left: -3px;
      box-shadow: calc(200px + 0px) 0 var(--cyan),
                  0 calc(200px + 0px) var(--cyan),
                  calc(200px + 0px) calc(200px + 0px) var(--cyan);
      opacity: .6;
    }
    .cf::after { display: none; }

    /* ─── FORMATS SHOWCASE ─── */
    .formats-section {
      background: var(--bg-1);
      padding: 80px 6%;
      border-top: 1px solid var(--cyan-b);
      border-bottom: 1px solid var(--cyan-b);
    }
    .formats-head { text-align: center; margin-bottom: 48px; }
    .fmt-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      border: 1px solid var(--cyan-b);
      gap: 1px; background: var(--cyan-b);
    }
    .fmt-block {
      background: var(--bg-1); padding: 44px 28px;
      text-align: center;
      transition: background .3s;
      position: relative; overflow: hidden;
    }
    .fmt-block::after {
      content: '';
      position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 0; height: 2px;
      background: var(--cyan);
      transition: width .4s;
    }
    .fmt-block:hover { background: var(--bg-2); }
    .fmt-block:hover::after { width: 60%; }
    .fmt-ext {
      font-family: var(--display); font-size: 44px;
      font-weight: 700; color: var(--cyan);
      letter-spacing: 2px; line-height: 1; margin-bottom: 10px;
    }
    .fmt-name {
      font-size: 10px; color: var(--text3);
      text-transform: uppercase; letter-spacing: 2px;
      margin-bottom: 18px;
    }
    .fmt-use { font-size: 13px; color: var(--text2); line-height: 1.65; }

    /* ─── PROCESS ─── */
    .process { background: var(--bg); }
    .process-head { text-align: center; max-width: 580px; margin: 0 auto 80px; }
    .steps {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; top: 38px;
      left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan-b) 20%, var(--cyan) 50%, var(--cyan-b) 80%, transparent);
    }
    .step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
    .step-circle {
      width: 76px; height: 76px; border-radius: 50%;
      border: 1px solid var(--cyan-b);
      background: var(--bg-1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 32px;
      font-family: var(--mono); font-size: 14px;
      color: var(--cyan);
      transition: all .35s;
    }
    .step:hover .step-circle {
      background: var(--cyan); color: var(--bg);
      border-color: var(--cyan);
      box-shadow: 0 0 28px rgba(0,222,255,.35);
    }
    .step-title {
      font-family: var(--display); font-size: 20px;
      font-weight: 600; color: var(--text); margin-bottom: 12px;
    }
    .step-desc { font-size: 13px; color: var(--text2); line-height: 1.75; }

    /* ─── WHY US ─── */
    .why { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
    .why-l {
      background: var(--bg);
      padding: 120px 6% 120px 8%;
      border-right: 1px solid var(--cyan-b);
    }
    .why-r {
      background: var(--bg-1);
      padding: 100px 7% 100px 5%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 22px 20px; border: 1px solid transparent;
      transition: all .3s; margin-bottom: 6px;
    }
    .why-item:hover { border-color: var(--cyan-b); background: var(--bg-2); }
    .why-check {
      width: 22px; height: 22px; flex-shrink: 0;
      border: 1px solid var(--cyan);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; color: var(--cyan); margin-top: 2px;
    }
    .why-item strong {
      display: block; font-family: var(--display);
      font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 6px;
    }
    .why-item p { font-size: 13px; color: var(--text2); line-height: 1.75; }

    /* ─── TESTIMONIAL BAR ─── */
    .quote-bar {
      background: var(--bg-2);
      border-top: 1px solid var(--cyan-b);
      border-bottom: 1px solid var(--cyan-b);
      padding: 56px 6%;
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background-image: none;
    }
    .qt-item {
      padding: 40px 36px; background: var(--bg-2);
      border: 1px solid var(--cyan-b);
      position: relative;
      transition: border-color .3s;
    }
    .qt-item:hover { border-color: var(--cyan); }
    .qt-text {
      font-size: 14px; color: var(--text2); line-height: 1.85;
      margin-bottom: 24px; font-style: italic;
    }
    .qt-text::before { content: '"'; color: var(--cyan); font-size: 28px; line-height: .5; display: block; margin-bottom: 14px; }
    .qt-author { font-family: var(--mono); font-size: 11px; color: var(--cyan); letter-spacing: 1px; }
    .qt-role { font-size: 11px; color: var(--text3); margin-top: 4px; }

    /* ─── CTA ─── */
    .cta {
      background: var(--bg);
      padding: 130px 6%;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,222,255,.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta .sec-tag { text-align: center; }
    .cta .sec-title { text-align: center; max-width: 660px; margin: 0 auto 20px; }
    .cta .sec-desc { text-align: center; margin: 0 auto 48px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg-1);
      border-top: 1px solid var(--cyan-b);
      padding: 72px 6% 40px;
    }
    .ft-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 64px;
    }
    .ft-logo {
      font-family: var(--display); font-size: 20px;
      font-weight: 700; letter-spacing: 4px;
      color: var(--text); text-decoration: none;
      display: block; margin-bottom: 14px;
    }
    .ft-logo span { color: var(--cyan); }
    .ft-brand p { font-size: 13px; color: var(--text2); line-height: 1.85; max-width: 260px; }
    .ft-col h4 {
      font-family: var(--mono); font-size: 9px;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--text3); margin-bottom: 20px;
    }
    .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .ft-col ul a {
      font-size: 13px; color: var(--text2);
      text-decoration: none; transition: color .3s;
    }
    .ft-col ul a:hover { color: var(--cyan); }
    .ft-bottom {
      display: flex; justify-content: space-between;
      border-top: 1px solid var(--cyan-b); padding-top: 28px;
      flex-wrap: wrap; gap: 12px;
    }
    .ft-copy { font-family: var(--mono); font-size: 11px; color: var(--text3); }

    /* ─── SCROLL REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1080px) {
      nav { gap: 20px; }
      .nav-links { gap: 22px; }
      .nav-tool { min-width: auto; }
      .hero-inner    { grid-template-columns: 1fr; }
      .hero-right    { display: none; }
      .svc-grid      { grid-template-columns: 1fr; }
      .svc-card.hero-card { grid-column: 1; grid-template-columns: 1fr; }
      .cube-wrap     { display: none; }
      .steps         { grid-template-columns: 1fr 1fr; gap: 48px; }
      .steps::before { display: none; }
      .why           { grid-template-columns: 1fr; }
      .why-l         { border-right: none; border-bottom: 1px solid var(--cyan-b); padding: 80px 6%; }
      .why-r         { padding: 60px 6% 80px; }
      .fmt-grid      { grid-template-columns: 1fr 1fr; }
      .ft-grid       { grid-template-columns: 1fr 1fr; }
      .quote-bar     { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-actions { gap: 8px; }
      .nav-tool,
      .nav-cta { padding: 9px 12px; font-size: 10px; letter-spacing: 1px; }
      section, .formats-section { padding: 80px 5%; }
      h1 { font-size: 44px; }
      .sec-title { font-size: 34px; }
      .steps { grid-template-columns: 1fr; }
      .fmt-grid { grid-template-columns: 1fr 1fr; }
      .ft-grid { grid-template-columns: 1fr; }
      .stat-item { min-width: 50%; border-bottom: 1px solid var(--cyan-b); }
    }
/* Studio Dot 3D split-page support */
.page-solo { padding-top: 70px; min-height: 100vh; }
.page-solo .services,
.page-solo .process,
.page-solo .cta { padding-top: 120px; }
.page-solo .formats-section,
.page-solo .why,
.page-solo .quote-bar { margin-top: 0; }
.page-solo .cta { min-height: calc(100vh - 70px); display: flex; flex-direction: column; justify-content: center; }
.logo { white-space: nowrap; }
.logo .brand-word { color: var(--text); }
.logo .brand-dot { color: var(--cyan); }
@media (max-width: 768px) { .page-solo { padding-top: 0; } }

/* Studio Dot 3D brand tuning */
.logo, .ft-logo { letter-spacing: 2px; }
.logo span, .ft-logo span { margin-left: 6px; }
