/* FieldTab — shared sub-page styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --bg:          #f7f8fa;
  --surface:     #ffffff;
  --surface-2:   #f0f2f5;
  --border:      #e2e6ec;
  --border-dk:   #cdd2db;
  --ink:         #0d1117;
  --ink-2:       #4b5563;
  --ink-3:       #9ca3af;
  --accent:      #0369a1;
  --accent-dk:   #075985;
  --accent-lt:   #e0f2fe;
  --accent-bd:   #bae6fd;
  --accent-text: #0c4a6e;
  --ok:          #059669;
  --ok-lt:       #d1fae5;
  --ok-bd:       #a7f3d0;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 760px;
  --px:  clamp(1.25rem, 5vw, 3rem);
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px; --s10: 80px;
  --r-sm: 8px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* NAV */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark img { width: 28px; height: 28px; display: block; border-radius: 6px; }
.nav-back { font-size: 0.875rem; font-weight: 500; color: var(--ink-3); transition: color 150ms; }
.nav-back:hover { color: var(--ink-2); }

/* HERO */
.hero {
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--s8);
  padding-bottom: var(--s8);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(3,105,161,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 600px; margin: 0 auto; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-lt);
  border: 1px solid var(--accent-bd);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--s3);
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: var(--s5);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.75rem 1.625rem;
  cursor: pointer;
  transition: background 140ms var(--ease), box-shadow 140ms, transform 80ms;
}
.btn-primary:hover { background: var(--accent-dk); box-shadow: 0 4px 16px rgba(3,105,161,0.28); }
.btn-primary:active { transform: scale(0.98); }

/* TRUST PILLS */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s1);
  margin-top: var(--s3);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}
.trust-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }

/* SECTIONS */
.section {
  padding-top: var(--s10);
  padding-bottom: var(--s10);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
  text-align: center;
}
.section-h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s1);
  text-align: center;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: var(--s5);
  text-align: center;
}

/* FEATURE LIST */
.feat-list { display: flex; flex-direction: column; gap: var(--s2); }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s3) var(--s4);
}
.feat-check {
  width: 20px; height: 20px;
  background: var(--ok-lt);
  border: 1px solid var(--ok-bd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-check svg {
  width: 10px; height: 10px;
  stroke: var(--ok);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.feat-desc { font-size: 0.875rem; color: var(--ink-2); line-height: 1.6; }

/* PRICING CARD */
.pricing-card {
  max-width: 480px;
  margin: var(--s4) auto 0;
  background: var(--surface);
  border: 2px solid var(--accent-bd);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(3,105,161,0.10);
}
.pricing-top {
  padding: var(--s5) var(--s5) var(--s4);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--accent-lt);
}
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ok-lt);
  border: 1px solid var(--ok-bd);
  color: var(--ok);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--s3);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--s1);
}
.price-now {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-now sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.price-was {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink-3);
  text-decoration: line-through;
}
.pricing-once { font-size: 0.8125rem; color: var(--ink-3); margin-bottom: 4px; }
.pricing-body { padding: var(--s5); }
.pricing-features {
  list-style: none;
  margin-bottom: var(--s4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.pricing-features li svg { color: var(--ok); flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  display: block;
  text-align: center;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 14px;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: background 140ms, transform 80ms;
}
.pricing-cta:hover { background: var(--accent-dk); transform: translateY(-1px); }
.pricing-trial-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-3);
  margin-top: var(--s2);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  padding-top: var(--s4);
  padding-bottom: var(--s5);
}
.footer-links { display: flex; gap: var(--s3); }
.footer-link { font-size: 0.8125rem; color: var(--ink-3); transition: color 150ms; }
.footer-link:hover { color: var(--ink-2); }
.footer-copy { font-size: 0.8125rem; color: var(--ink-3); }

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { padding-top: var(--s8); padding-bottom: var(--s8); }
  .hero-tag-dot { display: none; }
  .section { padding-top: var(--s8); padding-bottom: var(--s8); }
  .feat-item { padding: var(--s2) var(--s3); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
