/* =========================================================
   Cola Cultivator by Auxer — site styles
   ========================================================= */

/* ===================== ACCESSIBILITY ===================== */
/* Skip link: hidden until focused */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: .65rem 1rem;
  background: #0a1f17;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
  transition: top .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 3px solid #b6f06a;
  outline-offset: 2px;
  color: #fff;
}

/* Universal visible focus ring (keyboard-only). */
:focus-visible {
  outline: 3px solid #2dbb6e;
  outline-offset: 2px;
  border-radius: 6px;
}
.btn:focus-visible,
a.btn:focus-visible {
  outline: 3px solid #b6f06a;
  outline-offset: 3px;
}
/* Inputs get a glow not an outline (matches design). */
.form-control:focus-visible,
.form-select:focus-visible,
.form-control:focus,
.form-select:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(45, 187, 110, .35);
  border-color: #2dbb6e;
}

/* High-contrast mode bumps borders. */
@media (prefers-contrast: more) {
  .btn-cola { outline: 2px solid #fff; }
  .form-control, .form-select { border: 2px solid #0d1a14; }
}


:root {
  --cc-bg: #0a1f17;
  --cc-bg-2: #0f3d2e;
  --cc-bg-3: #143b2d;
  --cc-cream: #f7f4ec;
  --cc-paper: #ffffff;
  --cc-ink: #0d1a14;
  --cc-ink-2: #2b3a32;
  --cc-muted: #6f7c75;
  --cc-green: #2dbb6e;
  --cc-green-dark: #18794a;
  --cc-lime: #b6f06a;
  --cc-gold: #f6c453;
  --cc-rose: #ff7a7a;
  --cc-radius: 18px;
  --cc-shadow-sm: 0 2px 8px rgba(13, 26, 20, .06);
  --cc-shadow: 0 18px 48px -16px rgba(13, 26, 20, .25);
  --cc-shadow-lg: 0 30px 80px -24px rgba(13, 26, 20, .45);
  --cc-font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --cc-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ===================== BASE ===================== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--cc-font);
  color: var(--cc-ink);
  background: var(--cc-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display-3, .display-5 {
  font-family: var(--cc-serif);
  letter-spacing: -0.02em;
  font-weight: 700;
}

img { max-width: 100%; height: auto; }

.text-grad {
  background: linear-gradient(90deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-grad-2 {
  background: linear-gradient(90deg, var(--cc-gold) 0%, #d49a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-grad-3 {
  background: linear-gradient(90deg, var(--cc-lime) 0%, #6ed09a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-white-70 { color: rgba(255,255,255,.72); }
.accent { color: var(--cc-lime); }
.accent-2 { color: var(--cc-gold); }

/* ===================== BUTTONS ===================== */
.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .65rem 1.25rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-lg { padding: .85rem 1.5rem; }

.btn-cola {
  background: linear-gradient(135deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 24px -10px rgba(45, 187, 110, .65);
}
.btn-cola:hover, .btn-cola:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(45, 187, 110, .8);
}

.btn-outline-light {
  border-width: 2px;
}

/* ===================== NAVBAR ===================== */
#mainNav {
  background: rgba(10, 31, 23, 0);
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 1rem 0;
}
#mainNav.scrolled {
  background: rgba(10, 31, 23, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.5);
  padding: .5rem 0;
}
.navbar-brand .brand-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px -8px rgba(45, 187, 110, .9);
}
.navbar-brand .brand-text {
  display: inline-flex; flex-direction: column;
  font-family: var(--cc-serif);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
}
.navbar-brand .brand-sub {
  font-family: var(--cc-font);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
#mainNav .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(45, 187, 110, .35), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(182, 240, 106, .22), transparent 60%),
    linear-gradient(180deg, #0a1f17 0%, #0f3d2e 100%);
  color: #fff;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.06) 0, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(182,240,106,.08) 0, transparent 45%);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  margin: 1.25rem 0 1rem;
  font-weight: 900;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cc-lime);
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(182, 240, 106, .12);
  border: 1px solid rgba(182, 240, 106, .25);
}
.eyebrow-light { color: var(--cc-lime); }

.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num {
  font-family: var(--cc-serif);
  font-size: 2rem; font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-num span { color: var(--cc-lime); font-size: 1.3rem; }
.stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}

.hero-art {
  position: relative;
  height: 540px;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--cc-shadow-lg);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.hero-card img {
  border-radius: 14px;
  display: block;
}
.hero-card-a {
  top: 0; left: 0;
  width: 52%;
  transform: rotate(-5deg);
  z-index: 1;
}
.hero-card-b {
  bottom: 0; right: 0;
  width: 62%;
  transform: rotate(3deg);
  z-index: 2;
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-card-b .hero-tag { left: auto; right: 22px; }
.tag-good {
  background: rgba(45, 187, 110, .95);
  color: #fff;
}
.tag-bad {
  background: rgba(255, 122, 122, .95);
  color: #fff;
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.hero-scroll span {
  display: block; width: 3px; height: 8px;
  background: rgba(255,255,255,.55);
  border-radius: 2px;
  margin-top: 7px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 6rem 0; position: relative; }
.section-light { background: var(--cc-paper); }
.section-cream { background: var(--cc-cream); }
.section-dark {
  background:
    radial-gradient(900px 600px at 90% 0%, rgba(45,187,110,.18), transparent 60%),
    linear-gradient(180deg, #0a1f17 0%, #143b2d 100%);
  color: #fff;
}

.section-tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-green-dark);
  background: rgba(45, 187, 110, .12);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--cc-lime);
  background: rgba(182, 240, 106, .12);
  border: 1px solid rgba(182, 240, 106, .2);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--cc-muted);
  max-width: 720px;
  margin: 0 auto;
}
.section-dark .section-lead { color: rgba(255,255,255,.7); }

/* ===================== PROBLEM CARDS ===================== */
.problem-card {
  background: #fff;
  border-radius: var(--cc-radius);
  padding: 1.5rem;
  box-shadow: var(--cc-shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow); }
.problem-card.highlight {
  background: linear-gradient(180deg, #fff 0%, #effbf2 100%);
  border-color: rgba(45, 187, 110, .25);
}
.problem-img-wrap {
  position: relative;
  background: #f3f4ef;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
}
.problem-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}
.canopy-marker {
  position: absolute;
  border: 2px dashed rgba(45, 187, 110, .8);
  border-radius: 8px;
  pointer-events: none;
}
.canopy-tall {
  top: 6%; bottom: 30%; left: 18%; right: 18%;
  border-color: rgba(255, 122, 122, .8);
}
.canopy-flat {
  top: 22%; bottom: 38%; left: 6%; right: 6%;
}
.canopy-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  font-weight: 700;
  background: var(--cc-green);
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.canopy-tall .canopy-label { background: var(--cc-rose); }

/* ===================== STEPS ===================== */
.photo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--cc-radius);
  padding: 1rem;
  box-shadow: var(--cc-shadow);
  overflow: hidden;
}
.photo-card img { border-radius: 12px; display: block; width: 100%; }

.step-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: flex; gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateX(4px);
  background: rgba(45, 187, 110, .08);
  border-color: rgba(45, 187, 110, .3);
}
.step-num {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cc-serif);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(45, 187, 110, .8);
}
.step h3 { color: #fff; font-family: var(--cc-font); font-weight: 700; }
.step p { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ===================== COMPARISON ===================== */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-card {
  position: relative;
  background: #fff;
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: var(--cc-shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow); }
.compare-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.compare-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem .75rem;
  border-radius: 999px;
}
.compare-caption {
  padding: 1.1rem 1.25rem 1.25rem;
  font-size: .95rem;
  color: var(--cc-ink-2);
}
@media (max-width: 720px) {
  .compare-wrap { grid-template-columns: 1fr; }
}

/* ===================== SCIENCE ===================== */
.science-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--cc-radius);
  height: 100%;
  box-shadow: var(--cc-shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.science-card:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow); }
.science-card img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f3f4ef;
}
.science-card h3 { font-family: var(--cc-font); font-weight: 700; }
.science-card p { color: var(--cc-ink-2); font-size: .98rem; }

.callout {
  display: flex; gap: 1rem;
  background: #fff;
  border-left: 5px solid var(--cc-gold);
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--cc-shadow-sm);
  font-size: 1.02rem;
  color: var(--cc-ink-2);
}
.callout i {
  color: var(--cc-gold);
  font-size: 1.6rem;
  flex: 0 0 auto;
}

/* ===================== RESULTS ===================== */
.check-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
}
.check-list li {
  padding: .55rem 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.check-list li:last-child { border-bottom: 0; }
.check-list i {
  color: var(--cc-lime);
  font-size: 1.25rem;
}
.result-photo {
  position: relative;
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: var(--cc-shadow-lg);
}
.result-photo img { display: block; width: 100%; }
.result-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(10, 31, 23, .85);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ===================== CTA ===================== */
.section-cta {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(182, 240, 106, .18), transparent 60%),
    linear-gradient(135deg, #0f3d2e 0%, #18794a 100%);
  color: #fff;
  padding-block: 7rem;
}
.signup-form { max-width: 520px; }
.signup-form .form-control {
  border-radius: 999px 0 0 999px;
  border: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
}
.signup-form .btn { border-radius: 0 999px 999px 0; }
.signup-thanks {
  font-size: .9rem;
  color: var(--cc-lime);
  background: rgba(182, 240, 106, .1);
  border: 1px solid rgba(182, 240, 106, .25);
  border-radius: 12px;
  padding: .75rem 1rem;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.trust-item i { color: var(--cc-lime); font-size: 1.05rem; }

/* ===================== FOOTER ===================== */
.footer {
  background: #07150f;
  color: rgba(255,255,255,.55);
  padding: 2rem 0;
}
.footer .brand-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
  color: #fff;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer .brand-text {
  display: inline-flex; flex-direction: column;
  font-family: var(--cc-serif);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.footer .brand-sub {
  font-family: var(--cc-font);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 1;
  border: 0;
  padding: 0;
  border-radius: var(--cc-radius);
  overflow: hidden;
  background: #f3f4ef;
  box-shadow: var(--cc-shadow-sm);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.gallery-tall { grid-column: span 6; grid-row: span 2; }
.gallery-cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(10,31,23,.78);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .65rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .gallery-grid { grid-auto-rows: 160px; gap: .75rem; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.gallery-tall { grid-column: span 12; grid-row: span 1; }
}

/* ===================== LIGHTBOX ===================== */
.lightbox .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  align-items: center;
}
.lightbox .modal-dialog { max-width: 95vw; }
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  font-size: .95rem;
  text-align: center;
}
.btn-close-lightbox {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 1056;
  transition: background .15s ease;
}
.btn-close-lightbox:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ===================== FAQ ===================== */
.faq.accordion-flush .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 26, 20, .08);
}
.faq .accordion-button {
  background: transparent !important;
  color: var(--cc-ink) !important;
  font-family: var(--cc-serif);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.25rem 0;
  box-shadow: none !important;
}
.faq .accordion-button:not(.collapsed) { color: var(--cc-green-dark) !important; }
.faq .accordion-button::after {
  background-image: none;
  content: "\F4FE"; /* bi-plus */
  font-family: "bootstrap-icons";
  font-size: 1.25rem;
  color: var(--cc-green);
  transition: transform .25s ease;
}
.faq .accordion-button:not(.collapsed)::after {
  content: "\F2EA"; /* bi-dash */
  transform: rotate(180deg);
}
.faq .accordion-body {
  padding: 0 0 1.25rem;
  color: var(--cc-ink-2);
  font-size: 1rem;
}

/* ===================== COUNTDOWN ===================== */
.countdown {
  display: inline-flex;
  align-items: stretch;
  gap: .75rem;
  margin: 1.5rem auto 0;
  padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.cd-num {
  font-family: var(--cc-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  margin-top: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.cd-sep {
  font-family: var(--cc-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(255,255,255,.35);
  align-self: center;
  margin-top: -8px;
}
.countdown-launched {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 1.5rem auto 0;
  padding: 1rem 1.4rem;
  background: rgba(182, 240, 106, .15);
  border: 1px solid rgba(182, 240, 106, .35);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
}
.countdown-launched i { color: var(--cc-lime); font-size: 1.2rem; }
.ks-link {
  color: var(--cc-lime);
  font-weight: 700;
  text-decoration: none;
}
.ks-link:hover { color: #fff; }

@media (max-width: 540px) {
  .countdown { padding: .85rem .9rem; gap: .4rem; }
  .cd-block { min-width: 54px; }
  .cd-sep { display: none; }
}

/* ===================== SIGNUP FORM (extended) ===================== */
.signup-form .form-control {
  border: 0;
  font-size: 1rem;
  background: #fff;
}
.signup-form .row .form-control { border-radius: 999px !important; }
.signup-form .input-group .form-control {
  border-radius: 999px 0 0 999px !important;
}
.signup-form .input-group .btn {
  border-radius: 0 999px 999px 0 !important;
}
.signup-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(182, 240, 106, .35);
}
.signup-thanks.is-error {
  color: #ffd7d7;
  background: rgba(255, 122, 122, .12);
  border-color: rgba(255, 122, 122, .35);
}
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
.btn-spinner { display: inline-flex; align-items: center; }

/* ===================== CONTACT FORM ===================== */
.contact-form .form-label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--cc-ink);
  margin-bottom: .35rem;
}
.contact-form .form-label .req {
  color: var(--cc-rose);
  margin-left: 2px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(13, 26, 20, .15);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-size: 1rem;
  background: #fff;
}
.contact-form textarea.form-control {
  border-radius: 14px;
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
  border-color: var(--cc-rose);
  background-image: none;
}
.contact-direct {
  font-size: .92rem;
  color: var(--cc-muted);
}
.contact-direct a {
  color: var(--cc-green-dark);
  font-weight: 600;
  text-decoration: none;
}
.contact-direct a:hover { text-decoration: underline; }

.contact-feedback {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  font-size: .95rem;
  background: rgba(45, 187, 110, .1);
  border: 1px solid rgba(45, 187, 110, .35);
  color: var(--cc-green-dark);
}
.contact-feedback.is-error {
  background: rgba(255, 122, 122, .1);
  border-color: rgba(255, 122, 122, .35);
  color: #b34141;
}
.contact-feedback i {
  margin-right: .35rem;
}

/* ===================== FOOTER LINKS ===================== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 768px) {
  .footer-links { justify-content: flex-start; }
}

/* ===================== LEGAL / STATEMENT PAGES ===================== */
.legal-page { background: #f7f4ec; }
.legal-nav {
  background: rgba(10, 31, 23, .96);
  backdrop-filter: blur(10px);
  padding: .75rem 0;
}
.legal-main { padding: 7rem 0 4rem; }
.legal-header { margin-bottom: 2.5rem; }
.legal-title {
  font-family: var(--cc-serif);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: .5rem 0;
  color: var(--cc-ink);
}
.legal-meta {
  color: var(--cc-muted);
  font-size: .92rem;
  margin-bottom: 0;
}
.legal-section { margin-top: 2.25rem; }
.legal-section h2 {
  font-family: var(--cc-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cc-green-dark);
  margin-bottom: .75rem;
  scroll-margin-top: 100px;
}
.legal-section p,
.legal-section li {
  color: var(--cc-ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal-list {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-list li { margin-bottom: .55rem; }
.legal-section code {
  background: rgba(45, 187, 110, .08);
  color: var(--cc-green-dark);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .9em;
}
.legal-section a {
  color: var(--cc-green-dark);
  font-weight: 600;
}
.legal-back {
  margin-top: 3rem;
  font-weight: 600;
}
.legal-back a {
  color: var(--cc-green-dark);
  text-decoration: none;
}
.legal-back a:hover { text-decoration: underline; }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-art { height: 480px; margin-top: 2rem; }
  #mainNav { background: rgba(10,31,23,.92); backdrop-filter: blur(10px); }
}
@media (max-width: 576px) {
  .section { padding: 4rem 0; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.65rem; }
  .hero-art { height: 380px; }
  .hero-card-a { width: 56%; }
  .hero-card-b { width: 66%; }
}
