:root{
  --bg: #0b0d10;
  --line: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --panel: rgba(255,255,255,0.06);

  --orange: #d7773f;   /* muted orange */
  --orange2: #b86838;
}

html, body { height: 100%; }

body{
  color: var(--text);
  background:
    radial-gradient(900px 700px at 50% 26%, rgba(215,119,63,0.22), transparent 60%),
    var(--bg);
}

/* ===== GRID NUCLEAR TEST (temporary) ===== */
body.has-grid::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    linear-gradient(to right, rgba(215, 119, 63, 1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(215, 119, 63, 1) 1px, transparent 1px);

  background-size: 72px 72px;
  background-position: 0 0;

  opacity: 0.3;

  -webkit-mask-image: radial-gradient(circle at 50% 25%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0) 85%);
  mask-image: radial-gradient(circle at 50% 25%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0) 85%);
}




.wrap{
  min-height: 100vh;
  padding: 2rem 0 3rem;
}

.frame{
  max-width: 980px;
  margin: 0 auto;
}

.glass{
  background: rgba(8,10,14,0.82);  /* much more solid */
  backdrop-filter: blur(2px);      /* subtle depth */
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1em;
}

.brand{
  font-weight: 650;
  font-size: 1.15rem;
}

.nav-pill{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .6rem;
  gap: .35rem;
}

.nav-link{
  color: rgba(255,255,255,0.70) !important;
  border-radius: 999px;
  padding: .45rem .85rem;
  font-weight: 500;
}
.nav-link:hover{
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.badge-available{
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  color: #141414;
  font-weight: 850;
  border-radius: 999px;
  padding: .55rem .9rem;
  box-shadow: 0 10px 30px rgba(215,119,63,0.25);
  user-select: none;
}

/* HERO */
.hero-title{
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  margin: 0;
}
.accent{ color: var(--orange); }

.hero-sub{
  color: var(--muted);
  max-width: 56ch;
}

/* buttons */
.btn-orange{
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  border: 0;
  color: #101010;
  font-weight: 900;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  box-shadow: 0 16px 40px rgba(215,119,63,0.22);
}
.btn-orange:hover{ filter: brightness(1.06); }

.btn-outline-orange{
  border: 1px solid rgba(215,119,63,0.55);
  color: rgba(255,255,255,0.90);
  border-radius: 999px;
  padding: .85rem 1.25rem;
  background: rgba(0,0,0,0.15);
}
.btn-outline-orange:hover{
  background: rgba(215,119,63,0.10);
  border-color: rgba(215,119,63,0.85);
  color: #fff;
}

.section-title{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* IMPORTANT: Custom cards (NO Bootstrap .card class) */
.card-dark{
  background: rgba(18,20,24,0.95);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  color: rgba(255,255,255,0.90);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-dark:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}

.card-accent{
  border-color: rgba(215,119,63,0.55);
  box-shadow: 0 25px 80px rgba(215,119,63,0.14);
  background:
    linear-gradient(180deg, rgba(215,119,63,0.09), rgba(255,255,255,0.045));
}
.card-accent:hover{
  border-color: rgba(215,119,63,0.75);
  box-shadow: 0 30px 90px rgba(215,119,63,0.20);
}

.badge-popular{
  display: inline-block;
  background: rgba(215,119,63,0.20);
  border: 1px solid rgba(215,119,63,0.55);
  color: rgba(255,255,255,0.92);
  font-size: .75rem;
  font-weight: 900;
  padding: .35rem .65rem;
  border-radius: 999px;
}

/* pricing typography */
.price{
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #fff;
}
.per{
  font-size: 1rem;
  font-weight: 650;
  color: rgba(255,255,255,0.65);
}
.plan-name{
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

/* readable muted text */
.text-muted-2{
  color: rgba(255,255,255,0.78) !important;
}

.soft-divider{
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
}

.footer{
  color: rgba(255,255,255,0.60);
  font-size: .95rem;
}

/* =========================================
   MOBILE FIXES
========================================= */
@media (max-width: 576px){

  /* More breathing room inside the main card */
  .glass{
    padding: 1.25rem !important;
  }

  /* Header becomes a 2-row layout */
  header{
    flex-wrap: wrap;
    gap: .75rem;
  }

  .brand{
    font-size: 1.05rem;
    line-height: 1.1;
    max-width: 55%;
  }

  /* Keep Available pill on the right, not huge */
  .badge-available{
    padding: .5rem .75rem;
    font-size: .9rem;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Stop the nav pill becoming a circle */
  .nav-pill{
    width: 100%;
    justify-content: center;
    padding: .35rem .45rem;
  }

  .nav-pill .nav-link{
    padding: .4rem .75rem;
    font-size: .95rem;
    white-space: nowrap;
  }

  /* Hero text sizing + spacing */
  .hero-title{
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-sub{
    font-size: 1rem;
    line-height: 1.55;
  }

  /* Buttons: full width, stacked, looks cleaner */
  .hero .d-flex,
  section .d-flex{
    flex-direction: column;
    align-items: stretch;
  }

  .btn-orange,
  .btn-outline-orange{
    width: 100%;
    justify-content: center;
  }

  /* Pricing cards spacing */
  #pricing .row{
    margin-top: .25rem;
  }

  .card-dark{
    border-radius: 16px;
  }
}

@media (max-width: 576px){
  body.has-grid::before{
    display: none;
  }
}

@media (max-width: 576px){

  /* Let the container use full width */
  .frame{
    max-width: none;
  }

  /* Remove the “card/frame” feel on mobile */
  .glass{
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;

    /* Optional: slightly different mobile background */
    background: rgba(8,10,14,0.96);
  }

  /* Use tighter but nice padding on mobile */
  .glass{
    padding: 1.25rem !important;
  }
}

@media (max-width: 576px){
  body{
    background:
      radial-gradient(700px 500px at 50% 10%, rgba(215,119,63,0.14), transparent 60%),
      #0b0d10;
  }
}

/* =========================================
   MOBILE: remove the framed "card" look
========================================= */
@media (max-width: 576px){

  /* Kill the centered frame width */
  .frame{
    max-width: none;
    margin: 0;
  }

  /* Make the outer container behave like a normal page wrapper */
  .glass{
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: visible !important;
  }

  /* Give the page its own padding instead */
  .wrap{
    padding: 1.25rem 0 2rem;
  }

  /* Give the content breathing room (Bootstrap container is fine) */
  .container{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 576px){
  header{
    flex-direction: row;
    align-items: center;
  }

  .nav-pill{
    display: none;
  }
}

/* =========================================
   MOBILE BACKGROUND TUNING
   Removes the muddy orange band on mobile
========================================= */
@media (max-width: 576px){
  body{
    background: #0b0d10 !important;
  }
}

@media (max-width: 576px){

  /* HERO */
  .hero-title{
    font-size: 2.15rem;
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  .hero-sub{
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* more breathing room above/below hero */
  section.py-4.py-md-5{
    padding-top: 2.25rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 576px){
  .btn-orange,
  .btn-outline-orange{
    width: 100%;
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
  }

  /* stack buttons with nice spacing */
  .d-flex.justify-content-center.gap-3.flex-wrap{
    flex-direction: column;
    align-items: stretch;
    gap: .75rem !important;
  }
}

@media (max-width: 576px){
  header{
    margin-bottom: 1rem !important;
  }

  .brand{
    font-size: 1.05rem;
  }

  .badge-available{
    padding: .5rem .75rem;
    font-size: .9rem;
    border-radius: 999px;
  }
}

@media (max-width: 576px){
  #pricing{
    padding-top: 2.5rem !important;
  }

  .card-dark{
    border-radius: 16px;
    padding: 1.25rem !important;
  }

  .price{
    font-size: 2.15rem;
  }

  /* give cards space */
  #pricing .row{
    gap: .9rem;
  }
}

@media (max-width: 576px){
  .trust-row{
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.72);
    font-size: .92rem;
  }

  .trust-row span{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    padding: .35rem .6rem;
    border-radius: 999px;
  }
}

