:root{
    --navy:#0D1B3D;
    --navy-deep:#081226;
    --gold:#C9A227;
    --gold-soft:#DCC066;
    --warm-white:#FAFAF8;
    --ivory:#F6F4EF;
    --charcoal:#2A2A27;
    --charcoal-soft:#5A5A54;
    --sage:#8A9A85;
    --pale-blue:#C6D2DE;
    --beige:#E9E2D3;
    --line:rgba(13,27,61,0.10);
    --radius:10px;
    --max:1240px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--charcoal);
    background:var(--warm-white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Manrope', sans-serif;
    font-weight:600;
    color:var(--navy);
    letter-spacing:-0.02em;
    line-height:1.15;
  }
  a{text-decoration:none; color:inherit;}
  img{max-width:100%; display:block;}
  .wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:'Manrope', sans-serif;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--gold);
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  /* ---------- BUTTONS ----------
     Kept in sync with the main site's .btn / .btn-primary base rules
     (dev.adhyarth.com/css/styles.css) so the holding page — a standalone
     file, not sharing that stylesheet — still matches the same look. */
  .btn{
    font-family:'Manrope', sans-serif;
    font-weight:600; font-size:13.5px;
    padding:12px 26px; border-radius:6px;
    cursor:pointer; border:1px solid transparent;
    transition:all 0.25s ease;
    display:inline-block;
  }
  .btn-primary{background:var(--navy); color:var(--warm-white);}
  .btn-primary:hover{background:var(--gold); color:var(--navy-deep);}

  /* ---------- HOLDING / COMING SOON ---------- */
  .holding{
    min-height:100vh;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    position:relative;
    overflow:hidden;
    padding:40px 24px;
  }
  .holding::before{
    content:''; position:absolute; top:-18%; right:-10%; width:520px; height:520px;
    border:1px solid rgba(201,162,39,0.16); border-radius:50%;
  }
  .holding::after{
    content:''; position:absolute; bottom:-22%; left:-12%; width:420px; height:420px;
    border:1px solid rgba(201,162,39,0.1); border-radius:50%;
  }
  .holding-inner{
    position:relative; z-index:1;
    max-width:560px;
    text-align:center;
    display:flex; flex-direction:column; align-items:center;
  }
  .holding-logo{
    width:104px; height:104px;
    border-radius:22px;
    overflow:hidden;
    background:var(--warm-white);
    padding:10px;
    margin-bottom:36px;
    box-shadow:0 24px 50px -18px rgba(0,0,0,0.5);
  }
  .holding-logo img{width:100%; height:100%; object-fit:contain; border-radius:14px;}
  .holding .eyebrow{color:var(--gold-soft); margin-bottom:18px;}
  .holding h1{
    color:var(--warm-white);
    font-size:clamp(32px, 5vw, 50px);
    margin-bottom:20px;
  }
  .holding h1 em{font-style:normal; color:var(--gold-soft);}
  .holding p.sub{
    color:rgba(250,250,248,0.62);
    font-size:16.5px;
    max-width:440px;
    margin-bottom:40px;
  }
  .notify-row{
    display:flex; gap:12px; width:100%; max-width:420px;
    flex-wrap:wrap; justify-content:center; margin-bottom:14px;
  }
  .notify-row input{
    flex:1 1 240px;
    padding:14px 18px; border-radius:6px; border:1px solid rgba(250,250,248,0.18);
    background:rgba(250,250,248,0.06); color:var(--warm-white);
    font-family:'Inter'; font-size:14.5px;
  }
  .notify-row input::placeholder{color:rgba(250,250,248,0.4);}
  .notify-row input:focus{outline:none; border-color:var(--gold);}
  .notify-row .btn-primary{background:var(--gold); color:var(--navy-deep); flex:0 0 auto;}
  .notify-row .btn-primary:hover{background:var(--gold-soft);}
  .notify-row .btn-primary:disabled{opacity:0.6; cursor:not-allowed;}

  /* Result message shown after submitting the notify form (success/error) */
  .notify-status{
    font-family:'Manrope', sans-serif; font-size:13px; font-weight:600;
    min-height:18px; margin-bottom:26px; opacity:0; transition:opacity 0.2s ease;
  }
  .notify-status.show{opacity:1;}
  .notify-status.success{color:var(--gold-soft);}
  .notify-status.error{color:#E08585;}

  /* Honeypot field — invisible to real visitors, catches simple bots */
  .hp-field{
    position:absolute !important;
    left:-9999px !important;
    width:1px; height:1px;
    overflow:hidden;
  }

  .holding-social{display:flex; gap:14px; margin-bottom:36px;}
  .holding-social a{
    width:38px; height:38px; border:1px solid rgba(250,250,248,0.18); border-radius:50%;
    display:flex; align-items:center; justify-content:center; transition:all 0.25s ease;
  }
  .holding-social a:hover{border-color:var(--gold); background:rgba(250,250,248,0.06);}
  .holding-foot{
    font-size:12px; color:rgba(250,250,248,0.35);
    padding-top:22px; border-top:1px solid rgba(250,250,248,0.1); width:100%;
  }