/* ============================================================
   Levo Tools — shared brand tokens + base
   Swap --teal to the exact Levo brand hex when you have it.
   ============================================================ */

:root {
  --ink:        #0f1b24;   /* near-black navy, primary text + dark surfaces */
  --ink-soft:   #33454f;   /* secondary text */
  --surface:    #f7f8f8;   /* page background */
  --card:       #ffffff;   /* card background */
  --line:       #e2e7e9;   /* hairline borders */
  --teal:       #14b8a6;   /* Levo accent — confirm exact hex, then swap here */
  --teal-deep:  #0d8f81;   /* hover / pressed */
  --amber:      #e8a13a;   /* sparing highlight */

  --font-display: "Jost", system-ui, sans-serif;
  --font-body:    "Public Sans", system-ui, -apple-system, sans-serif;

  --wrap: 1080px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15,27,36,.04), 0 8px 24px rgba(15,27,36,.06);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* --- top bar / wordmark --- */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: .30em;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--ink);
}
.wordmark .sub {
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--ink-soft);
  margin-left: .1em;
}

/* --- hero --- */
.hero { padding: 72px 0 40px; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  color: var(--teal-deep);
  margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 20ch;
}
.hero p { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin: 0; }

/* --- tool cards --- */
.tools { padding: 24px 0 88px; display: grid; gap: 20px;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tool {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.tool h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 0; }
.tool p { color: var(--ink-soft); margin: 0; flex: 1; font-size: 15px; }
.tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.tag.live   { background: rgba(20,184,166,.12); color: var(--teal-deep); }
.tag.soon   { background: #eef1f2; color: var(--ink-soft); }
.tool .go { font-family: var(--font-display); font-weight: 500; letter-spacing: .02em; }

/* --- buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  background: var(--teal); color: #fff;
  padding: 12px 22px; border-radius: 10px; border: 0;
  cursor: pointer; font-size: 15px;
}
.btn:hover { background: var(--teal-deep); text-decoration: none; }

/* --- footer --- */
.foot { border-top: 1px solid var(--line); padding: 28px 0; color: var(--ink-soft); font-size: 13px; }

/* --- accessibility --- */
:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
