/* ─── VARIABLES ─── */
:root {
  --bg:        #0c0e0f;
  --bg2:       #111416;
  --bg3:       #181c1e;
  --border:    #232829;
  --border2:   #2e3438;
  --text:      #e8eaeb;
  --muted:     #6b7478;
  --muted2:    #4a5154;
  --accent:    #e05c3a;
  --accent2:   #c44e2e;
  --green:     #3dba74;
  --green-dim: #1a3d2b;
  --red:       #e05c3a;
  --red-dim:   #3d1a0f;
  --yellow:    #d4a017;
  --yellow-dim:#3d2e05;
  --mono:      'IBM Plex Mono', monospace;
  --serif:     'DM Serif Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── FLASH ─── */
.flash-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0.75rem 2rem;
  font-size: 13px;
  font-family: var(--mono);
  text-align: center;
}
.flash-bar--notice { background: var(--green-dim); color: var(--green); border-bottom: 1px solid var(--green); }
.flash-bar--alert  { background: var(--red-dim);   color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: rgba(12, 14, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-logo-mark {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  padding: 7px 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent2); }

/* ─── HERO ─── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 9rem 2rem 6rem;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--mono);
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover  { background: var(--accent2); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--mono);
  padding: 12px 28px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.btn-secondary:hover { color: var(--text); border-color: var(--muted2); }

.hero-note {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--muted2);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow-x: auto;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.trust-stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
}

.trust-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* ─── SECTION SHARED ─── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.section-title em { color: var(--accent); font-style: italic; }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── DASHBOARD PREVIEW ─── */
.dashboard-section {
  padding: 6rem 4rem;
}

.dashboard-section .dashboard {
  max-width: 780px;
  margin: 3rem auto 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.dashboard-section .dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.dashboard-section .dashboard-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.dashboard-section .dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.dashboard-section .dashboard-ts { color: var(--muted); font-size: 12px; }

.dashboard-section .alert-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.9rem 1.25rem;
  background: rgba(224, 92, 58, 0.08);
  border-bottom: 1px solid rgba(224, 92, 58, 0.2);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.dashboard-section .alert-banner strong { color: var(--text); }
.dashboard-section .alert-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.dashboard-section .job-row {
  display: grid;
  grid-template-columns: 1fr 80px 110px 90px;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background 0.1s;
}
.dashboard-section .job-row:last-child { border-bottom: none; }
.dashboard-section .job-row:hover { background: var(--bg3); }

.dashboard-section .job-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-section .job-source {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  font-weight: 400;
  flex-shrink: 0;
}

.dashboard-section .job-sparkline { display: flex; align-items: flex-end; gap: 2px; height: 22px; }
.dashboard-section .job-last { font-size: 12px; color: var(--muted); text-align: right; }

.dashboard-section .job-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dashboard-section .status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dashboard-section .status-ok   .status-dot { background: var(--green); box-shadow: 0 0 4px var(--green); }
.dashboard-section .status-dead .status-dot { background: var(--accent); box-shadow: 0 0 4px var(--accent); animation: pulse 1.2s ease-in-out infinite; }
.dashboard-section .status-warn .status-dot { background: var(--yellow); box-shadow: 0 0 4px var(--yellow); }

.dashboard-section .status-ok   { color: var(--green); }
.dashboard-section .status-dead { color: var(--accent); }
.dashboard-section .status-warn { color: var(--yellow); }

/* ─── SCENARIOS ─── */
.scenarios-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.scenario-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  position: relative;
}

.scenario-quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.scenario-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.scenario-context {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.03em;
}

/* ─── CODE / SETUP ─── */
.code-section {
  padding: 6rem 4rem;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.setup-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.setup-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.setup-card-title {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.setup-card-badge {
  font-size: 11px;
  padding: 1px 8px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(61,186,116,0.2);
  border-radius: 2px;
}

.file-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red    { background: #e05c3a; }
.dot-yellow { background: #d4a017; }
.dot-green  { background: #3dba74; }

.setup-card pre {
  padding: 1.25rem;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  overflow-x: auto;
  font-family: var(--mono);
}

.c-comment { color: var(--muted2); }
.c-fn      { color: var(--green); }
.c-string  { color: #a3d977; }
.c-kw      { color: var(--text); }
.c-key     { color: #7ec8c8; }

/* ─── FEATURES ─── */
.features-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-icon {
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── COMPARISON ─── */
.compare-section {
  padding: 6rem 4rem;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.compare-table th {
  text-align: left;
  padding: 0.8rem 1.1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr.highlight td {
  color: var(--text);
  background: rgba(224,92,58,0.04);
}

.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table tr.highlight td:first-child { color: var(--accent); }

.chk-yes  { color: var(--green); }
.chk-no   { color: var(--muted2); }
.chk-part { color: var(--yellow); }

/* ─── PRICING ─── */
.pricing-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 13px;
  color: var(--muted);
}

.pricing-save-row {
  text-align: center;
  min-height: 24px;
  margin-bottom: 2.5rem;
}

.pricing-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.pricing-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.pricing-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  transition: background 0.2s;
}

.pricing-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--muted2);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.pricing-toggle-switch input:checked + .pricing-toggle-track {
  background: var(--red-dim);
  border-color: rgba(224,92,58,0.3);
}

.pricing-toggle-switch input:checked + .pricing-toggle-track::after {
  transform: translateX(20px);
  background: var(--accent);
}

.pricing-save-badge {
  font-size: 11px;
  padding: 2px 7px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(61,186,116,0.25);
  border-radius: 2px;
  margin-top: 0.5rem;
  display: none;
}

.pricing-save-badge.visible { display: inline-block; }

.pricing-vat-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s;
}

.plan-card:hover { border-color: var(--border2); }

.plan-card.popular {
  border-color: rgba(224,92,58,0.4);
  background: linear-gradient(135deg, rgba(224,92,58,0.04) 0%, var(--bg3) 50%);
}

.plan-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  background: var(--accent);
  color: white;
  border-radius: 0 0 4px 4px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.plan-price-wrap {
  margin-bottom: 0.25rem;
}

.plan-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text);
}

.plan-price sup {
  font-family: var(--mono);
  font-size: 1rem;
  vertical-align: super;
  color: var(--muted);
}

.plan-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.plan-yearly-note {
  font-size: 11px;
  color: var(--green);
  margin-bottom: 1.5rem;
  min-height: 16px;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.plan-cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  margin-bottom: 1.75rem;
}

.plan-cta-primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}
.plan-cta-primary:hover { background: var(--accent2); border-color: var(--accent2); }

.plan-cta-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
}
.plan-cta-secondary:hover { color: var(--text); border-color: var(--muted2); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.plan-features li .chk {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li .plan-f-label { color: var(--text); font-weight: 500; }
.plan-features li .plan-f-note  { color: var(--muted2); font-size: 11px; margin-left: 4px; }

/* ─── FAQ ─── */
.faq-section {
  padding: 6rem 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {}

.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a a { color: var(--muted); text-underline-offset: 3px; }
.faq-a a:hover { color: var(--text); }

/* ─── FOOTER CTA ─── */
.cta-section {
  padding: 7rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.cta-section h2 em { color: var(--accent); font-style: italic; }

.cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted2);
  flex-wrap: wrap;
  gap: 0.75rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
footer a:hover { color: var(--text); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ─── STATIC PAGES (privacy, terms) ─── */
.static-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.static-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.5s ease both;
}

.static-page .page-meta {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.static-page h2 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.static-page p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.static-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.static-page ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.static-page a {
  color: var(--muted);
  text-underline-offset: 3px;
}
.static-page a:hover { color: var(--text); }
.static-page a.link-plain { text-decoration: none; }
.static-page a.link-plain:hover { color: inherit; }

.static-page strong { color: var(--text); font-weight: 600; }

/* ─── CONTACT PAGE ─── */
.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.contact-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.5s ease both;
}

.contact-page .page-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  font-family: var(--mono);
  font-size: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--border2);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted2); }

.form-submit {
  align-self: flex-start;
}

.contact-alt {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted2);
}

.contact-alt a { color: var(--muted); }
.contact-alt a:hover { color: var(--text); }

.contact-error {
  padding: 0.75rem 1rem;
  background: var(--red-dim);
  border: 1px solid rgba(224,92,58,0.25);
  border-radius: 3px;
  font-size: 13px;
  color: var(--accent);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .trust-bar { gap: 2rem; padding: 1.5rem 2rem; }
  .trust-divider { display: none; }
  .dashboard-section, .scenarios-section, .code-section,
  .features-section, .compare-section, .pricing-section,
  .faq-section, .cta-section { padding: 4rem 1.5rem; }
  .setup-grid, .features-grid, .scenarios-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .faq-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
  nav { padding: 0 1.5rem; }
  .job-row { grid-template-columns: 1fr auto; }
  .job-sparkline, .job-last { display: none; }
  h1 { font-size: clamp(2.6rem, 8vw, 3.5rem); }
  .hero { padding: 8rem 1.5rem 5rem; }
}

@media (max-width: 540px) {
  nav { padding: 0 1rem; }
  .nav-right { gap: 0.75rem; }
  .nav-link.nav-link--hidden-mobile { display: none; }
  h1 { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.15; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.1em; }
  .trust-bar { gap: 1.5rem; padding: 1.25rem 1rem; }
  .trust-stat-number { font-size: 1.75rem; }
  .dashboard-section { padding: 4rem 1rem; }
  .dashboard-header { flex-wrap: wrap; gap: 0.25rem; }
  .job-row { grid-template-columns: 1fr auto; gap: 0.75rem; padding: 0.7rem 1rem; }
  .job-name { min-width: 0; overflow: hidden; }
  .job-source { flex-shrink: 0; }
  .job-status { min-width: 0; }
  .plan-card { padding: 1.5rem; }
  .static-page, .contact-page { padding: 7rem 1.25rem 3rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; text-align: center; }
  footer { padding: 1.5rem 1rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
}

.link-plain {
  color: inherit;
  text-decoration: none;
}
