/* ============================================================
   LumenWorx — Shared Stylesheet · Warm Lumen Theme
   LumenWorx LLC · lumenworxllc.com
   ============================================================ */

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

:root {
  --ink:          #faf5ec;   /* page background — warm cream        */
  --deep:         #f2e8d4;   /* footer / alt section background     */
  --surface:      #ece1cb;   /* card surfaces                       */
  --surface2:     #e2d4b6;   /* deeper card / pill backgrounds      */
  --border:       rgba(155,115,45,0.18);
  --gold:         #9a6c14;   /* primary accent — dark amber         */
  --gold-light:   #b88024;   /* hover / lighter accent              */
  --cream:        #c49850;   /* warm mid-tone                       */
  --cream-bright: #3a2810;   /* eyebrow / label text                */
  --ember:        #c8501c;   /* orange accent                       */
  --text:         #1c1228;   /* primary body text                   */
  --muted:        #6a5840;   /* secondary / placeholder text        */
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--ink);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Ambient Orbs ---------------------------------------- */
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(110px); pointer-events: none; z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,155,60,0.13) 0%, transparent 70%);
  top: -180px; left: -180px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,175,80,0.09) 0%, transparent 70%);
  bottom: 0; right: -120px; animation-delay: -6s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(210,120,45,0.08) 0%, transparent 70%);
  top: 40%; left: 40%; animation-delay: -12s;
}

@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px,30px) scale(1.1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Navigation ------------------------------------------ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(250,245,236,0.97) 75%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem;
  color: var(--gold); letter-spacing: 0.04em; text-decoration: none;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 2.5rem; }
nav a.nav-link {
  font-family: 'Fraunces', serif; font-size: 0.78rem;
  letter-spacing: 0.15em; color: var(--muted);
  text-decoration: none; text-transform: uppercase; transition: color 0.3s;
}
nav a.nav-link:hover,
nav a.nav-link.active { color: var(--gold); }

/* ---- Page Hero ------------------------------------------- */
.page-hero {
  position: relative; z-index: 1;
  padding: 10rem 2rem 5rem; text-align: center;
}
.page-hero .eyebrow {
  font-family: 'Fraunces', serif; font-size: 0.72rem;
  letter-spacing: 0.35em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(2rem,5vw,3.8rem); color: var(--gold); margin-bottom: 1rem;
}
.page-hero p {
  max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 1rem;
}

/* ---- Section Divider ------------------------------------- */
.section-divider {
  position: relative; z-index: 1; text-align: center; padding: 1rem 0;
}
.section-divider::before,
.section-divider::after {
  content: ''; display: inline-block; width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
  vertical-align: middle; margin: 0 1rem;
}
.section-divider::after { background: linear-gradient(to left, transparent, var(--border)); }
.section-divider span {
  font-family: 'Fraunces', serif; font-size: 0.68rem;
  letter-spacing: 0.4em; color: var(--muted); text-transform: uppercase;
}

/* ---- Sections -------------------------------------------- */
section {
  position: relative; z-index: 1;
  padding: 5rem 2rem; max-width: 1100px; margin: 0 auto;
}
.section-label {
  font-family: 'Fraunces', serif; font-size: 0.68rem;
  letter-spacing: 0.4em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(1.5rem,3vw,2.4rem); color: var(--gold);
  margin-bottom: 1.5rem; line-height: 1.2;
}

/* ---- Cards ----------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--cream), var(--gold), var(--ember));
  opacity: 0; transition: opacity 0.3s;
}
.card:hover {
  border-color: rgba(155,115,45,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155,115,45,0.1);
}
.card:hover::before { opacity: 1; }

/* ---- Button ---------------------------------------------- */
.btn {
  display: inline-block; font-family: 'Fraunces', serif;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.85rem 2.5rem; text-decoration: none;
  position: relative; overflow: hidden;
  transition: color 0.3s; cursor: pointer; background: transparent;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease; z-index: -1;
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: scaleX(1); }

/* ---- Tags ------------------------------------------------ */
.tag {
  display: inline-block; font-family: 'Fraunces', serif;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border: 1px solid; margin-bottom: 1rem;
}
.tag-live     { color: #1e7a42; border-color: rgba(30,122,66,0.35); }
.tag-testing  { color: #9a6c14; border-color: rgba(154,108,20,0.4); }
.tag-soon     { color: var(--muted); border-color: rgba(106,88,64,0.35); }

/* ---- Footer ---------------------------------------------- */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem; text-align: center;
  background: var(--deep);
}
.footer-logo {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem;
  color: var(--gold); margin-bottom: 0.75rem;
}
.footer-nav {
  display: flex; justify-content: center; gap: 2rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Fraunces', serif; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.85rem; color: var(--muted); }
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ---- App Link -------------------------------------------- */
.app-link {
  display: inline-block; font-family: 'Fraunces', serif;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(154,108,20,0.35); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.app-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ---- Policy Pages ---------------------------------------- */
.policy-body { max-width: 740px; }
.policy-body h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem;
  color: var(--gold); margin: 2.5rem 0 0.75rem; letter-spacing: 0.03em;
}
.policy-body p {
  color: var(--muted); font-size: 0.95rem;
  margin-bottom: 1.1rem; line-height: 1.85;
}
.policy-body ul { list-style: none; margin-bottom: 1.1rem; padding: 0; }
.policy-body ul li {
  color: var(--muted); font-size: 0.95rem;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative; line-height: 1.7;
}
.policy-body ul li::before {
  content: '✦'; color: var(--gold); font-size: 0.45rem;
  position: absolute; left: 0; top: 0.65rem;
}
.policy-body a { color: var(--gold); text-decoration: none; }
.policy-body a:hover { color: var(--gold-light); }
.policy-meta {
  background: var(--surface); border: 1px solid var(--border);
  padding: 1.25rem 1.5rem; margin-bottom: 3rem;
  display: inline-flex; gap: 3rem; flex-wrap: wrap;
}
.policy-meta-item span:first-child {
  font-family: 'Fraunces', serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 0.2rem;
}
.policy-meta-item span:last-child { font-size: 0.85rem; color: var(--text); }
.highlight-box {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 1.5rem 0;
}
.highlight-box p {
  margin: 0; font-family: 'Fraunces', serif;
  font-size: 0.95rem; color: var(--gold); letter-spacing: 0.02em;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
}
