/* ─────────────────────────────────────────────
   TRY GARAGE AI — Main Styles
   Aesthetic: Dark industrial • motorsport-grade
   Fonts: Bebas Neue + DM Sans + JetBrains Mono
───────────────────────────────────────────── */

:root {
  --bg:        #080808;
  --bg2:       #0f0f0f;
  --bg3:       #161616;
  --bg4:       #1e1e1e;
  --border:    #242424;
  --border2:   #2e2e2e;
  --text:      #e8e8e8;
  --text2:     #999;
  --text3:     #555;
  --accent:    #ff4500;
  --accent2:   #ff6a00;
  --accent-dim:#1a0800;
  --green:     #00e676;
  --green-dim: #00150a;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'DM Sans', sans-serif;
  --display:   'Bebas Neue', sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--display); letter-spacing: 0.02em; line-height: 1.1; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p { color: var(--text2); }
a { color: var(--text); text-decoration: none; }
code { font-family: var(--mono); font-size: 0.85em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  background: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,69,0,.4);
}
.btn--outline {
  border-color: var(--border2);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--text3);
  color: var(--text);
  background: var(--bg3);
}
.btn--ghost { color: var(--text2); }
.btn--ghost:hover { color: var(--text); }
.btn--lg { padding: 13px 28px; font-size: 15px; }
.btn--xl { padding: 16px 40px; font-size: 17px; font-weight: 600; }
.btn--sm { padding: 6px 14px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 60px;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border2); }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .04em;
  margin-right: 48px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0;
}
.nav__logo-text strong { color: var(--accent); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}
.nav__links a {
  color: var(--text2);
  font-size: 14px;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; gap: 10px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; }

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 32px 60px;
  position: relative;
  overflow: hidden;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}
.hero__content { flex: 1; max-width: 560px; }
.hero__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,69,0,.3);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero__headline em { color: var(--accent); font-style: normal; }
.hero__sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { display: flex; flex-direction: column; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat__num { font-family: var(--display); font-size: 2rem; color: var(--text); }
.stat__label { font-size: 11px; color: var(--text3); letter-spacing: .05em; text-transform: uppercase; }
.stat__divider { width: 1px; height: 36px; background: var(--border2); }

/* Hero Visual */
.hero__visual { flex: 1; max-width: 520px; }
.hero__mockup {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
}
.mockup__bar {
  height: 34px;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border2);
}
.mockup__screen {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mockup__label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.mockup__car { flex: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.mockup__car svg { width: 100%; display: block; }
.mockup__arrow { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero__visual { width: 100%; max-width: 100%; }
}

/* ── LOGOS ── */
.logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  overflow: hidden;
}
.logos__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text3);
  text-align: center;
  margin-bottom: 16px;
}
.logos__strip {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.logos__item {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--text3);
}

/* ── SECTIONS ── */
section:not(.hero):not(.logos) {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 64px;
}
.section-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 16px; max-width: 520px; }

/* ── FEATURES ── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card--large { grid-column: span 1; }
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 14px; }
.feature-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
}
@media (max-width: 600px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
}

/* ── HOW IT WORKS ── */
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step__num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--accent);
  opacity: .5;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 13px; }
.step__connector {
  width: 32px;
  height: 2px;
  background: var(--border2);
  margin-top: 48px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how__steps { flex-direction: column; }
  .step__connector { width: 2px; height: 24px; margin: 0 0 0 24px; }
}

/* ── EMBED SECTION ── */
.embed-section { background: none; }
.embed-section__content { max-width: 800px; }
.embed-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.embed-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  margin-bottom: -1px;
}
.embed-tab--active { color: var(--text); border-bottom-color: var(--accent); }
.embed-panel { display: none; }
.embed-panel--active { display: block; }
.code-block {
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.code-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.code-block__header span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: .05em;
}
.copy-btn {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: none;
  border: 1px solid rgba(255,69,0,.3);
  padding: 3px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.copy-btn:hover { background: var(--accent-dim); }
pre {
  padding: 20px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: #aaa;
}
pre code { color: inherit; background: none; }
.options-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.options-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--bg2);
  color: var(--text2);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
}
.options-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  vertical-align: top;
}
.options-table td code {
  color: var(--accent);
  background: var(--accent-dim);
  padding: 1px 5px;
  border-radius: 3px;
}
.embed-note {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text2);
}

/* ── PRICING ── */

/* Monthly / Annual toggle */
.pricing__toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 36px;
}
.pricing__toggle-btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 7px 20px;
  border-radius: 50px;
  background: transparent;
  color: var(--text3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.pricing__toggle-btn--active {
  background: var(--accent);
  color: #fff;
}
.pricing__save-badge {
  background: var(--green);
  color: #000;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Subscription grids */
.pricing__grid--subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.pricing__grid--team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Plan cards */
.pricing-card {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255,69,0,.07) 0%, var(--bg2) 60%);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(255,69,0,.12);
}
.pricing-card--team { border-color: rgba(0,230,118,.25); }
.pricing-card--enterprise { border-color: var(--border2); }
.pricing-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 3px 14px;
  border-radius: 3px;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .05em;
  margin-bottom: 14px;
  color: var(--text2);
}
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; line-height: 1; }
.pricing-card__amount { font-family: var(--display); font-size: 2.6rem; color: var(--accent); }
.pricing-card__per { font-family: var(--mono); font-size: 12px; color: var(--text3); }
.pricing-card__price--custom { font-family: var(--display); font-size: 1.6rem; color: var(--text2); margin-bottom: 4px; }
.pricing-card__units {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.pricing-card__desc { font-size: 12px; color: var(--text3); margin-bottom: 16px; font-family: var(--mono); }
.pricing-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-card__features li { font-size: 13px; color: var(--text2); }
.pricing-card__topup {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  margin-top: -16px;
  margin-bottom: 16px;
}

/* "Need More Units?" top-up section */
.pricing__topup-section {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  margin-top: 8px;
  margin-bottom: 48px;
}
.pricing__topup-section h2 { margin-bottom: 8px; }
.pricing__topup-section > p { font-size: 14px; color: var(--text3); margin-bottom: 28px; }
.pricing__topup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.topup-card {
  position: relative;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.topup-card:hover { transform: translateY(-2px); border-color: var(--border2); }
.topup-card--popular { border-color: var(--accent); }
.topup-card__badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 9px; letter-spacing: .08em;
  padding: 2px 10px; border-radius: 0 0 5px 5px;
  white-space: nowrap;
}
.topup-card__units { font-family: var(--display); font-size: 2rem; color: var(--green); }
.topup-card__label { font-family: var(--mono); font-size: 10px; color: var(--text3); margin-bottom: 10px; }
.topup-card__price { font-family: var(--display); font-size: 1.5rem; color: var(--text); }
.topup-card__per { font-family: var(--mono); font-size: 10px; color: var(--text3); }
.pricing__topup-note { font-size: 12px; color: var(--text3); text-align: center; margin-top: 16px; font-family: var(--mono); }

.pricing__note {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}
.pricing__note h4 { margin-bottom: 16px; }
.cost-items { display: flex; flex-direction: column; gap: 0; }
.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text2);
}
.cost-item--total {
  border-bottom: none;
  font-weight: 600;
  color: var(--text);
  padding-top: 14px;
}
.cost-val { font-family: var(--mono); color: var(--accent); }
.pricing__payment h4 { margin-bottom: 16px; }
.payment-methods { display: flex; gap: 16px; flex-wrap: wrap; }
.payment-method {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 160px;
  flex: 1;
  text-align: center;
}
.payment-method--soon { opacity: .5; }
.payment-method__icon { font-size: 1.8rem; margin-bottom: 8px; }
.payment-method__name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.payment-method__note { font-size: 12px; color: var(--text3); font-family: var(--mono); }

@media (max-width: 768px) {
  .pricing__grid--subs { grid-template-columns: 1fr; }
  .pricing__grid--team { grid-template-columns: 1fr; }
  .pricing__topup-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── API SECTION ── */
.api-section__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.api-endpoints { flex: 1; }
.endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--bg2);
  transition: var(--transition);
}
.endpoint:hover, .endpoint--active { border-color: var(--border2); background: var(--bg3); }
.endpoint__method {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.endpoint__method--post { background: rgba(255,69,0,.15); color: var(--accent); }
.endpoint__method--get { background: rgba(0,230,118,.1); color: var(--green); }
.endpoint__path { font-family: var(--mono); font-size: 13px; flex: 1; }
.endpoint__desc { font-size: 12px; color: var(--text3); }
.api-cta { max-width: 260px; }
.api-cta p { font-size: 14px; margin-bottom: 20px; }
.api-cta .btn { margin-bottom: 10px; }

@media (max-width: 768px) {
  .api-section__content { flex-direction: column; }
  .api-cta { max-width: 100%; }
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, #100400 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 400px; margin: 0 auto 36px; }
.cta-section__note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 32px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 240px; }
.footer__brand p { font-size: 13px; margin-top: 12px; }
.footer__links { display: flex; gap: 64px; flex: 1; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.footer__col a { font-size: 13px; color: var(--text2); transition: var(--transition); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--mono);
}

@media (max-width: 768px) {
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 13px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.toast--success { border-left: 3px solid var(--green); }
.toast--error { border-left: 3px solid #ff4444; }
.toast--info { border-left: 3px solid var(--accent); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
