/* =========================================================
   Minalign — purple gradient sleep brand
   ========================================================= */

:root {
  /* Purple palette: dark → light */
  --p-950: #0d0719;
  --p-900: #15092b;
  --p-800: #1f0c45;
  --p-700: #2e1066;
  --p-600: #4b1ea0;
  --p-500: #6c2bd9;
  --p-400: #8b5cf6;
  --p-300: #b794f6;
  --p-200: #d6bcfa;
  --p-100: #ede4ff;
  --p-50:  #f7f2ff;

  --ink: #14081f;
  --ink-soft: #3b2a55;
  --muted: #6b5b86;
  --line: rgba(108, 43, 217, 0.14);
  --line-strong: rgba(108, 43, 217, 0.28);

  --bg: #faf7ff;
  --card: #ffffff;

  /* Brand gradients */
  --grad-hero: radial-gradient(120% 80% at 80% 0%, #b794f6 0%, #6c2bd9 35%, #2e1066 70%, #0d0719 100%);
  --grad-button: linear-gradient(135deg, #8b5cf6 0%, #6c2bd9 50%, #2e1066 100%);
  --grad-button-hover: linear-gradient(135deg, #a07cff 0%, #7d3df0 50%, #3a1480 100%);
  --grad-soft: linear-gradient(180deg, #f7f2ff 0%, #ede4ff 100%);
  --grad-text: linear-gradient(135deg, #d6bcfa 0%, #b794f6 35%, #ffffff 100%);
  --grad-strip: linear-gradient(110deg, #15092b 0%, #2e1066 50%, #6c2bd9 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(46, 16, 102, 0.08);
  --shadow:    0 12px 40px rgba(46, 16, 102, 0.14);
  --shadow-lg: 0 30px 80px rgba(15, 8, 40, 0.35);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ---------- Type ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}
h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #d6bcfa 0%, #b794f6 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.035em;
  padding: 0 0.04em 0.06em 0;
  margin: 0 -0.04em -0.06em 0;
  vertical-align: baseline;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1em; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 36ch; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--p-600);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 1.05em 2em; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-button);
  color: #fff;
  box-shadow: 0 10px 24px rgba(76, 30, 160, 0.35);
}
.btn-primary:hover {
  background: var(--grad-button-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(76, 30, 160, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--p-700);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--p-50);
  border-color: var(--p-400);
  color: var(--p-700);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.brand-mark {
  width: 56px;
  height: 1.4px;
  background: var(--grad-button);
  border-radius: 1px;
}
.brand-name {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  background: var(--grad-button);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  padding-bottom: 2px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--p-600); }
.nav-cta { padding: 0.65em 1.2em; font-size: 0.9rem; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(214, 188, 250, 0.55), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.hero-copy .eyebrow { color: var(--p-200); }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255, 255, 255, 0.82); max-width: 44ch; font-size: 1.15rem; }
.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  flex-wrap: wrap;
}
.hero-trust span {
  color: var(--p-200);
  font-weight: 700;
  margin-right: 0.4em;
}

@media (max-width: 860px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-product { order: -1; margin: 0 auto; }
}

/* Supplement bottle */

.hero-product {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.bottle {
  width: 240px;
  height: 440px;
  position: relative;
  filter: drop-shadow(0 50px 60px rgba(0,0,0,0.55));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bottle-cap {
  width: 72%;
  height: 56px;
  margin: 0 auto;
  position: relative;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px, transparent 4px),
    linear-gradient(180deg, #1a0a32 0%, #2e1066 35%, #15092b 100%);
  border-radius: 10px 10px 3px 3px;
  border: 1px solid rgba(214, 188, 250, 0.22);
  box-shadow:
    inset 0 2px 6px rgba(214, 188, 250, 0.18),
    inset 0 -8px 12px rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.bottle-cap-top {
  position: absolute;
  inset: -4px 6% auto 6%;
  height: 8px;
  background: linear-gradient(180deg, #2e1066 0%, #15092b 100%);
  border-radius: 6px 6px 2px 2px;
  border: 1px solid rgba(214, 188, 250, 0.2);
}

.bottle-neck {
  width: 78%;
  height: 14px;
  margin: -3px auto 0;
  background: linear-gradient(180deg, #15092b 0%, #0d0719 100%);
  position: relative;
  border-left: 1px solid rgba(214, 188, 250, 0.12);
  border-right: 1px solid rgba(214, 188, 250, 0.12);
  z-index: 2;
}

.bottle-body {
  width: 100%;
  height: calc(100% - 56px - 14px - 14px);
  margin-top: -1px;
  position: relative;
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(214, 188, 250, 0.25) 0%, transparent 45%),
    linear-gradient(90deg,
      #0d0719 0%,
      #1f0c45 12%,
      #4b1ea0 35%,
      #6c2bd9 50%,
      #4b1ea0 65%,
      #1f0c45 88%,
      #0d0719 100%);
  border-radius: 22px 22px 28px 28px;
  border: 1px solid rgba(214, 188, 250, 0.18);
  overflow: hidden;
  box-shadow:
    inset 0 2px 0 rgba(214, 188, 250, 0.15),
    inset 0 -20px 30px rgba(0, 0, 0, 0.4);
}
.bottle-shine {
  position: absolute;
  top: 4%;
  left: 12%;
  width: 8%;
  height: 92%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.1) 60%,
    transparent 100%);
  filter: blur(3px);
  border-radius: 50%;
  pointer-events: none;
}
.bottle-glare {
  position: absolute;
  top: 8%;
  right: 14%;
  width: 4%;
  height: 70%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.18) 0%,
    transparent 80%);
  filter: blur(2px);
  border-radius: 50%;
}

.bottle-base {
  width: 92%;
  height: 14px;
  margin: -8px auto 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 60%,
    transparent 100%);
  border-radius: 50%;
  filter: blur(6px);
}

.bottle-label {
  position: absolute;
  inset: 22% 10% auto 10%;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ff 100%);
  border-radius: 6px;
  padding: 18px 14px 18px;
  text-align: center;
  color: var(--p-800);
  box-shadow:
    inset 0 0 0 1px rgba(108, 43, 217, 0.2),
    0 6px 14px rgba(0,0,0,0.3);
}
.label-mark {
  width: 32px; height: 2px;
  border-radius: 2px;
  background: var(--grad-button);
  margin: 0 auto 10px;
}
.label-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--p-800);
  line-height: 1;
}
.label-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--p-600);
  margin-top: 8px;
  font-weight: 600;
}
.label-divider {
  width: 24px; height: 1px;
  background: var(--p-300);
  margin: 12px auto 10px;
}
.label-bullets {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 10px;
}
.label-meta {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
  padding-top: 6px;
  border-top: 1px solid rgba(108, 43, 217, 0.12);
}

/* ---------- Press strip ---------- */

.press {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.press-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.press-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.78;
}
.press-logos span {
  color: var(--p-800);
  line-height: 1;
}

/* Promise pills (replaces fake press logos) */
.promise-pills {
  gap: 0.7rem;
  opacity: 1;
}
.promise-pills span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-800);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--p-50);
  border: 1px solid var(--line);
  line-height: 1.1;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head .lede,
.section-head .muted { font-size: 1.05rem; max-width: 56ch; margin: 0 auto; }

/* Cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--p-600);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 0 1px var(--line);
}

/* How it works */
.how { background: linear-gradient(180deg, #ffffff 0%, var(--p-50) 100%); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}
.steps li {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-button);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Ingredients */
.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .ingredient-list { grid-template-columns: 1fr; }
}
.ingredient {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.ingredient h4 { margin: 0 0 0.25rem; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; }
.ingredient p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.ingredient-dose {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--grad-button);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

/* Reviews / Science section (shares the Reviews backdrop) */
.reviews { background: linear-gradient(180deg, var(--p-50) 0%, #ffffff 100%); }

.science-note {
  display: block;
  text-align: center;
  max-width: 720px;
  margin: 2.5rem auto 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Founder note */
.founder { background: var(--p-50); }
.founder-body {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.founder-body p { margin: 0 0 1.2rem; }
.founder-sig {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--p-700);
  margin-top: 2rem;
  letter-spacing: 0.01em;
}

/* Buy / plans */
.buy { background: #fff; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; }
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}
.plan h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--p-700);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.25rem 0 0.4rem;
}
.price-amt {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-button);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.price-unit { color: var(--muted); font-size: 0.95rem; }
.plan-note { color: var(--muted); margin: 0 0 0.5rem; font-size: 0.92rem; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.plan-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--p-500);
  border-bottom: 2px solid var(--p-500);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.plan .btn-block { margin-top: auto; }

.plan-featured {
  background: var(--grad-strip);
  color: #fff;
  border: 1px solid rgba(214, 188, 250, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.plan-featured h3 { color: #fff; }
.plan-featured .price-amt {
  background: linear-gradient(135deg, #ffffff 0%, #d6bcfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-featured .price-unit,
.plan-featured .plan-note { color: rgba(255,255,255,0.75); }
.plan-featured .plan-list li { color: rgba(255,255,255,0.92); }
.plan-featured .plan-list li::before {
  border-color: var(--p-200);
}
.plan-featured .btn-primary {
  background: #fff;
  color: var(--p-800);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.plan-featured .btn-primary:hover {
  background: var(--p-50);
  color: var(--p-900);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p-200);
  color: var(--p-800);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.45em 1em;
  border-radius: 999px;
  white-space: nowrap;
}

/* FAQ */
.faq { background: var(--p-50); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-list details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--p-500);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA strip */
.cta-strip {
  background: var(--grad-strip);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(183, 148, 246, 0.4), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 0;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--p-800);
}
.cta-strip .btn-primary:hover {
  background: var(--p-100);
  color: var(--p-900);
}

/* Footer */
.foot {
  background: var(--p-950);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 2rem;
}
.foot-wrap {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) {
  .foot-wrap { grid-template-columns: 1fr; }
}
.foot-brand .brand { align-items: flex-start; gap: 6px; }
.foot-brand .brand-name {
  font-size: 2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  padding-bottom: 2px;
}
.foot-brand .brand-mark { width: 76px; background: var(--grad-text); }
.foot-brand p { margin-top: 0.5rem; color: rgba(255,255,255,0.55); }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 540px) {
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}
.foot h5 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
}
.foot-cols a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: color .15s ease;
}
.foot-cols a:hover { color: var(--p-200); }
.foot-fine {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}
.foot-fine .small { color: rgba(255,255,255,0.45); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--p-900);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(214, 188, 250, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
