:root{
    --bg: #03060C;
    --text: #EAF2FF;
    --muted: rgba(234,242,255,0.78);
    --faint: rgba(234,242,255,0.10);
    --accent: #19FF8C;
    --accentGlowA: rgba(25,255,140,0.55);
    --accentGlowB: rgba(25,255,140,0.30);
   }
   
   *{ box-sizing: border-box; }
   
   html{
    scroll-behavior: smooth;
   }
   
   /* Prevent anchor jump without shifting layout */
   .section{
    scroll-margin-top: 140px;
   }
   
   body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
   }
   
   /* ============================= */
   /* ===== Frame ================= */
   /* ============================= */
   
   .frame{
    position: relative;
    min-height: 100vh;
    padding: 60px 80px;
    overflow: hidden;
   }
   
   .frame::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
      to bottom,
      #03060C 0%,
      rgba(3,6,12,0.88) 58%,
      rgba(3,6,12,0) 100%
    );
    pointer-events: none;
    z-index: 1;
   }
   
   /* ============================= */
   /* ===== Big Bang Layer ======== */
   /* ============================= */
   
   .bigbang-container{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
   }
   
   .bigbang{
    position: absolute;
    left: 50%;
    top: 21%;
    width: 102%;
    max-width: none;
    opacity: 0.66; /* Slightly richer */
    mix-blend-mode: screen;
    filter: saturate(1.08) contrast(1.05) brightness(1.04);
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease;
   }
   
   body.focus-mode .bigbang-container{
    display: none;
   }
   
   /* ============================= */
   /* ===== Header ================ */
   /* ============================= */
   
   .top{
    display:flex;
    justify-content: space-between;
    align-items:center;
    position: relative;
    z-index: 3;
   }
   
   .brand{
    display:flex;
    align-items:center;
    gap: 18px;
   }
   
   .logo{
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px var(--accentGlowA));
    transition: transform 0.4s ease;
   }
   
   .logo:hover{
    transform: scale(1.05);
   }
   
   .wordmark{
    letter-spacing: 0.45em;
    font-weight: 600;
    font-size: 20px;
   }
   
   /* ============================= */
   /* ===== Navigation ============ */
   /* ============================= */
   
   .nav a{
    position: relative;
    color: var(--text);
    text-decoration: none;
    margin-left: 22px;
    opacity: 0.82;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding-bottom: 6px;
    transition: 0.3s ease;
   }
   
   .nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:1px;
    background: var(--accent);
    transition: width 0.3s ease;
   }
   
   .nav a:hover{
    opacity:1;
    color: var(--accent);
   }
   
   .nav a:hover::after{
    width:100%;
   }
   
   /* ============================= */
   /* ===== Focus Controls ======== */
   /* ============================= */
   
   .focus-controls{
    display: none;
    position: relative;
    z-index: 3;
    margin-top: 22px;
   }
   
   .back-home{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(25,255,140,0.28);
    background: rgba(6,10,18,0.65);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
   }
   
   .back-home:hover{
    border-color: rgba(25,255,140,0.6);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accentGlowB);
   }
   
   /* ============================= */
   /* ===== Hero ================== */
   /* ============================= */
   
   .hero{
    margin-top: 160px;
    max-width: 900px;
    padding-left: 56px;
    position: relative;
    z-index: 2;
    min-height: 60vh;
   }
   
   .hero::before{
    content:"";
    position:absolute;
    top:-90px;
    left:-140px;
    width: 920px;
    height: 620px;
    background: radial-gradient(
      circle at center,
      rgba(3,6,12,0.82) 0%,
      rgba(3,6,12,0.60) 45%,
      rgba(3,6,12,0.0) 80%
    );
    z-index:-1;
    pointer-events:none;
   }
   
   .hero h1{
    font-size: 84px;
    margin: 0 0 24px;
    font-weight: 760;
    line-height: 1.03;
    letter-spacing: -0.02em;
   }
   
   .hero p{
    font-size: 20px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
   }
   
   .button{
    display:inline-block;
    margin-top: 40px;
    padding: 16px 30px;
    border: 1px solid rgba(25,255,140,0.75);
    border-radius: 16px;
    text-decoration: none;
    color: var(--accent);
    transition: 0.3s ease;
   }
   
   .button:hover{
    background: var(--accent);
    color: #06120B;
    box-shadow: 0 0 35px var(--accentGlowA);
   }
   
   /* ============================= */
   /* ===== Sections ============== */
   /* ============================= */
   
   .section{
    margin-top: 220px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding-left: 56px;
   }
   
   .section h2{
    font-size: 32px;
    margin: 0 0 14px;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-block;
   }
   
   .section h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
   }
   
   .lead{
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 850px;
    margin: 0 0 26px;
   }
   
   /* ============================= */
   /* ===== Cards ================== */
   /* ============================= */
   
   .cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
   }
   
   .card{
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(
      145deg,
      rgba(12,18,28,0.75),
      rgba(8,12,20,0.65)
    );
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
   }
   
   .card:hover{
    border-color: rgba(25,255,140,0.45);
    box-shadow:
      0 12px 50px rgba(0,0,0,0.50),
      0 0 40px rgba(25,255,140,0.15);
    transform: translateY(-6px);
   }
   
   /* ============================= */
   /* ===== Contact Tiles ========= */
   /* ============================= */
   
   .contact-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
   }
   
   .contact-tile{
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(
      145deg,
      rgba(10,16,24,0.85),
      rgba(6,10,18,0.72)
    );
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
   }
   
   .contact-tile:hover{
    border-color: rgba(25,255,140,0.5);
    box-shadow:
      0 14px 60px rgba(0,0,0,0.55),
      0 0 45px rgba(25,255,140,0.18);
    transform: translateY(-5px);
   }
   
   .contact-label{
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(234,242,255,0.55);
    margin-bottom: 12px;
   }
   
   .contact-value{
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
   }
   
   .contact-value:hover{
    color: var(--accent);
   }
   
   /* ============================= */
   /* ===== Focus Mode ============ */
   /* ============================= */
   
   body.focus-mode .hero{
    display: none;
   }
   
   body.focus-mode .section{
    display: none;
   }
   
   body.focus-mode .focus-controls{
    display: block;
   }
   
   body.focus-mode .section.is-active{
    display: block;
    margin-top: 110px;
    min-height: 70vh;
    animation: focusIn 280ms ease-out both;
   }
   
   @keyframes focusIn{
    from{ opacity: 0; transform: translateY(10px); }
    to{ opacity: 1; transform: translateY(0); }
   }
   
   /* ============================= */
   /* ===== Mobile Only Fixes ===== */
   /* ============================= */
   
   @media (max-width: 980px){
   
    .frame{
      padding: 40px 22px;
    }
   
    .hero{
      margin-top: 120px;
      padding-left: 0;
    }
   
    .hero h1{
      font-size: 48px;
      line-height: 1.08;
    }
   
    .hero p{
      font-size: 18px;
      max-width: 100%;
    }
   
    .section{
      padding-left: 0;
      margin-top: 140px;
    }
   
    .cards{
      grid-template-columns: 1fr;
    }
   
    .logo{
      width: 64px;
      height: 64px;
    }
   
    .wordmark{
      font-size: 16px;
    }
   
    .nav a{
      margin-left: 14px;
      font-size: 13px;
    }
   
    .bigbang{
      width: 130%;
      top: 19%;
      opacity: 0.55;
    }
   }