/* LACTIGO AUSTRALIA — launch interest page
   Inherits the GO Central design system:
   warm cream page · deep navy hero · LactiGo lime accent
   Archivo (display + body, heavy italic display) · Space Mono (micro-labels) */

:root {
  --cream:      #F4F1E9;
  --cream-2:    #ECE7DA;
  --card:       #FFFFFF;
  --navy:       #0E1B2C;
  --navy-2:     #16283F;
  --navy-3:     #1E3452;
  --ink:        #12202E;
  --muted:      #586675;
  --line:       rgba(18, 32, 46, .12);
  --line-soft:  rgba(18, 32, 46, .07);
  --lime:       #8FC63F;
  --lime-2:     #A7E04B;
  --lime-ink:   #16320A;
  --danger:     #B3261E;
  --shadow:     0 1px 2px rgba(14,27,44,.04), 0 8px 24px rgba(14,27,44,.06);
  --shadow-lg:  0 2px 4px rgba(14,27,44,.05), 0 18px 44px rgba(14,27,44,.13);
  --r:          16px;
  --maxw:       1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- micro-label (mono eyebrow) ---- */
.eyebrow {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--lime); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block;
}
.eyebrow-flag {
  height: 14px; width: auto; display: inline-block;
  border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.25);
}
.eyebrow.dark { color: #46770f; }
.eyebrow.dark::before { background: #46770f; }

/* ---- display headings ---- */
.display {
  font-weight: 900; font-style: italic; font-size: clamp(38px, 6.4vw, 78px);
  line-height: .96; letter-spacing: -.015em; text-transform: uppercase; margin: 0;
}
h2.section-title {
  font-weight: 900; font-style: italic; font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -.01em; text-transform: uppercase; margin: 0;
}

/* =====================  TOP BAR  ===================== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,233,.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { height: 22px; width: auto; }
.brand .divider { width: 1px; height: 20px; background: var(--line); }
.brand .flag {
  height: 15px; width: auto; display: block;
  border-radius: 2px; box-shadow: 0 0 0 1px rgba(18,32,46,.14);
}
.brand .kicker {
  font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.topbar .cta {
  margin-left: auto;
  font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; white-space: nowrap;
}
.topbar .cta:hover { color: var(--ink); }
/* On a phone the brand block plus the CTA exactly fill the bar, leaving them
   touching with no gap. The form is immediately below, so drop the CTA. */
@media (max-width: 700px) {
  .topbar .cta { display: none; }
}
@media (max-width: 420px) {
  .brand .kicker { display: none; }
}

/* =====================  HERO  ===================== */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px);
}
/* Southern Cross — decorative only.
   Sits in the empty column to the right of the hero copy. Hidden below the
   breakpoint where the copy reflows into that space. */
.hero .cross {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  width: clamp(90px, 11vw, 150px);
  height: auto;
  pointer-events: none;
  opacity: .9;
}
@media (max-width: 1080px) { .hero .cross { display: none; } }

.hero .wrap { position: relative; z-index: 1; max-width: 900px; }
.hero .display { margin-top: 14px; }
.hero .display .lime { color: var(--lime); }
.hero .lede {
  margin: 22px 0 0; max-width: 620px;
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.6;
  color: rgba(255,255,255,.82);
}
.hero .launch-chip {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 28px;
  background: var(--lime); color: var(--lime-ink);
  border-radius: 999px; padding: 10px 18px;
  font-family: "Space Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}

/* =====================  FORM CARD  ===================== */
.form-section { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 8vw, 96px); }
.form-section .wrap { max-width: 860px; }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 40px);
  margin-top: -80px; position: relative; z-index: 2;
}

.card-head { margin-bottom: 26px; }
.card-head h2 { margin-top: 6px; }
.card-head p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; font-size: 15px; }

/* ---- audience toggle ---- */
.audience { margin-bottom: 28px; }
.audience-legend {
  font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px; display: block;
}
.audience-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .audience-opts { grid-template-columns: 1fr; } }

.audience-opt { position: relative; }
.audience-opt input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.audience-opt label {
  display: block; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 16px 18px; transition: .16s; background: #fff;
}
.audience-opt label .t {
  font-weight: 800; font-size: 15px; display: block;
}
.audience-opt label .d {
  display: block; margin-top: 4px; font-size: 13px; color: var(--muted); line-height: 1.5;
}
.audience-opt label .badge {
  display: inline-block; margin-top: 12px;
  font-family: "Space Mono", monospace; font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--lime); color: var(--lime-ink);
  border-radius: 999px; padding: 5px 11px;
}
/* The affiliate date isn't announced — read it as pending, not as an offer. */
.audience-opt label .badge.muted {
  background: var(--cream-2); color: var(--muted);
  border: 1px solid var(--line);
}
.audience-opt label:hover { border-color: rgba(18,32,46,.28); }
.audience-opt input:checked + label {
  border-color: var(--lime); background: rgba(143,198,63,.08);
  box-shadow: 0 0 0 3px rgba(143,198,63,.16);
}
.audience-opt input:focus-visible + label {
  outline: 3px solid var(--navy); outline-offset: 2px;
}

.audience-note {
  margin: 14px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--muted);
  padding-left: 14px; border-left: 2px solid var(--lime);
}

/* ---- fields ---- */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink);
}
.field .req { color: var(--danger); margin-left: 2px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.45; }

.field input, .field select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line); background: #fff; border-radius: 10px;
  padding: 12px 14px; outline: none; transition: .16s; width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23586675' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:hover, .field select:hover { border-color: rgba(18,32,46,.26); }
.field input:focus, .field select:focus {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(143,198,63,.2);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179,38,30,.12);
}
.field .err {
  font-size: 12.5px; color: var(--danger); margin-top: 5px; font-weight: 600;
  display: none;
}
.field .err.show { display: block; }

.field .fixed-country {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-soft); background: var(--cream-2);
  border-radius: 10px; padding: 12px 14px; font-size: 15px; color: var(--muted);
}

/* honeypot — visually and programmatically hidden from real users */
.hp {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

fieldset { border: none; margin: 0; padding: 0; }
.section-gap { margin-top: 28px; }
.legend-mono {
  font-family: "Space Mono", monospace; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px; display: block;
}

/* ---- submit ---- */
.actions { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn {
  font-family: "Space Mono", monospace; font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--navy); color: #fff; border: none; border-radius: 999px;
  padding: 16px 32px; cursor: pointer; transition: .16s;
}
.btn:hover:not(:disabled) { background: var(--navy-3); }
.btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.form-error {
  color: var(--danger); font-size: 14px; font-weight: 600; margin-top: 16px; display: none;
}
.form-error.show { display: block; }

/* ---- shipping notice ---- */
.notice {
  margin-top: 30px; border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  background: var(--cream); border-radius: 10px; padding: 18px 20px;
}
.notice h3 {
  margin: 0 0 8px; font-size: 14px; font-weight: 800;
}
.notice p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.notice .notice-soon { margin-top: 10px; color: var(--ink); }

/* ---- success ---- */
.success { display: none; text-align: center; padding: 20px 0 8px; }
.success.show { display: block; }
.success .tick {
  width: 60px; height: 60px; border-radius: 50%; background: var(--lime);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.success h2 { margin: 0 0 12px; }
.success p { margin: 0 auto; max-width: 460px; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* =====================  FOOTER  ===================== */
.foot {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 40px 0; font-size: 13px;
}
.foot .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot img { height: 18px; opacity: .8; }
.foot .sp { margin-left: auto; }
.foot a { color: rgba(255,255,255,.75); }
