/* ================================================================
   OMAC ENTERPRISES LLC — Stylesheet
   Aesthetic: Modern ecommerce-growth agency — confident, clean,
   forward-moving. Deep teal dominant, sage accents, warm cream.
   Fonts: Syne (display) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --teal:      #0d5c63;
  --teal-mid:  #107a83;
  --teal-lt:   #1a9faa;
  --sage:      #4a8a6e;
  --sage-lt:   #6ab090;
  --sage-pale: #c8e6d8;
  --amber:     #e8923a;
  --amber-lt:  #f0ac60;
  --cream:     #f6f2ec;
  --cream-dk:  #ede7dd;
  --sand:      #cfc4b4;
  --dark:      #0e1f22;
  --dark-mid:  #162c30;
  --dark-soft: #1e3c42;
  --white:     #fdfaf5;
  --text:      #0e1f22;
  --text-mid:  #2d4a4f;
  --text-lt:   #5e7a7f;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow:    0 4px 28px rgba(13,92,99,.1);
  --shadow-lg: 0 10px 52px rgba(13,92,99,.16);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-mid); text-decoration: none; transition: color .18s; }
a:hover { color: var(--teal-lt); }
ul { list-style: none; }

/* ── Type ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: .96rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: .97rem; }
strong { color: var(--text); font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-sm  { padding: 60px 0; }
.text-center { text-align: center; }

/* ── Grids ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media(min-width:600px) and (max-width:900px){
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,92,99,.3);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-light:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  color: #fff;
  transform: translateY(-2px);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Nav ────────────────────────────────────────────────── */
.main-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { color: var(--teal-lt); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: .84rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px;
  transition: all .18s; letter-spacing: .02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .nav-cta {
  background: var(--teal-mid); color: #fff !important;
  border-radius: 50px; padding: 8px 20px; margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--teal-lt); }

.nav-toggle-checkbox { display: none; }
.nav-toggle-label {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.nav-toggle-label span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: .25s;
}
@media(max-width:860px){
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--dark-mid); padding: 14px 24px 24px;
    gap: 2px; border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links a { width: 100%; padding: 11px 16px; }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(26,159,170,.2) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 5% 90%, rgba(74,138,110,.15) 0%, transparent 55%);
  pointer-events: none;
}
/* Decorative grid lines */
.hero::after {
  content: '';
  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;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center;
}
@media(max-width:768px){ .hero-layout { grid-template-columns: 1fr; gap: 40px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,159,170,.18);
  border: 1px solid rgba(26,159,170,.3);
  color: var(--teal-lt);
  font-size: .77rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-tag::before { content: '●'; font-size: .5rem; }

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--teal-lt); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.68); font-size: 1.06rem; margin-bottom: 36px; line-height: 1.75; }
.hero-stats {
  display: flex; gap: 0;
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat {
  flex: 1; padding-right: 24px; border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { padding-right: 0; border-right: none; padding-left: 24px; }
.hero-stat:not(:first-child) { padding-left: 24px; }
.hero-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--sage-lt);
  display: block; line-height: 1;
}
.hero-stat-l { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 5px; }

/* Hero visual — channel card cluster */
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  position: relative;
}
.channel-card {
  background: var(--dark-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.channel-card:hover { border-color: rgba(26,159,170,.35); transform: translateY(-3px); }
.channel-card:nth-child(2) { transform: translateY(14px); }
.channel-card:nth-child(4) { transform: translateY(14px); }
.channel-card:hover { transform: translateY(-2px) !important; }
.channel-icon { font-size: 2rem; margin-bottom: 8px; }
.channel-name {
  font-family: 'Syne', sans-serif;
  font-size: .82rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em;
}
.channel-tag { font-size: .72rem; color: var(--teal-lt); margin-top: 4px; }

/* Floating badge */
.hero-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: .74rem; font-weight: 500;
  padding: 8px 20px; border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232,146,58,.35);
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 95% 50%, rgba(26,159,170,.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 14px; display: block;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 600px; font-size: 1.03rem; }
.page-hero .btn-group { margin-top: 28px; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .22s, transform .2s, border-color .2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--sage-pale);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.icon-teal { background: rgba(13,92,99,.1); }
.icon-sage { background: rgba(74,138,110,.12); }
.icon-amber { background: rgba(232,146,58,.12); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .92rem; }

/* Dark card variant */
.card-dark {
  background: var(--dark-soft);
  border-color: rgba(255,255,255,.07);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,.6); }

/* ── Section cosmetics ──────────────────────────────────── */
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); }
.bg-dark-mid { background: var(--dark-mid); }
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 12px; display: block;
}
.section-eyebrow-light { color: var(--sage-lt); }
.lead { font-size: 1.05rem; line-height: 1.72; color: var(--text-mid); }

/* ── Tags / Chips ───────────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem; font-weight: 500;
}
.tag-teal { background: rgba(13,92,99,.09); color: var(--teal); border: 1px solid rgba(13,92,99,.18); }
.tag-sage  { background: rgba(74,138,110,.1); color: var(--sage); border: 1px solid rgba(74,138,110,.2); }
.tag-amber { background: rgba(232,146,58,.1); color: var(--amber); border: 1px solid rgba(232,146,58,.2); }

/* ── Stats strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--teal);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
@media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-cell {
  text-align: center; padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--white);
  display: block; line-height: 1;
}
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ── Process steps ──────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px; align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dk);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--teal);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px; flex: 1; min-height: 32px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}
.step:last-child .step-line { display: none; }
.step-phase {
  font-family: 'DM Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 6px; display: block;
}
.step-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step-body p  { font-size: .92rem; margin-bottom: 12px; }
.step-tools {
  font-family: 'DM Mono', monospace;
  font-size: .78rem; color: var(--text-lt);
  background: var(--cream); border-radius: 8px; padding: 10px 14px;
  margin-top: 14px;
}

/* ── Platform cards ─────────────────────────────────────── */
.platform-card {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--cream-dk);
  background: var(--white);
  transition: box-shadow .22s, transform .2s;
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.platform-card.shopify::before  { background: #96bf48; }
.platform-card.amazon::before   { background: #ff9900; }
.platform-card.walmart::before  { background: #0071ce; }
.platform-card.ebay::before     { background: #e53238; }
.platform-card.etsy::before     { background: #f56400; }
.platform-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.platform-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 8px;
}
.platform-card ul { margin: 14px 0; }
.platform-card ul li {
  font-size: .86rem; color: var(--text-mid);
  padding: 6px 0; border-bottom: 1px solid var(--cream);
  display: flex; align-items: flex-start; gap: 8px;
}
.platform-card ul li::before { content: '→'; color: var(--teal-mid); flex-shrink: 0; font-size: .8rem; margin-top: 2px; }

/* ── Services big cards ─────────────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px; align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.service-row:last-child { border-bottom: none; }
@media(max-width:768px){ .service-row { grid-template-columns: 1fr; } }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem; font-weight: 800;
  color: var(--cream-dk); line-height: 1;
  margin-bottom: 12px;
}
.service-label {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.service-icon-lg { font-size: 2.4rem; margin-bottom: 16px; }
.service-detail h4 { margin-bottom: 8px; font-size: .9rem; color: var(--teal); }
.service-detail ul li {
  font-size: .88rem; color: var(--text-mid);
  padding: 5px 0; border-bottom: 1px solid var(--cream);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-detail ul li::before { content: '✓'; color: var(--sage); font-weight: 700; }

/* ── Contact form ───────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem; padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white); color: var(--text);
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(16,122,131,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  background: var(--dark-mid);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(26,159,170,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .btn-group { justify-content: center; }

/* ── KPI Highlight ──────────────────────────────────────── */
.kpi-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--teal-lt);
}
.kpi-label { font-size: .85rem; color: var(--text-lt); margin-top: 4px; }

/* ── Contact info card ──────────────────────────────────── */
.contact-info {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-row:last-child { border-bottom: none; }
.contact-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(26,159,170,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-lbl { font-size: .76rem; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.contact-val { color: rgba(255,255,255,.85); font-size: .9rem; }
.contact-val a { color: var(--teal-lt); }

/* ── Highlight box ──────────────────────────────────────── */
.highlight {
  background: rgba(13,92,99,.06);
  border-left: 4px solid var(--teal-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 20px 0;
}
.highlight p { font-size: .92rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
  border-top: 3px solid var(--teal-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 48px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand span { color: var(--teal-lt); }
.footer-desc { color: rgba(255,255,255,.48); font-size: .87rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage-lt); margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.52); font-size: .87rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.f-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.f-ico { color: var(--teal-lt); font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.f-ico-text { color: rgba(255,255,255,.52); font-size: .86rem; }
.f-ico-text a { color: var(--teal-lt); }
.f-ico-text a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: .82rem; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}
.fade { animation: fadeUp .6s ease both; }
.fade-1 { animation-delay: .1s; }
.fade-2 { animation-delay: .2s; }
.fade-3 { animation-delay: .3s; }
.fade-4 { animation-delay: .4s; }

/* ── Misc ───────────────────────────────────────────────── */
.mono { font-family: 'DM Mono', monospace; }
.divider { border: none; border-top: 1px solid var(--cream-dk); margin: 0; }
