:root {
  --fj-accent: #4f46e5;
  --fj-accent-deep: #4338ca;
  --fj-accent-wash: #eef2ff;
  --fj-accent-edge: #c7d2fe;
  --fj-body: #475569;
  --fj-title: #1e293b;
  --fj-muted: #64748b;
  --fj-dim: #94a3b8;
  --fj-surface: #ffffff;
  --fj-canvas: #f8fafc;
  --fj-divider: #e2e8f0;
  --fj-positive: #0f766e;
  --fj-radius-sm: 10px;
  --fj-radius: 16px;
  --fj-radius-lg: 24px;
  --fj-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 30px rgba(15, 23, 42, 0.05);
  --fj-shadow-lift: 0 2px 4px rgba(15, 23, 42, 0.05), 0 22px 48px rgba(79, 70, 229, 0.10);
  --fj-maxw: 1080px;
  --fj-gap: 26px;
  --fj-band: 88px;
  --fj-stack: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--fj-stack);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fj-body);
  background: var(--fj-surface);
}

h1, h2, h3, h4 {
  color: var(--fj-title);
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}

h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 30px; font-weight: 650; }
h3 { font-size: 20px; font-weight: 650; }
h4 { font-size: 16px; font-weight: 650; }

p { margin: 0 0 16px; }

a { color: var(--fj-accent); text-decoration: none; }
a:hover { color: var(--fj-accent-deep); text-decoration: underline; }

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

.fj-skip {
  position: absolute;
  left: -9999px;
}
.fj-skip:focus {
  left: 16px;
  top: 12px;
  z-index: 9;
  background: var(--fj-surface);
  padding: 8px 14px;
  border-radius: var(--fj-radius-sm);
  box-shadow: var(--fj-shadow-soft);
}

/* ---------- masthead ---------- */

.fj-topbar {
  border-bottom: 1px solid var(--fj-divider);
  background: rgba(255, 255, 255, 0.92);
}

.fj-topbar .fj-frame {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
}

.fj-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 19px;
  color: var(--fj-title);
  letter-spacing: -0.02em;
}
.fj-logo:hover { text-decoration: none; color: var(--fj-accent-deep); }
.fj-logo svg { display: block; }

.fj-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.fj-nav a {
  display: block;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 550;
  color: var(--fj-muted);
}
.fj-nav a:hover {
  background: var(--fj-canvas);
  color: var(--fj-title);
  text-decoration: none;
}
.fj-nav a.fj-current {
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
}

/* ---------- buttons ---------- */

.fj-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--fj-accent);
  color: #ffffff;
}
.fj-action:hover {
  background: var(--fj-accent-deep);
  color: #ffffff;
  text-decoration: none;
}

.fj-action-ghost {
  background: var(--fj-surface);
  color: var(--fj-title);
  border-color: var(--fj-divider);
}
.fj-action-ghost:hover {
  background: var(--fj-canvas);
  color: var(--fj-title);
  border-color: var(--fj-accent-edge);
}

.fj-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

/* ---------- sections ---------- */

.fj-band {
  padding: var(--fj-band) 0;
}
.fj-band-tint { background: var(--fj-canvas); }
.fj-band-tight { padding: 56px 0; }

.fj-intro {
  font-size: 19px;
  color: var(--fj-muted);
  max-width: 660px;
}

.fj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fj-head {
  max-width: 680px;
  margin-bottom: 44px;
}

/* ---------- hero ---------- */

.fj-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 54px;
  padding: 84px 0 76px;
}
.fj-hero-copy { flex: 1 1 380px; }
.fj-hero-art { flex: 1 1 380px; display: flex; justify-content: center; }

.fj-window {
  width: 100%;
  max-width: 440px;
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius-lg);
  box-shadow: var(--fj-shadow-lift);
  overflow: hidden;
}

.fj-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--fj-divider);
  background: var(--fj-canvas);
}
.fj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fj-accent-edge);
}
.fj-dot:nth-child(2) { background: #ddd6fe; }
.fj-dot:nth-child(3) { background: #e2e8f0; }
.fj-window-title {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fj-dim);
}

.fj-window-body {
  display: flex;
  min-height: 250px;
}
.fj-window-side {
  flex: 0 0 132px;
  padding: 18px 14px;
  border-right: 1px solid var(--fj-divider);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fj-side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 550;
  color: var(--fj-muted);
  padding: 6px 8px;
  border-radius: var(--fj-radius-sm);
}
.fj-side-item span {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--fj-accent-edge);
  flex: 0 0 auto;
}
.fj-side-item.fj-side-on {
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
}
.fj-side-item.fj-side-on span { background: var(--fj-accent); }

.fj-window-main {
  flex: 1 1 auto;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fj-line {
  height: 9px;
  border-radius: 999px;
  background: var(--fj-divider);
}
.fj-line-title {
  height: 14px;
  width: 72%;
  background: var(--fj-accent);
  opacity: 0.85;
  margin-bottom: 6px;
}
.fj-line-w90 { width: 90%; }
.fj-line-w70 { width: 70%; }
.fj-line-w82 { width: 82%; }
.fj-line-w55 { width: 55%; }
.fj-line-w46 { width: 46%; }

.fj-chip-row {
  display: flex;
  gap: 7px;
  margin-top: auto;
  flex-wrap: wrap;
}
.fj-chip {
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- cards ---------- */

.fj-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fj-gap);
}

.fj-tile {
  flex: 1 1 280px;
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius);
  padding: 30px 28px;
  box-shadow: var(--fj-shadow-soft);
}
.fj-tile h3 { margin-top: 16px; }
.fj-tile p:last-child { margin-bottom: 0; }

.fj-tile-flat {
  box-shadow: none;
  background: var(--fj-canvas);
  border-color: transparent;
}

.fj-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
}
.fj-icon svg { display: block; }

.fj-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fj-accent);
  color: #ffffff;
  font-weight: 650;
  font-size: 15px;
  margin-bottom: 16px;
}

/* ---------- pricing ---------- */

.fj-tier {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--fj-shadow-soft);
}
.fj-tier-pick {
  border-color: var(--fj-accent-edge);
  box-shadow: var(--fj-shadow-lift);
}
.fj-tier-flag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--fj-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.fj-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 6px;
}
.fj-price b {
  font-size: 38px;
  font-weight: 700;
  color: var(--fj-title);
  letter-spacing: -0.03em;
}
.fj-price span {
  font-size: 15px;
  color: var(--fj-dim);
}
.fj-tier ul {
  list-style: none;
  margin: 20px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fj-tier li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.fj-tier li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--fj-accent);
}
.fj-tier .fj-action { margin-top: auto; }

/* ---------- lists, tables, notes ---------- */

.fj-check {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fj-check li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.fj-check li svg {
  flex: 0 0 auto;
  margin-top: 5px;
  color: var(--fj-accent);
}

.fj-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.fj-table th, .fj-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--fj-divider);
  vertical-align: top;
}
.fj-table th {
  color: var(--fj-title);
  font-weight: 650;
  font-size: 14px;
}
.fj-table-wrap {
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius);
  overflow: hidden;
}
.fj-table tr:last-child td { border-bottom: none; }

.fj-callout {
  border-left: 3px solid var(--fj-accent-edge);
  background: var(--fj-accent-wash);
  border-radius: 0 var(--fj-radius-sm) var(--fj-radius-sm) 0;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--fj-title);
}
.fj-callout p:last-child { margin-bottom: 0; }

.fj-asof {
  font-size: 14px;
  color: var(--fj-dim);
  margin-top: 30px;
}

/* ---------- faq ---------- */

.fj-qa {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fj-qa article {
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius);
  padding: 26px 28px;
}
.fj-qa h3 { font-size: 18px; }
.fj-qa p:last-child { margin-bottom: 0; }

/* ---------- people ---------- */

.fj-person {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1 1 300px;
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius);
  padding: 26px;
}
.fj-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fj-accent-wash);
  color: var(--fj-accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.fj-role {
  font-size: 14px;
  color: var(--fj-dim);
  margin: 0 0 8px;
}

/* ---------- form ---------- */

.fj-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--fj-surface);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius-lg);
  padding: 32px;
  box-shadow: var(--fj-shadow-soft);
}
.fj-ctl {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fj-ctl label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fj-title);
}
.fj-ctl input,
.fj-ctl select,
.fj-ctl textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--fj-body);
  background: var(--fj-canvas);
  border: 1px solid var(--fj-divider);
  border-radius: var(--fj-radius-sm);
  padding: 12px 14px;
  width: 100%;
}
.fj-ctl textarea { min-height: 150px; resize: vertical; }
.fj-ctl input:focus,
.fj-ctl select:focus,
.fj-ctl textarea:focus {
  outline: none;
  border-color: var(--fj-accent);
  background: var(--fj-surface);
}
.fj-fine {
  font-size: 13px;
  color: var(--fj-dim);
}
.fj-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.fj-pair .fj-ctl { flex: 1 1 220px; }

.fj-split {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.fj-split-wide { flex: 1 1 420px; }
.fj-split-side { flex: 1 1 280px; }

/* ---------- call to action ---------- */

.fj-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--fj-accent-wash);
  border: 1px solid var(--fj-accent-edge);
  border-radius: var(--fj-radius-lg);
  padding: 40px 42px;
}
.fj-cta h2 { margin-bottom: 6px; }
.fj-cta p { margin-bottom: 0; color: var(--fj-muted); }

/* ---------- footer ---------- */

.fj-foot {
  border-top: 1px solid var(--fj-divider);
  background: var(--fj-canvas);
  padding: 52px 0 40px;
  font-size: 15px;
}
.fj-foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.fj-foot-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fj-foot-col h4 {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fj-dim);
  margin-bottom: 4px;
}
.fj-foot-col a { color: var(--fj-muted); }
.fj-foot-col a:hover { color: var(--fj-accent-deep); }
.fj-foot-base {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--fj-divider);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fj-dim);
}
.fj-foot-base p { margin: 0; }

@media (max-width: 720px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  body { font-size: 16px; }
  :root { --fj-band: 60px; }
  .fj-hero { padding: 54px 0 48px; gap: 36px; }
  .fj-cta { padding: 30px 26px; }
  .fj-form { padding: 24px; }
  .fj-window-side { display: none; }
}
