/* ============================================================
   IvoirePT — landing page styles
   Self-contained: brand tokens duplicated from styles.css so the
   landing has zero coupling to the React app's stylesheet.
   ============================================================ */

:root{
  --paper:#f8f7f4;
  --paper-2:#edeae3;
  --surface:#ffffff;
  --carbon:#1b1a18;
  --ink:#19181a;
  --ink-2:#52504c;
  --ink-3:#8b877f;
  --line:#e7e2d9;
  --line-2:#d7d1c6;
  --accent:#F77F00;
  --accent-soft:#FDEBD2;
  --ok:#3f7d54; --ok-soft:#e6efe8;
  --warn:#b9762f; --warn-soft:#f6ecdd;
  --r-sm:10px; --r-md:18px; --r-lg:26px;
  --sh-1:0 1px 2px rgba(27,26,24,.04), 0 1px 3px rgba(27,26,24,.05);
  --sh-2:0 2px 6px rgba(27,26,24,.05), 0 10px 24px rgba(27,26,24,.06);
  --sh-3:0 8px 18px rgba(27,26,24,.08), 0 24px 60px rgba(27,26,24,.10);
  --maxw:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Archivo', system-ui, sans-serif;
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
.mono{ font-family:'IBM Plex Mono', ui-monospace, monospace; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.eyebrow{
  font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent); font-weight:600;
}

/* ---- logo lockup (transparent mark + live text) ---- */
.lockup{ display:flex; align-items:center; gap:12px; }
.lockup .mk{ width:40px; height:40px; display:block; }
.lockup .wm{ font-weight:800; font-size:24px; letter-spacing:.02em; line-height:1; }
.lockup .pb{
  font-family:'IBM Plex Mono', monospace; font-size:9px; letter-spacing:.18em;
  text-transform:uppercase; margin-top:4px; opacity:.7;
}
.lockup--light .wm{ color:#fff; }
.lockup--light .pb{ color:rgba(255,255,255,.75); }
.lockup--dark .wm{ color:var(--ink); }
.lockup--dark .pb{ color:var(--ink-3); }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:8px; border:none;
  background:var(--accent); color:#fff; border-radius:12px;
  padding:15px 26px; font-weight:700; font-size:15px; transition:transform .08s ease, filter .15s ease;
}
.btn:hover{ filter:brightness(1.05); }
.btn:active{ transform:translateY(1px); }
.btn[disabled]{ opacity:.6; cursor:default; }
.btn--block{ width:100%; justify-content:center; }

/* ---- hero (Option B) ---- */
.hero{ position:relative; min-height:100svh; display:flex; }
.hero__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 28%; }
.hero__overlay{ position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,22,28,.20) 0%, rgba(20,22,28,.48) 52%, rgba(20,22,28,.85) 100%); }
.hero__inner{ position:relative; z-index:2; width:100%; max-width:var(--maxw);
  margin:0 auto; padding:40px 24px; display:flex; flex-direction:column; justify-content:space-between; color:#fff; }
.hero__bottom{ max-width:760px; padding-bottom:18px; }
.badge{
  display:inline-block; font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:.14em;
  text-transform:uppercase; color:#fff; background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:5px 12px; margin-bottom:18px;
}
.hero h1{ font-size:clamp(34px, 6vw, 58px); line-height:1.04; font-weight:800; letter-spacing:-.02em; margin:0 0 16px; max-width:16ch; }
.hero__sub{ font-size:clamp(15px, 2vw, 19px); line-height:1.5; color:rgba(255,255,255,.9); max-width:50ch; margin:0 0 28px; }

/* ---- generic section ---- */
.section{ padding:88px 0; }
.section--alt{ background:var(--paper-2); }
.section__head{ max-width:640px; margin:0 0 40px; }
.section__head h2{ font-size:clamp(26px, 4vw, 38px); line-height:1.1; font-weight:800; letter-spacing:-.01em; margin:8px 0 12px; }
.section__head p{ color:var(--ink-2); font-size:17px; margin:0; }

/* ---- value cards ---- */
.cards{ display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; }
.card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); padding:26px; box-shadow:var(--sh-1); }
.card .ic{ width:34px; height:34px; margin-bottom:14px; }
.card h3{ font-size:18px; font-weight:700; margin:0 0 8px; }
.card p{ color:var(--ink-2); font-size:14.5px; margin:0; }

/* ---- steps ---- */
.steps{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; counter-reset:step; }
.step{ position:relative; padding:26px; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); }
.step__n{ font-family:'IBM Plex Mono', monospace; font-weight:600; color:var(--accent); font-size:13px; letter-spacing:.1em; margin-bottom:10px; }
.step h3{ font-size:18px; margin:0 0 6px; }
.step p{ color:var(--ink-2); font-size:14.5px; margin:0; }
.note{ margin-top:32px; background:var(--warn-soft); border:1px solid #ecdcc0; color:#7a5a23;
  border-radius:var(--r-sm); padding:14px 18px; font-size:14px; }

/* ---- waitlist form ---- */
.form-wrap{ max-width:680px; margin:0 auto; }
.form-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:34px; box-shadow:var(--sh-2); }
.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field label{ font-size:13px; font-weight:600; color:var(--ink-2); }
.field input, .field select{
  font-family:inherit; font-size:15px; color:var(--ink); background:#fff;
  border:1px solid var(--line-2); border-radius:var(--r-sm); padding:12px 14px; width:100%;
}
.field input:focus, .field select:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.msg{ border-radius:var(--r-sm); padding:13px 16px; font-size:14.5px; margin-bottom:16px; }
.msg--ok{ background:var(--ok-soft); border:1px solid #c9e0d0; color:#2c5d3d; }
.msg--err{ background:var(--warn-soft); border:1px solid #ecdcc0; color:#7a5a23; }
.consent{ font-size:12.5px; color:var(--ink-3); margin:14px 0 0; }

/* ---- footer ---- */
.footer{ background:var(--carbon); color:#fff; padding:48px 0; }
.footer a{ color:rgba(255,255,255,.8); }
.footer a:hover{ color:#fff; }
.footer .small{ color:rgba(255,255,255,.5); font-size:13px; }
.footer__grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:32px; align-items:start; }
.footer__tag{ color:rgba(255,255,255,.6); font-size:13.5px; line-height:1.55; margin:16px 0 0; max-width:34ch; }
.footer__h{ font-family:'IBM Plex Mono', monospace; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:10px; }
.footer__nap{ font-style:normal; color:rgba(255,255,255,.8); font-size:14px; line-height:1.75; }
.footer__hours{ color:rgba(255,255,255,.55); }
.footer__links{ display:flex; flex-direction:column; gap:8px; font-size:14px; }
.footer__copy{ color:rgba(255,255,255,.45); font-size:13px; margin-top:32px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); }

/* ---- top bar (inner pages) + contact grid ---- */
.topbar{ padding:18px 0; border-bottom:1px solid var(--line); background:var(--surface); }
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.contact-grid .card h3{ font-size:17px; margin:0 0 10px; }
.contact-grid address{ font-style:normal; color:var(--ink-2); line-height:1.9; }
.contact-grid a.link{ color:var(--accent); font-weight:600; }
@media (max-width:760px){ .footer__grid{ grid-template-columns:1fr; gap:28px; } .contact-grid{ grid-template-columns:1fr; } }

/* ---- responsive ---- */
@media (max-width:900px){
  .cards{ grid-template-columns:repeat(2, 1fr); }
  .steps{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
}
@media (max-width:560px){
  .cards{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .form-card{ padding:24px; }
  .lockup .wm{ font-size:21px; }
  .lockup .mk{ width:34px; height:34px; }
}
