/* Base */
html, body { height: 100%; }
body{
  font-family: var(--font);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(255,107,138,.18), transparent 60%),
    radial-gradient(700px 420px at 88% 18%, rgba(45,228,168,.14), transparent 55%),
    radial-gradient(900px 520px at 50% 92%, rgba(122,162,255,.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #050812 100%);
  color: var(--text);
}

/* Accessibility */
.skip-link{
  position:absolute; left:-999px; top:10px;
  background: var(--accent);
  color:#160612;
  padding:10px 14px;
  border-radius: 999px;
  z-index:9999;
  box-shadow: var(--shadow2);
}
.skip-link:focus{ left:12px; outline:none; }

a{ color: inherit; }
.link-soft{ color: rgba(234,240,255,.9); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.18); }
.link-soft:hover{ border-bottom-color: rgba(255,255,255,.45); }

.text-soft{ color: rgba(234,240,255,.72); }
.text-muted{ color: var(--muted) !important; }

/* Header / Nav */
.site-header{ backdrop-filter: blur(10px); }
.nav-glass{
  background: linear-gradient(180deg, rgba(10,14,26,.78), rgba(10,14,26,.46));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .nav-link{
  color: rgba(234,240,255,.82);
  border-radius: 999px;
  padding: .45rem .8rem;
}
.navbar .nav-link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.95);
}
.navbar .nav-link.active{
  background: rgba(255,107,138,.14);
  border: 1px solid rgba(255,107,138,.25);
  color: rgba(234,240,255,.98);
}

.navbar-brand{ letter-spacing: .2px; }
.brand-sub{ font-size: .78rem; color: rgba(234,240,255,.6); margin-left: .35rem; }

.brand-mark{
  width: 28px; height: 28px; display:inline-grid; place-items:center;
  position: relative;
}
.brand-mark .mark-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 40%, rgba(255,107,138,.9) 72%);
  box-shadow: 0 0 0 6px rgba(255,107,138,.08), 0 0 0 12px rgba(255,107,138,.05);
}
.brand-mark .mark-seal{
  position:absolute; inset: -2px;
  border-radius: 10px 18px 12px 18px;
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(8deg);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}

/* Buttons */
.btn-accent{
  background: linear-gradient(90deg, rgba(255,107,138,1), rgba(255,211,110,1));
  border: none;
  color: #160612;
  box-shadow: 0 14px 40px rgba(255,107,138,.22);
}
.btn-accent:hover{ filter: brightness(1.02); transform: translateY(-1px); }

.btn-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.92);
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* Hero / Decorative */
.hero{
  position: relative;
  overflow: hidden;
}
.bg-origami{
  position:absolute; inset:0;
  pointer-events:none;
}
.bg-origami .orb{
  position:absolute;
  width: 440px; height: 440px;
  filter: blur(24px);
  opacity: .75;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  transform: rotate(12deg);
}
.bg-origami .orb-a{ left:-140px; top:-140px; background: rgba(255,107,138,.28); }
.bg-origami .orb-b{ right:-170px; top:-120px; background: rgba(45,228,168,.22); }
.bg-origami .orb-c{ left: 52%; bottom: -220px; background: rgba(122,162,255,.18); transform: translateX(-50%) rotate(-10deg); }

.bg-origami .grid-lines{
  position:absolute; inset:-40px;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,.9), transparent 68%);
  opacity: .22;
}

.bg-origami .seal-ring{
  position:absolute; right: 10%; bottom: 18%;
  width: 220px; height: 220px;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.22);
  box-shadow: 0 0 0 10px rgba(255,107,138,.06), 0 0 0 22px rgba(45,228,168,.05);
  transform: rotate(12deg);
}

/* Section cut */
.section-cut{
  position:absolute; left:0; right:0; bottom:-1px;
  height: 84px;
}
.section-cut svg{ width:100%; height:100%; display:block; }
.section-cut path{ fill: rgba(255,255,255,.04); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.82);
  font-size: .85rem;
}
.eyebrow::before{
  content:"";
  width:10px; height:10px; border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent3));
  box-shadow: 0 0 0 5px rgba(255,107,138,.08);
}

.hero-card, .side-card, .footer-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow2);
}

.hero-card{
  position: relative;
  overflow:hidden;
}
.hero-card::after{
  content:"";
  position:absolute; inset:-2px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(420px 280px at 16% 18%, rgba(255,107,138,.18), transparent 60%),
    radial-gradient(420px 280px at 86% 14%, rgba(45,228,168,.14), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.cut-card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px 26px 18px 26px;
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  position: relative;
  overflow:hidden;
}
.cut-card::before{
  content:"";
  position:absolute; top:-34px; right:-34px;
  width: 120px; height: 120px;
  background: rgba(255,211,110,.10);
  border-radius: 30% 70% 50% 50% / 55% 40% 60% 45%;
  filter: blur(2px);
}
.li-dot{ position:relative; padding-left: 1.15rem; }
.li-dot::before{
  content:"";
  width:8px; height:8px; border-radius: 999px;
  position:absolute; left:0; top:.55rem;
  background: rgba(255,107,138,.9);
}

/* Icons (inline) */
.icon-badge{
  width: 42px; height: 42px;
  border-radius: 16px 22px 16px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
}
.icon-badge svg{ opacity: .95; }

.feature-card{
  height:100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.feature-card:hover{ transform: translateY(-2px); transition: transform .18s ease; }

.plan{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(16,29,58,.72), rgba(16,29,58,.36));
  box-shadow: var(--shadow2);
  overflow:hidden;
  position: relative;
}
.plan::after{
  content:"";
  position:absolute; inset: -2px;
  background: radial-gradient(480px 240px at 20% 0%, rgba(255,107,138,.14), transparent 60%),
              radial-gradient(520px 260px at 86% 0%, rgba(45,228,168,.12), transparent 60%);
  pointer-events:none;
}
.plan .inner{ position:relative; z-index:1; }
.plan .tag{
  display:inline-flex;
  padding:.25rem .6rem;
  border-radius:999px;
  background: rgba(255,211,110,.12);
  border: 1px solid rgba(255,211,110,.20);
  color: rgba(234,240,255,.9);
  font-size: .8rem;
}

.note-strip{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: .65rem .85rem;
  display:flex;
  align-items:center;
  gap:.65rem;
}
.note-dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(45,228,168,.9);
  box-shadow: 0 0 0 5px rgba(45,228,168,.10);
}

.divider-soft{ height:1px; background: rgba(255,255,255,.10); }

/* Forms */
.form-control, .form-select{
  background: rgba(8,12,22,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(234,240,255,.92);
  border-radius: 14px;
}
.form-control::placeholder{
  color: rgba(234,240,255,.62);
}
.form-control:focus, .form-select:focus{
  background: rgba(8,12,22,.62);
  color: rgba(234,240,255,.96);
  border-color: rgba(255,107,138,.55);
  box-shadow: 0 0 0 .25rem rgba(255,107,138,.15);
}
.form-text{ color: rgba(184,196,231,.85); }

.inline-success{
  display:none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(45,228,168,.10);
  border: 1px solid rgba(45,228,168,.22);
  color: rgba(234,240,255,.92);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(10,14,26,.35), rgba(10,14,26,.6));
}
.footer-links a{
  text-decoration:none;
  color: rgba(234,240,255,.86);
}
.footer-links a:hover{ color: rgba(234,240,255,.98); text-decoration: underline; text-underline-offset: 4px; }

.social-pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color: rgba(234,240,255,.9);
}
.social-pill:hover{ background: rgba(255,255,255,.08); }

/* Reveal */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.revealed{ opacity: 1 !important; transform: translateY(0) !important; }

@media (min-width: 992px){
  .py-lg-6{ padding-top: 5rem !important; padding-bottom: 5rem !important; }
}
