:root {
  --gff-green: #0f4a35;
  --gff-green-deep: #092f23;
  --gff-green-soft: #e9f1ed;
  --gff-gold: #d3a52e;
  --gff-red: #c43a37;
  --ink: #15221d;
  --muted: #69736e;
  --cream: #f4f2ec;
  --white: #ffffff;
  --line: rgba(18, 46, 35, .14);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

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

.launch-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(380px, 42%);
}

.launch-copy-panel {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(34px, 5vw, 82px) 30px;
  background:
    radial-gradient(circle at 5% 2%, rgba(211,165,46,.10), transparent 28%),
    linear-gradient(135deg, rgba(15,74,53,.025) 0 1px, transparent 1px 44px),
    var(--cream);
  background-size: auto, 44px 44px, auto;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 3;
}

.brand-lockup { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 9px 28px rgba(9,47,35,.12);
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; line-height: 1.05; gap: 5px; }
.brand-text strong {
  font: 800 14px/1.05 "Montserrat", sans-serif;
  letter-spacing: -.25px;
  color: var(--gff-green-deep);
  text-transform: uppercase;
}
.brand-text small {
  font-size: 8.6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7a827e;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #49534f;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease;
}
.back-link:hover { color: var(--gff-green); transform: translateY(-1px); }
.back-link i { font-size: 10px; }

.content-wrap {
  width: min(690px, 100%);
  margin: auto 0;
  padding: 68px 0 52px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: var(--gff-green);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.45px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gff-gold);
  box-shadow: 0 0 0 5px rgba(211,165,46,.14);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(211,165,46,.12); }
  50% { box-shadow: 0 0 0 9px rgba(211,165,46,.025); }
}

h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 5.9vw, 6.65rem);
  line-height: .92;
  letter-spacing: -5.4px;
  font-weight: 800;
  color: #16231e;
}
h1 span { color: var(--gff-green); }

.lead-copy {
  width: min(610px, 100%);
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.85;
}

.countdown {
  margin-top: 35px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.count-item { min-width: 84px; }
.count-item strong {
  display: block;
  color: var(--ink);
  font: 700 clamp(25px, 2.5vw, 37px)/1 "Montserrat", sans-serif;
  letter-spacing: -1.7px;
  font-variant-numeric: tabular-nums;
}
.count-item span {
  display: block;
  margin-top: 7px;
  color: #808985;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  font-weight: 800;
}
.count-divider {
  width: 1px;
  background: var(--line);
  margin: 2px 27px 0 6px;
}

.notify-form { width: min(605px, 100%); margin-top: 37px; }
.notify-control {
  min-height: 61px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(15,74,53,.17);
  border-radius: 5px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 30px rgba(20,37,31,.055);
  transition: border .2s ease, box-shadow .2s ease;
}
.notify-control:focus-within {
  border-color: rgba(15,74,53,.45);
  box-shadow: 0 15px 34px rgba(15,74,53,.09);
}
.notify-icon { color: #9aa29e; margin-right: 11px; font-size: 14px; }
.notify-control input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}
.notify-control input::placeholder { color: #929a96; }
.notify-control button {
  min-height: 47px;
  border: 0;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--gff-green);
  color: white;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.notify-control button:hover { background: var(--gff-green-deep); transform: translateY(-1px); }
.notify-control button i { margin-left: 9px; font-size: 10px; }
.form-feedback { min-height: 20px; margin-top: 8px; font-size: 11px; font-weight: 700; }
.form-feedback.success { color: var(--gff-green); }
.form-feedback.error { color: var(--gff-red); }

.launch-footer { position: relative; z-index: 2; }
.launch-footer > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 15px;
  color: #707a75;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25px;
}
.launch-footer > p i { width: 3px; height: 3px; border-radius: 50%; background: var(--gff-gold); }
.footer-line {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #929a96;
  font-size: 9.5px;
  font-weight: 600;
}
.ghana-bars { display: inline-flex; width: 45px; height: 3px; overflow: hidden; border-radius: 99px; }
.ghana-bars b { flex: 1; }
.ghana-bars b:nth-child(1) { background: #ce3a3a; }
.ghana-bars b:nth-child(2) { background: #e1bc36; }
.ghana-bars b:nth-child(3) { background: #19864a; }

.launch-visual {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--gff-green-deep);
}
.visual-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=88&w=1800");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.085); } }
.visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,25,18,.23), rgba(4,33,23,.18) 33%, rgba(4,31,22,.82) 100%),
    linear-gradient(90deg, rgba(8,46,33,.08), rgba(8,46,33,.30));
  z-index: 1;
}
.launch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.04) 48% 48.2%, transparent 48.2%);
  pointer-events: none;
}
.visual-top {
  position: absolute;
  z-index: 3;
  top: 39px;
  left: 36px;
  right: 36px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.visual-content {
  position: absolute;
  z-index: 3;
  left: clamp(34px, 4vw, 68px);
  right: clamp(34px, 4vw, 68px);
  bottom: 105px;
  color: white;
}
.visual-badge {
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.visual-badge img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.75px;
}
.visual-content h2 {
  margin: 0;
  font: 700 clamp(2.4rem, 4.2vw, 4.8rem)/.96 "Montserrat", sans-serif;
  letter-spacing: -3.2px;
}
.visual-content p {
  margin: 19px 0 0;
  max-width: 420px;
  color: rgba(255,255,255,.77);
  font-size: 13px;
  line-height: 1.65;
}
.visual-bottom {
  position: absolute;
  z-index: 3;
  left: 36px;
  right: 36px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.75);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.visual-bottom .line { height: 1px; flex: 1; background: rgba(255,255,255,.28); }
.visual-bottom .star { color: var(--gff-gold); font-size: 8px; }

@media (max-width: 1080px) {
  .launch-shell { grid-template-columns: minmax(0, 60%) minmax(340px, 40%); }
  .launch-copy-panel { padding-left: 42px; padding-right: 42px; }
  h1 { letter-spacing: -4px; }
  .count-divider { margin-right: 20px; }
}

@media (max-width: 860px) {
  .launch-shell { display: block; }
  .launch-copy-panel { min-height: auto; padding: 26px 25px 28px; }
  .content-wrap { width: 100%; padding: 78px 0 68px; }
  h1 { font-size: clamp(3.35rem, 12vw, 5.5rem); letter-spacing: -3.9px; }
  .lead-copy { max-width: 650px; }
  .launch-visual { min-height: 620px; }
  .visual-content { bottom: 100px; }
}

@media (max-width: 575.98px) {
  .launch-copy-panel { padding: 21px 18px 24px; }
  .brand-text small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text strong { font-size: 12px; }
  .back-link span { display: none; }
  .back-link { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; justify-content: center; }
  .content-wrap { padding: 70px 0 54px; }
  .status-pill { font-size: 8.5px; letter-spacing: 1.1px; margin-bottom: 23px; }
  h1 { font-size: clamp(3rem, 15.5vw, 4.65rem); line-height: .93; letter-spacing: -3.3px; }
  .lead-copy { margin-top: 25px; font-size: 13.5px; line-height: 1.75; }
  .countdown { margin-top: 30px; justify-content: space-between; }
  .count-item { min-width: 0; flex: 1; }
  .count-item strong { font-size: 28px; letter-spacing: -1.3px; }
  .count-divider { margin: 2px 14px 0 3px; }
  .notify-form { margin-top: 31px; }
  .notify-control { grid-template-columns: auto 1fr; min-height: 56px; padding: 5px 8px 5px 16px; }
  .notify-control button { grid-column: 1 / -1; width: 100%; margin-top: 9px; min-height: 49px; }
  .notify-control { padding-bottom: 8px; }
  .launch-footer > p { flex-wrap: wrap; row-gap: 6px; }
  .footer-line { align-items: flex-start; }
  .footer-line > span:first-child { max-width: 245px; line-height: 1.5; }
  .launch-visual { min-height: 540px; }
  .visual-top { top: 25px; left: 22px; right: 22px; }
  .visual-content { left: 24px; right: 24px; bottom: 86px; }
  .visual-badge { width: 57px; height: 57px; margin-bottom: 22px; }
  .visual-content h2 { font-size: 3.05rem; letter-spacing: -2.4px; }
  .visual-bottom { left: 22px; right: 22px; bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
