/* Marketing holding page — coming-soon framing with the product outlined.
   Deliberately one file and no JavaScript.

   The early-access form and its styles were removed in the commit that took
   contact.html out; recover them from git rather than rewriting when there is
   a mailbox to receive submissions.
   Tokens copied from full/assets/css/style.css so the brand stays consistent
   when the full site comes back. */

:root {
  --ink:      #0a1226;
  --ink-2:    #17264c;
  --accent:   #ff6b35;
  --text:     #1a2333;
  --text-2:   #4a5568;
  --muted:    #6b7689;
  --line:     #e3e8f0;
  --bg:       #ffffff;
  --bg-soft:  #f6f8fc;
  --radius:   14px;
  --shadow:   0 4px 12px rgba(10, 18, 38, .07), 0 18px 40px rgba(10, 18, 38, .09);
  --sans: "Segoe UI Variable Display", "Segoe UI", -apple-system, BlinkMacSystemFont,
          Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap.narrow { max-width: 720px; }

/* --- hero ------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 46px 0 92px;
}

/* Warm bloom behind the headline. Pure CSS — no image request, and it
   survives the img-src CSP without a data: URI. */
.hero::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 107, 53, .20), transparent 72%);
  pointer-events: none;
}

.hero .wrap { position: relative; }

/* --- brand ------------------------------------------------------------ */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.hero .brand { margin-bottom: 54px; }

.brand svg { width: 30px; height: 30px; display: block; }

.brand span {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

/* --- coming soon banner ----------------------------------------------- */

/* Full-bleed strip above the hero. Dark text on accent rather than the
   reverse: this sits directly on top of the ink hero, and an ink-on-ink
   banner would read as part of it. */
.banner {
  margin: 0;
  padding: 11px 24px;
  background: var(--accent);
  color: #1a0d05;
  text-align: center;
  font-size: 13.5px;
  font-weight: 660;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- headings --------------------------------------------------------- */

.hero h1 {
  margin: 0 0 18px;
  /* Explicit px, not ch. A ch-based max-width resolves against the parent's
     font size, which shredded a headline here once already. */
  max-width: 760px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 660;
}

.lede {
  margin: 0 0 34px;
  max-width: 580px;
  font-size: 17.5px;
  line-height: 1.6;
  color: #b9c2d6;
}

h2 {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 660;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12.5px;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.accent { color: var(--accent); }

.intro {
  margin: 0 0 44px;
  max-width: 620px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-2);
}

/* --- buttons and links ------------------------------------------------ */

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  /* 12px vertical puts the hit area at 44px, the minimum recommended tap
     target. 11px measured 42. */
  padding: 12px 22px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #1a0d05;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 640;
  cursor: pointer;
  transition: background .15s ease;
}

.btn:hover { background: #ff8355; }

.hero .link {
  color: #b9c2d6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: color .15s ease, border-color .15s ease;
}

.hero .link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .5);
}

/* --- sections --------------------------------------------------------- */

.section { padding: 78px 0; }

.section + .section { border-top: 1px solid var(--line); }

/* --- feature list ----------------------------------------------------- */

/* A single column of rules rather than a grid. Five items in two columns
   strands an orphan cell in the last row whichever way it is arranged. */

.feats {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.feat {
  display: flex;
  gap: 26px;
  padding: 26px 2px;
  border-bottom: 1px solid var(--line);
}

.num {
  flex: 0 0 auto;
  width: 30px;
  padding-top: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.feat h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 650;
  color: var(--ink);
}

.feat p {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}

/* --- HOTMA band ------------------------------------------------------- */

.band {
  background: var(--ink);
  color: #fff;
  padding: 68px 0;
}

.band h2 { color: #fff; }

.band-copy {
  margin: 0;
  max-width: 660px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #b9c2d6;
}

/* --- notes list ------------------------------------------------------- */

.notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.notes li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-2);
}

.notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.notes strong {
  color: var(--ink);
  font-weight: 640;
}

/* --- footer ----------------------------------------------------------- */

.foot {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  font-size: 13.5px;
  color: var(--muted);
}

.foot .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.foot a:hover { color: var(--text); }

/* --- responsive ------------------------------------------------------- */

@media (max-width: 560px) {
  .hero { padding: 34px 0 64px; }
  .hero .brand { margin-bottom: 38px; }
  .hero h1 { font-size: 33px; }
  .lede { font-size: 16.5px; }
  .section { padding: 56px 0; }
  .band { padding: 52px 0; }
  h2 { font-size: 25px; }
  .feat { gap: 16px; padding: 22px 0; }
  .num { width: 24px; }
  .feat h3 { font-size: 17.5px; }
  .feat p { font-size: 15.5px; }
  .foot .wrap { flex-direction: column; align-items: flex-start; }
}

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