/* =========================================================
   Alto — SaaS marketing site
   Warm editorial system: paper background, serif display type,
   one solid accent color. No gradients, no blur, no glow.
   ========================================================= */

:root {
  --bg: #f4ede4;
  --bg-elevated: #fbf7ef;
  --surface: rgba(28, 26, 23, 0.035);
  --surface-strong: rgba(28, 26, 23, 0.06);
  --border: rgba(28, 26, 23, 0.14);
  --border-strong: rgba(28, 26, 23, 0.26);
  --text: #1c1a17;
  --text-muted: #5b564c;
  --text-faint: #948c7e;

  --accent: #c05b31;
  --accent-ink: #fbf7ef;
  --accent-soft: rgba(192, 91, 49, 0.1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #1c1a17;
  --bg-elevated: #242019;
  --surface: rgba(244, 237, 228, 0.05);
  --surface-strong: rgba(244, 237, 228, 0.08);
  --border: rgba(244, 237, 228, 0.14);
  --border-strong: rgba(244, 237, 228, 0.26);
  --text: #f4ede4;
  --text-muted: #b7afa0;
  --text-faint: #857d70;

  --accent: #e07a4e;
  --accent-ink: #1c1a17;
  --accent-soft: rgba(224, 122, 78, 0.14);

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.accent-word {
  color: var(--accent);
  font-style: italic;
}

/* ---------- utility: reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
:root[data-theme="dark"] .paper-grain {
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 9px; }
.brand-mark { width: 26px; height: 26px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login { display: none; }
@media (min-width: 720px) { .nav-login { display: inline-flex; } }

.theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-strong); }
.icon-sun { display: none; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root[data-theme="dark"] .icon-moon { display: none; }

.lang-toggle {
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 20px; height: 1.4px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 16px; right: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; border-radius: 6px; }
  .nav-links a:hover { background: var(--surface); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.25s ease, opacity 0.25s ease;
}
.btn-lg { padding: 14px 28px; font-size: 0.98rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.92; }

.btn-outline {
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--surface); transform: translateY(-2px); }

.btn-ghost {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.btn-ghost:hover { color: var(--text); text-decoration-color: var(--text-muted); }

.play-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 28px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
}

.hero-copy { position: relative; }

.hero-stamp {
  position: absolute;
  top: -34px;
  right: 4%;
  width: 62px;
  height: 62px;
  color: var(--accent);
  transform: rotate(-11deg);
  opacity: 0.9;
}
@media (max-width: 980px) { .hero-stamp { display: none; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.eyebrow:hover { color: var(--text); border-color: var(--accent); }
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
@media (max-width: 980px) { .hero-sub { margin-inline: auto; } }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
@media (max-width: 980px) { .hero-actions { justify-content: center; } }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
@media (max-width: 980px) { .hero-meta { justify-content: center; } }

.avatar-stack { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  background: var(--text);
  color: var(--bg);
  border: 2px solid var(--bg);
  margin-left: -9px;
}
.avatar:first-child { margin-left: 0; }

/* ---------- dashboard mockup: an index-card ledger, not a glossy app screenshot ---------- */
.hero-visual { position: relative; }

.dashboard-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: rotate(-1.2deg);
  animation: cardFloat 9s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.dashboard-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.dashboard-topbar-mark { width: 9px; height: 9px; background: var(--accent); flex-shrink: 0; }
.dashboard-title { font-size: 0.78rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }

.dashboard-body { padding: 24px; }

.dash-stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.dash-stat-label { font-size: 0.8rem; color: var(--text-muted); width: 100%; }
.dash-stat-value { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; }
.dash-stat-delta { font-size: 0.78rem; color: var(--accent); }

.dash-chart { width: 100%; height: 84px; margin: 10px 0 20px; }

.dash-rows { display: flex; flex-direction: column; }
.dash-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  padding: 11px 2px;
  border-top: 1px solid var(--border);
}
.dash-row:first-child { border-top: none; }
.row-dot { display: none; }
.row-val { margin-left: auto; color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  animation: floatUpDown 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.85rem; font-weight: 600; }
.float-card p { color: var(--text-muted); margin-top: 1px; }

.float-toast { top: -6%; right: -8%; animation-delay: -1.5s; }
.toast-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.float-clock { bottom: -8%; left: -8%; }
.clock-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 980px) {
  .float-card { display: none; }
  .dashboard-card { transform: none; animation: none; }
}

/* ---------- marquee ---------- */
.marquee-wrap { margin-top: 96px; text-align: center; }
.marquee-label { color: var(--text-faint); font-size: 0.82rem; margin-bottom: 22px; }
.marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-display);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-faint);
  white-space: nowrap;
}
.marquee-track span:not(:last-child)::after {
  content: "·";
  margin-left: 48px;
  font-style: normal;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin: 16px 0; }
.section-head p { color: var(--text-muted); font-size: 1.02rem; }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   FEATURES — numbered editorial entries, not icon badges
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } }

.bento-wide { grid-column: span 2; }
@media (max-width: 620px) { .bento-wide { grid-column: span 1; } }

.bento-card {
  position: relative;
  background: var(--bg);
  padding: 32px;
  transition: background 0.3s ease;
}
.bento-card:hover { background: var(--bg-elevated); }

.feature-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.feature-icon {
  width: 26px;
  height: 26px;
  color: var(--text);
  flex-shrink: 0;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
}
.bento-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.bento-card p { color: var(--text-muted); font-size: 0.94rem; max-width: 40ch; }

.bento-visual {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 60px;
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.mini-bar {
  flex: 1;
  height: var(--h);
  background: var(--text-faint);
  animation: barGrow 1s var(--ease) both;
}
.mini-bar:nth-child(even) { background: var(--accent); }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }

/* =========================================================
   TABS
   ========================================================= */
.tabs { max-width: 920px; margin: 0 auto; }
.tabs-nav {
  position: relative;
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.tab-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 0 16px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-faint);
  transition: color 0.3s ease;
}
.tab-btn.is-active { color: var(--text); }
.tab-icon { width: 18px; height: 18px; flex-shrink: 0; }
.tab-indicator {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.4s var(--ease), width 0.4s var(--ease);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.tab-panel.is-active {
  display: grid;
  animation: fadeSlideIn 0.5s var(--ease);
}
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) { .tab-panel { grid-template-columns: 1fr; } }

.tab-copy h3 { font-size: 1.55rem; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.check-list li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
}

.tab-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.pill-alt { border-color: var(--accent); color: var(--accent); }
.pill-warn { color: var(--text); border-style: dashed; }

/* =========================================================
   STEPS
   ========================================================= */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step { border-top: 1px solid var(--border-strong); padding-top: 20px; }
.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.step-icon { width: 22px; height: 22px; color: var(--text); flex-shrink: 0; }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* =========================================================
   CTA BAND — a confident solid color block, not a glow card
   ========================================================= */
.cta-band {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 90px 40px;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 16px; color: var(--accent-ink); }
.cta-inner p { opacity: 0.85; margin-bottom: 32px; }
.cta-inner .hero-actions { justify-content: center; }
.cta-band .btn-primary { background: var(--accent-ink); color: var(--accent); }
.cta-band .btn-ghost { color: var(--accent-ink); opacity: 0.85; }
.cta-band .btn-ghost:hover { opacity: 1; text-decoration-color: var(--accent-ink); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 70px 28px 30px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand p { color: var(--text-muted); margin: 14px 0 22px; max-width: 280px; font-size: 0.92rem; }

.newsletter { display: flex; gap: 0; max-width: 320px; border-bottom: 1px solid var(--border-strong); }
.newsletter input {
  flex: 1;
  padding: 10px 4px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.86rem;
}
.newsletter input:focus { outline: none; }
.newsletter .btn { border-radius: 0; padding: 10px 4px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 560px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }

.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.84rem;
}
.social-links { display: flex; gap: 14px; }
.social-links a { color: var(--text-faint); transition: color 0.25s ease; }
.social-links a:hover { color: var(--text); }

/* =========================================================
   TRIAL SIGNUP MODAL
   ========================================================= */
.trial-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.trial-modal.is-open { opacity: 1; pointer-events: auto; }
.trial-modal-backdrop { position: absolute; inset: 0; background: rgba(28, 26, 23, 0.55); }
.trial-modal-inner {
  position: relative;
  width: 100%; max-width: 440px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transform: scale(0.97);
  transition: transform 0.35s var(--ease);
}
.trial-modal.is-open .trial-modal-inner { transform: scale(1); }
.trial-modal-close {
  position: absolute; top: -44px; right: 0;
  color: var(--bg); font-size: 1.6rem;
  width: 36px; height: 36px;
}
.trial-modal-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.trial-modal-sub { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.trial-form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.trial-form label { display: flex; flex-direction: column; gap: 6px; }
.trial-form label span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.trial-form input {
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
}
.trial-form input:focus { outline: none; border-color: var(--accent); }
.trial-form .btn { margin-top: 6px; }

/* =========================================================
   SCROLLBAR (webkit)
   ========================================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 8px; }
