/* ========================================================
   Common Ground — Styles
   ======================================================== */

/* --- Tokens --- */
:root {
  --c-navy:    #071a21;
  --c-teal:    #0a2f3c;
  --c-teal-l:  #134358;
  --c-gold:    #c8943e;
  --c-gold-h:  #daa84f;
  --c-gold-s:  rgba(200, 148, 62, .12);
  --c-bg:      #faf9f6;
  --c-bg-tint: #f2f0eb;
  --c-txt:     #1e1e1e;
  --c-txt-2:   #5a5a5a;
  --c-txt-3:   #8a8a8a;
  --c-border:  #e4e0da;
  --c-white:   #fff;

  --f-head:  'Fraunces', Georgia, serif;
  --f-body:  'Inter', system-ui, sans-serif;

  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1.25rem;
  --r-xl: 1.75rem;

  --shadow-sm:  0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.1);
  --shadow-elv: 0 2px 12px rgba(0,0,0,.1);

  --max-w: 1200px;
  --header-h: 72px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-txt);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul, ol { list-style: none; }

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1rem;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top .2s;
}
.skip:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.2;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  transition: all .2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-navy);
}
.btn-primary:hover {
  background: var(--c-gold-h);
  box-shadow: 0 4px 20px rgba(200, 148, 62, .35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-teal);
  border: 1.5px solid var(--c-border);
}
.btn-ghost:hover {
  border-color: var(--c-teal);
  background: rgba(10, 47, 60, .04);
}

/* ========================================================
   Header
   ======================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.elevated {
  background: rgba(250, 249, 246, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--c-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--c-teal);
}

.brand-tag {
  font-size: .7rem;
  font-weight: 500;
  color: var(--c-txt-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.elevated .brand-name { color: var(--c-teal); }

/* Navigation */
.nav {
  display: none;
  gap: .25rem;
  margin-left: auto;
}

.nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-txt-2);
  padding: .4rem .7rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}

.nav a:hover {
  color: var(--c-teal);
  background: rgba(10, 47, 60, .05);
}

.header-cta {
  display: none;
  align-items: center;
  gap: .5rem;
  margin-left: .5rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* Hamburger */
.nav-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.nav-toggle:hover {
  background: rgba(10, 47, 60, .06);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--c-teal);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform: translateX(-50%);
}

.nav-toggle-bars { top: 50%; margin-top: -1px; }
.nav-toggle-bars::before { content: ''; top: -6px; left: 0; transform: none; }
.nav-toggle-bars::after  { content: ''; top: 6px;  left: 0; transform: none; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  animation: slideDown .25s var(--ease);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.25rem 1.5rem;
}

.mobile-nav-inner a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-txt);
  padding: .75rem .5rem;
  border-radius: var(--r-sm);
  transition: background .15s;
}

.mobile-nav-inner a:hover {
  background: var(--c-bg-tint);
}

.mobile-nav-inner .btn {
  margin-top: .5rem;
  text-align: center;
}

/* ========================================================
   Hero
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-teal) 55%, var(--c-teal-l) 100%);
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  color: var(--c-white);
}

@media (min-width: 768px) {
  .hero { padding: calc(var(--header-h) + 5rem) 0 6rem; }
}

/* Background decoration */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--c-gold);
  top: -120px;
  right: -100px;
  opacity: .12;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #1a5f7a;
  bottom: -80px;
  left: -60px;
  opacity: .2;
}

.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 4rem;
  }
}

/* Hero copy */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .75rem;
}

.hero-title {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.trust-kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.trust-value {
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-card-top {
  padding: 1.75rem 1.75rem 1.25rem;
}

.hero-card-title {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.hero-card-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
}

.hero-mini {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}

.hero-mini:hover {
  background: rgba(255,255,255,.04);
}

.mini-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--c-gold);
  margin-top: .1rem;
}

.mini-title {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .15rem;
}

.mini-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ========================================================
   Sections
   ======================================================== */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
}

.section-tint {
  background: var(--c-bg-tint);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--c-teal);
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--c-txt-2);
  line-height: 1.7;
}

/* ========================================================
   Problem Cards
   ======================================================== */
.problem-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.problem-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.icon-chip {
  width: 44px;
  height: 44px;
  background: var(--c-gold-s);
  color: var(--c-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--c-teal);
  margin-bottom: .5rem;
}

.problem-card p {
  font-size: .9rem;
  color: var(--c-txt-2);
  line-height: 1.6;
}

/* ========================================================
   Feature Grid (Approach)
   ======================================================== */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.feature {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
}

.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(200,148,62,.3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--c-gold-s);
  color: var(--c-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 1.25rem;
}

.feature h3 {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--c-teal);
  margin-bottom: .5rem;
}

.feature p {
  font-size: .9rem;
  color: var(--c-txt-2);
  line-height: 1.6;
}

/* ========================================================
   Comparison Table
   ======================================================== */
.compare-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.compare-table {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.compare-row + .compare-row {
  border-top: 1px solid var(--c-border);
}

.compare-cell {
  padding: 1rem 1.25rem;
  font-size: .9rem;
  line-height: 1.5;
}

/* Head row */
.compare-head {
  background: var(--c-teal);
  color: var(--c-white);
}

.compare-head .compare-cell {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Highlight Common Ground column */
.compare-row:not(.compare-head) .compare-cell:nth-child(3) {
  background: rgba(200, 148, 62, .06);
  font-weight: 500;
  color: var(--c-teal);
}

/* Category column */
.compare-row:not(.compare-head) .compare-cell:first-child {
  font-weight: 600;
  color: var(--c-teal);
}

/* Traditional column muted */
.compare-row:not(.compare-head) .compare-cell:nth-child(2) {
  color: var(--c-txt-2);
}

/* Pill badges */
.pill {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
}

.pill-good {
  background: rgba(200, 148, 62, .15);
  color: #8a6420;
}

.compare-note {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--c-txt-3);
  text-align: center;
}

/* Mobile comparison adjustments */
@media (max-width: 599px) {
  .compare-cell {
    padding: .75rem .7rem;
    font-size: .8rem;
  }
  .compare-head .compare-cell {
    font-size: .72rem;
  }
}

/* ========================================================
   Steps (How It Works)
   ======================================================== */
.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.1rem;
  color: var(--c-gold);
  background: var(--c-gold-s);
  border-radius: 50%;
}

.step h3 {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--c-teal);
  margin-bottom: .35rem;
}

.step p {
  font-size: .9rem;
  color: var(--c-txt-2);
  line-height: 1.6;
}

/* ========================================================
   Testimonials
   ======================================================== */
.quotes {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .quotes { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.quote-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.quote-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quote-card blockquote {
  flex: 1;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--c-txt);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-card blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--f-head);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--c-gold);
  margin-bottom: .25rem;
  font-style: normal;
}

.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

.quote-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-teal);
}

.quote-role {
  font-size: .8rem;
  color: var(--c-txt-3);
}

/* ========================================================
   CTA / Contact
   ======================================================== */
.cta {
  background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-teal) 60%, var(--c-teal-l) 100%);
  padding: 5rem 0;
  color: var(--c-white);
}

@media (min-width: 768px) {
  .cta { padding: 6.5rem 0; }
}

.cta-inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
}

.cta-title {
  font-family: var(--f-head);
  font-weight: 650;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  color: rgba(255,255,255,.65);
}

/* Form */
.form {
  background: var(--c-white);
  color: var(--c-txt);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .form { padding: 2.5rem; }
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.form label span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-teal);
}

.form input,
.form textarea {
  width: 100%;
  padding: .7rem .85rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(200,148,62,.15);
}

.form input.invalid,
.form textarea.invalid {
  border-color: #d44;
  box-shadow: 0 0 0 3px rgba(221,68,68,.1);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--c-txt-3);
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .form-actions .btn { width: auto; }
}

.form-note {
  font-size: .8rem;
  color: var(--c-txt-3);
}

.form-note a {
  color: var(--c-gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: var(--c-gold-h);
}

.form-status {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 500;
  min-height: 1.4em;
}

.form-status.error {
  color: #d44;
}

.form-status.success {
  color: #2a8a4a;
}

/* ========================================================
   Footer
   ======================================================== */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.2fr 2fr; gap: 4rem; }
}

.brand-footer .brand-name {
  color: var(--c-white);
}

.brand-footer .brand-tag {
  color: rgba(255,255,255,.45);
}

.footer-tagline {
  margin-top: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.link-title {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}

.link-col a,
.link-col .muted {
  display: block;
  font-size: .88rem;
  line-height: 1.4;
  margin-bottom: .5rem;
}

.link-col a {
  color: rgba(255,255,255,.7);
  transition: color .15s;
}

.link-col a:hover {
  color: var(--c-gold);
}

.muted {
  color: rgba(255,255,255,.35);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  font-size: .8rem;
}

/* ========================================================
   Toast
   ======================================================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  max-width: 360px;
}

.toast:not([hidden]) {
  animation: toastIn .4s var(--ease);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.toast-inner {
  background: var(--c-teal);
  color: var(--c-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.toast-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.toast-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ========================================================
   Reveal Animations
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orb,
  .hero-bg .grid {
    display: none;
  }
}
