/* OnRoad — landing page styles (scoped to index.html only) */

:root {
  --coral: #F46E5B;
  --coral-dark: #E05540;
  --ink: #0F1923;
  --cream: #FAFAF7;
  --fill: #F3EFE6;
  --border: #E7E2D8;
  --muted: #6B6858;
  --amber: #EBC86A;

  --page-bg: var(--cream);
  --surface: #FFFFFF;
  --text: var(--ink);
  --text-muted: var(--muted);
  --card-border: var(--border);
  --card-bg: #FFFFFF;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(15, 25, 35, 0.05);
  --shadow-md: 0 12px 40px rgba(15, 25, 35, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 25, 35, 0.18);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

a { color: var(--coral); text-decoration: none; }

img, svg { display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
.badge:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(244, 110, 91, 0.35);
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--card-border);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--page-bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--card-border); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.brand .mark { width: 36px; height: 36px; border-radius: 10px; }
.wordmark {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.wordmark .on { color: var(--text); }
.wordmark .road { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  opacity: 0.82;
  transition: opacity .15s ease, color .15s ease;
}
.nav-links a:hover { opacity: 1; color: var(--coral); }
.nav-cta { margin-left: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
}
.hero-radar {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 760px;
  height: 760px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}
.hero h1 .accent { color: var(--coral); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 30ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-trust {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: #34C759; box-shadow: 0 0 0 4px rgba(52,199,89,.16); }

/* Store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 10px 18px 10px 15px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
}
.badge svg { width: 24px; height: 24px; flex: none; }
.badge .b-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.badge .b-small { font-size: 10.5px; opacity: 0.72; letter-spacing: .02em; }
.badge .b-big { font-size: 16px; font-weight: 700; font-family: "Poppins", sans-serif; }
.badge .b-soon {
  position: absolute;
  top: -9px; right: -7px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.phone {
  position: relative;
  width: 300px;
  height: 610px;
  background: #0B131B;
  border-radius: 44px;
  padding: 13px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(15,25,35,.06);
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(1deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 116px; height: 26px;
  background: #0B131B;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: linear-gradient(160deg, #EDE8DC 0%, #E4DECF 100%);
  display: flex;
  flex-direction: column;
}
.map-area {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.map-area svg.map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(15,25,35,.28));
}
.map-ripple {
  position: absolute;
  top: 42%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--coral);
  animation: ripple 2.6s ease-out infinite;
  opacity: 0;
}
.map-ripple.d2 { animation-delay: 1.3s; }
@keyframes ripple {
  0% { opacity: .5; transform: translate(-50%,-50%) scale(0.5); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(4.6); }
}
.app-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 52px 18px 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
}
.app-topbar .status-chip {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.app-topbar .status-chip .live { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.app-sheet {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 26px 26px 33px 33px;
  padding: 20px 18px 22px;
  margin-top: -26px;
  box-shadow: 0 -8px 24px rgba(15,25,35,.10);
}
.app-sheet .grab { width: 38px; height: 4px; border-radius: 3px; background: var(--border); margin: 0 auto 15px; }
.app-sheet h4 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 17px; margin: 0 0 3px; color: var(--ink); }
.app-sheet .sub { font-size: 12.5px; color: var(--muted); margin-bottom: 15px; }
.app-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.app-cat {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 600; color: var(--muted);
}
.app-cat .ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--fill); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.app-cat.active .ic { background: var(--coral); color: #fff; }
.app-cat.active { color: var(--ink); }
.app-cat .ic svg { width: 20px; height: 20px; }
.app-request-btn {
  background: var(--coral);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(244,110,91,.4);
}

/* Floating ETA card */
.eta-card {
  position: absolute;
  bottom: 210px;
  left: -34px;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 12px 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
.eta-card .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #F79A7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-family: "Poppins",sans-serif; font-size: 15px;
}
.eta-card .txt { line-height: 1.25; }
.eta-card .n { font-weight: 700; font-size: 13px; color: var(--ink); }
.eta-card .m { font-size: 11.5px; color: var(--muted); }
.eta-card .stars { color: var(--amber); font-size: 11px; letter-spacing: 1px; }

/* ---------- Section shell ---------- */
section { position: relative; }
.section-pad { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { margin-top: 16px; color: var(--text-muted); font-size: 18px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--coral);
  background: var(--fill);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step .step-ic {
  position: absolute; top: 30px; right: 26px;
  width: 30px; height: 30px; color: var(--coral); opacity: .85;
}
.step h3 { font-size: 20px; margin-bottom: 9px; font-weight: 700; }
.step p { color: var(--text-muted); font-size: 15.5px; }
.step-line {
  position: absolute;
  top: 51px;
  right: -22px;
  width: 22px;
  color: var(--card-border);
  z-index: 1;
}

/* ---------- Drivers value grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.value .v-ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--fill);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value .v-ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.value p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- For mechanics (coral/ink section) ---------- */
.mechanics {
  background: var(--ink);
  color: var(--cream);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  margin: 0 24px;
}
.mechanics-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mechanics .radar-bg {
  position: absolute;
  bottom: -260px; left: -200px;
  width: 620px; height: 620px;
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.mechanics .eyebrow { color: var(--coral); }
.mechanics h2 { font-size: clamp(30px, 4vw, 44px); color: var(--cream); }
.mechanics .lead { margin-top: 16px; color: rgba(250,250,247,.72); font-size: 18px; }
.mech-list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 15px; }
.mech-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: rgba(250,250,247,.9); }
.mech-list .chk {
  flex: none; width: 24px; height: 24px; border-radius: 8px;
  background: rgba(244,110,91,.16); color: var(--coral);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.mech-list .chk svg { width: 14px; height: 14px; }

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 30px 28px;
  backdrop-filter: blur(4px);
}
.pricing-card .trial-tag {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pricing-card .price {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: var(--cream);
  line-height: 1;
}
.pricing-card .price span { font-size: 17px; font-weight: 600; color: rgba(250,250,247,.6); }
.pricing-card .price-sub { margin-top: 10px; color: rgba(250,250,247,.7); font-size: 15px; }
.pricing-card .founder {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 14.5px; color: rgba(250,250,247,.82);
}
.pricing-card .founder strong { color: var(--coral); }
.pricing-card .btn { margin-top: 22px; width: 100%; }

/* ---------- Coverage ---------- */
.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* Wrapping pills rather than a 2-col grid: seven countries in a 2-col grid
   always leaves an orphan on the last row, and fixed-width cards left a lot
   of dead space to the right of short names like "Latvia". Pills size to
   their content and reflow cleanly at any width. */
.country-list { display: flex; flex-wrap: wrap; gap: 10px; }
.country {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 11px 18px 11px 14px;
  font-weight: 600;
  font-size: 15.5px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.country:hover {
  transform: translateY(-2px);
  border-color: rgba(244,110,91,.45);
  box-shadow: 0 8px 20px -10px rgba(244,110,91,.5);
}
/* "More regions soon" reads as part of the same set, but clearly pending. */
.country--soon {
  background: transparent;
  border-style: dashed;
  color: var(--text-muted);
  font-weight: 600;
  box-shadow: none;
}
.country--soon:hover { transform: none; box-shadow: none; }
.country--soon .plus { color: var(--coral); font-weight: 700; }
.country .flag { font-size: 22px; line-height: 1; }
.country .soon-more {
  color: var(--coral);
}
.coverage-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-visual svg { width: 100%; height: 100%; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 19px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--fill);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
  font-size: 20px;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 4px 26px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 66ch;
}
.faq-item .faq-body a { font-weight: 600; }

/* ---------- Download CTA ---------- */
.download {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-card {
  background: linear-gradient(150deg, var(--coral) 0%, #EF5C46 100%);
  border-radius: 40px;
  padding: 72px 40px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.download-card .radar-bg {
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  opacity: .35;
  pointer-events: none;
}
.download-card > * { position: relative; z-index: 1; }
.download-card h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); max-width: 16ch; margin: 0 auto; }
.download-card p { color: rgba(255,255,255,.9); margin-top: 16px; font-size: 18px; }
.download-card .store-badges { justify-content: center; margin-top: 32px; }
.download-card .badge { background: #fff; color: var(--ink); }
.download-card .badge .b-small { opacity: .6; }
.download-card .badge .b-soon { background: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250,250,247,.72);
  padding: 64px 0 40px;
  margin-top: 96px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .brand .wordmark .on { color: var(--cream); }
.footer-brand p { margin-top: 16px; font-size: 15px; color: rgba(250,250,247,.6); max-width: 34ch; }
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(250,250,247,.5);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(250,250,247,.78); font-size: 15px; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(250,250,247,.5);
}
.footer-bottom a { color: rgba(250,250,247,.6); }

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --page-bg: #0F1923;
    --surface: #16222E;
    --text: #FAFAF7;
    --text-muted: #9DA6AE;
    --card-border: #263441;
    --card-bg: #16222E;
    --fill: #1C2A36;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-lg: 0 30px 70px rgba(0,0,0,0.5);
  }
  .wordmark .on { color: var(--cream); }
  .badge { background: #060B10; }
  .mechanics { background: #060B10; border: 1px solid var(--card-border); }
  .app-sheet { background: #fff; }
  .app-sheet h4 { color: var(--ink); }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 42ch; }
  .phone-wrap { order: -1; }
  .phone { transform: none; }
  .mechanics-inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage-wrap { grid-template-columns: 1fr; gap: 40px; }
  .coverage-visual { max-width: 380px; margin: 0 auto; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .section-pad { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .mechanics { margin: 0 16px; }
  .mechanics-inner { padding: 48px 26px; }
  .download-card { margin: 0 16px; padding: 52px 26px; }
  .section-head { margin-bottom: 38px; }
  .hero { padding: 48px 0 64px; }
  .eta-card { left: -14px; bottom: 200px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-coral { width: 100%; }
  .nav { height: 64px; }
  .nav-cta { padding: 10px 16px; font-size: 15px; }
  .wordmark { font-size: 20px; }
  .brand .mark { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- SUGGESTIONS ---------- */
.sg-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.sg-copy h2 {
  font-family: 'Poppins'; font-weight: 800;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.08;
  letter-spacing: -0.02em;
}
.sg-copy p {
  margin-top: 16px; color: var(--text-muted);
  font-size: 18px; line-height: 1.6; max-width: 42ch;
}
.sg-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
/* role selector — segmented control */
.sg-roles { display: flex; gap: 8px; margin-bottom: 22px; }
.sg-role { flex: 1; }
.sg-role input { position: absolute; opacity: 0; pointer-events: none; }
.sg-role span {
  display: block; text-align: center; cursor: pointer;
  padding: 10px 8px; border-radius: 100px;
  border: 1px solid var(--card-border);
  font-weight: 600; font-size: 14.5px; color: var(--text-muted);
  transition: all .16s ease;
}
.sg-role input:checked + span {
  background: var(--ink, #0F1923); color: #fff; border-color: transparent;
}
.sg-role input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }
.sg-role span:hover { border-color: rgba(244,110,91,.5); }

.sg-label {
  display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 8px;
}
.sg-opt { font-weight: 400; color: var(--text-muted); }
.sg-form textarea, .sg-form input[type="email"] {
  width: 100%; font: inherit; font-size: 15.5px;
  padding: 13px 15px;
  border: 1px solid var(--card-border); border-radius: 14px;
  background: #fff; color: inherit; resize: vertical;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.sg-form textarea:focus, .sg-form input[type="email"]:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,110,91,.15);
}
.sg-count {
  text-align: right; font-size: 12.5px; color: var(--text-muted);
  margin: 6px 0 18px;
}
.sg-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sg-submit { width: 100%; margin-top: 20px; justify-content: center; }
.sg-submit[disabled] { opacity: .6; cursor: not-allowed; }
.sg-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; min-height: 1.2em; }
.sg-status.ok   { color: #1F9D62; }
.sg-status.err  { color: #D24A36; }
.sg-fine {
  margin-top: 16px; font-size: 12.5px; line-height: 1.55; color: var(--text-muted);
}
.sg-fine a { color: var(--coral); }
@media (max-width: 900px) {
  .sg-wrap { grid-template-columns: 1fr; gap: 32px; }
}
