/* landing.css — the public landing chooser (expansion part 5).
 *
 * Design direction (owner): "simple, white, not a copy of list.am but building on that
 * vibe" — utilitarian clarity, more modern and calm. White background, system font
 * stack, generous whitespace, ONE restrained accent used only for interactive elements,
 * large full-width tap targets, mobile-first (max-width 32rem centered).
 * Self-contained: no CDN, no web fonts, no images, no JavaScript. */

:root {
  --bg: #ffffff;
  --text: #17181c;
  --text-2: #565b63;
  --text-3: #6b7077;
  --border: #e6e8eb;
  --accent: #166e46;        /* calm deep green — land, trust */
  --accent-press: #0f5433;
  --accent-soft: #f1f8f4;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 32rem;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
}

/* ---- header: wordmark + language switcher -------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--accent);
}
.langs { font-size: 13px; }
.lang {
  color: var(--accent);
  text-decoration: none;
  padding: 6px 4px; /* comfortable tap target */
}
.lang:hover { text-decoration: underline; }
.lang.on {
  color: var(--text);
  font-weight: 700;
}
.lang-sep { color: var(--text-3); padding: 0 2px; }

/* ---- main content --------------------------------------------------------- */
main { padding-top: 9vh; }

.step {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-3);
}
h1 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.3px;
}
h2 {
  margin: 26px 0 0;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}
.sub {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
}

/* ---- chooser buttons: large, full-width, honest --------------------------- */
.choices {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  transition: border-color 120ms ease, background-color 120ms ease;
}
.choice:hover, .choice:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}
.choice:active {
  border-color: var(--accent-press);
  background: var(--accent-soft);
}
.choice-text { display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; min-width: 0; }
.choice .label { font-size: 17px; font-weight: 600; line-height: 1.3; }
.choice .sublabel { font-size: 13px; color: var(--text-2); }
.choice .chev {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  flex: none;
}
.tag {
  display: inline-block;
  vertical-align: 2px;
  margin-left: 6px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-2);
}

/* ---- step-1 vertical icons (owner mockup) ---------------------------------
 * Icon left, text block middle, chevron right. Inline SVG only — still no image
 * requests, no fonts, no JS. Steps 2/3 render no .choice-icon and are untouched. */
.choice.has-icon { gap: 15px; padding-left: 14px; }
.choice-icon {
  flex: none;
  width: 56px;
  height: 56px;
}
.choice-icon svg { display: block; width: 100%; height: 100%; }
/* The long hy labels can need two lines next to an icon; balance them so the break
 * falls between words instead of inside "(առք/վաճառք)". */
.choice.has-icon .label { text-wrap: balance; }

/* Narrow phones: a smaller icon plus a tighter card gutter keeps the short labels
 * (and their "soon" tag) on one line. */
@media (max-width: 400px) {
  .choice.has-icon { gap: 12px; padding-left: 12px; padding-right: 14px; }
  .choice-icon { width: 44px; height: 44px; }
  .choice.has-icon .tag { margin-left: 5px; padding: 2px 7px; }
}

.note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--text-3);
}
.back {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 0;
  color: var(--accent);
  font-size: 15px;
  text-decoration: none;
}
.back:hover { text-decoration: underline; }

/* ---- footer ---------------------------------------------------------------- */
footer {
  margin-top: auto;
  padding-top: 44px;
  font-size: 12px;
  color: var(--text-3);
}

/* ---- intro card: what the bots are (owner request 2026-07-28) -------------- */
.intro-card {
  margin: 4px 0 8px;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid #dcefe4;
  border-radius: 14px;
}
.intro-card p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}
.intro-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
