@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #050505;
  --surface:      #0d0d0d;
  --surface-2:    #141414;
  --surface-3:    #1c1c1c;
  --border:       rgba(255,255,255,0.06);
  --border-strong:rgba(255,255,255,0.10);
  --text:         #F1F5F9;
  --text-2:       #94A3B8;
  --text-3:       #475569;
  --text-dim:     #334155;
  --brand:        #2563EB;
  --brand-light:  #3B82F6;
  --brand-glow:   rgba(37,99,235,0.15);
  --success:      #10B981;
  --danger:       #EF4444;
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.85);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
}

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

html, body {
  margin: 0; padding: 0;
  font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Background glows ────────────────────────────── */
.login-bg-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.10;
  z-index: 0;
}

.glow-1 {
  width: 600px; height: 400px;
  background: var(--brand);
  top: -120px; left: -180px;
}

.glow-2 {
  width: 460px; height: 340px;
  background: #7C3AED;
  bottom: -80px; right: -120px;
}

/* ─── Back link ───────────────────────────────────── */
.back-link {
  position: fixed;
  top: 18px; left: 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-3);
  text-decoration: none;
  z-index: 10;
  transition: color 0.13s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.back-link:hover { color: var(--text-2); }

/* ─── Login wrapper ───────────────────────────────── */
.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  position: relative;
  z-index: 1;
}

/* ─── Left side ───────────────────────────────────── */
.login-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.login-left::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.10), transparent 70%);
  pointer-events: none;
}

.login-brand { margin-bottom: 48px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 30px;
}

.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(37,99,235,0.4);
  color: #fff;
}

.logo span:last-child {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.login-brand h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(130deg, var(--brand-light), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-brand p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.login-features { display: grid; gap: 13px; }

.login-feature {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}

.login-feature-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brand-light);
}

/* ─── Right side ──────────────────────────────────── */
.login-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 52px;
  background: var(--bg);
}

.login-card {
  width: 100%;
  max-width: 390px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

/* ─── Tabs ────────────────────────────────────────── */
.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-bottom: 22px;
}

.login-tab {
  border: none;
  background: transparent;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  padding: 7px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.14s;
}

.login-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 5px rgba(0,0,0,0.45);
}

/* ─── Auth forms ──────────────────────────────────── */
.auth-form { display: grid; gap: 15px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.form-group { display: grid; gap: 6px; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-link {
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand-light);
  text-decoration: none;
}

.label-link:hover { text-decoration: underline; }

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.input-wrapper input {
  width: 100%;
  height: 42px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  padding: 0 40px 0 36px;
  outline: none;
  transition: border-color 0.13s, box-shadow 0.13s;
}

.input-wrapper input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.input-wrapper input::placeholder { color: var(--text-3); }

.toggle-pw {
  position: absolute; right: 10px;
  border: none; background: transparent;
  color: var(--text-3); cursor: pointer;
  padding: 4px;
  display: flex; align-items: center;
  transition: color 0.13s;
}

.toggle-pw:hover { color: var(--text-2); }

/* ─── Checkbox ────────────────────────────────────── */
.form-check { margin: -3px 0; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 17px; height: 17px;
  border-radius: 5px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all 0.13s;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--brand);
  border-color: var(--brand);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 9px; height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20,6 9,17 4,12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.13s, box-shadow 0.13s;
  padding: 0 16px;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.btn-primary:hover:not(:disabled) {
  background: var(--brand-light);
  box-shadow: 0 4px 16px rgba(59,130,246,0.38);
}

.btn-full  { width: 100%; }
.btn-large { height: 44px; font-size: 15px; }
.btn-text  { pointer-events: none; }

/* ─── Spinner ─────────────────────────────────────── */
.btn-spinner {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Divider ─────────────────────────────────────── */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

/* ─── Social buttons ──────────────────────────────── */
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.btn-social {
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
}

.btn-social:hover {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--text-3);
}

/* ─── Password strength ───────────────────────────── */
.password-strength {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.strength-bars {
  display: flex;
  gap: 4px;
  flex: 1;
}

.strength-bars span {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border-strong);
  transition: background 0.2s;
}

.strength-label {
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.2s;
}

/* ─── Footer note ─────────────────────────────────── */
.login-footer-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  max-width: 340px;
}

.login-footer-note a { color: var(--text-2); text-decoration: none; }
.login-footer-note a:hover { text-decoration: underline; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .login-wrapper  { grid-template-columns: 1fr; }
  .login-left     { display: none; }
  .login-right    { padding: 32px 20px; min-height: 100dvh; }
  .back-link      { top: 14px; left: 14px; }
  .form-row       { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}


/* ════════════════════════════════════════════════════
   LANDING PAGE
   ════════════════════════════════════════════════════ */

/* ─── Shared ──────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  padding: 0 16px;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
}

.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--text-3);
}

/* Re-export as <a> support */
a.btn-primary, a.btn-ghost {
  text-decoration: none;
}

a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
  transition: background 0.13s, box-shadow 0.13s;
}

a.btn-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 4px 16px rgba(59,130,246,0.38);
}

.btn-large { height: 46px !important; font-size: 15px !important; padding: 0 22px !important; }
.btn-full  { width: 100%; }

/* Gradient text (shared with login) */
.gradient-text {
  background: linear-gradient(130deg, var(--brand-light), #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0 24px;
  transition: background 0.2s, border-color 0.2s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 4px;
}

.nav-links a {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.13s, background 0.13s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
}

/* ─── Hero ────────────────────────────────────────── */
.hero {
  padding: 130px 24px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.hero .glow-1 {
  width: 500px; height: 350px;
  background: var(--brand);
  top: 40px; left: -100px;
}

.hero .glow-2 {
  width: 400px; height: 300px;
  background: #7C3AED;
  top: 100px; right: -80px;
}

/* .container inside hero becomes transparent, mockup is a sibling */
.hero > .container { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.hero-stats .stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

/* ─── Hero Mockup ─────────────────────────────────── */
.hero-mockup {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mockup-card {
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.mockup-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28CA41; }

.mockup-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

.mockup-body { padding: 10px 12px; display: grid; gap: 8px; }

.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: border-color 0.13s;
}

.mockup-row.active { border-color: rgba(16,185,129,0.25); }

.mockup-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-info { display: flex; flex-direction: column; gap: 2px; }

.mockup-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.mockup-status {
  font-size: 11px;
  font-weight: 500;
}

.mockup-status.sent   { color: var(--success); }
.mockup-status.pending { color: var(--warning); }
.mockup-status.queued  { color: var(--text-3); }

.mockup-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.mockup-progress { display: grid; gap: 6px; }

.mockup-progress span {
  font-size: 10px;
  font-family: 'Fira Code', monospace;
  color: var(--text-3);
}

.progress-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--surface-3);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

/* ─── Features ────────────────────────────────────── */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s;
}

.feature-card:hover { border-color: var(--border-strong); }

.feature-card--large {
  grid-column: span 2;
}

.feature-card--accent {
  background: var(--brand-glow);
  border-color: rgba(37,99,235,0.2);
}

.feature-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--brand-light);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-3);
}

.feature-tag--glow {
  background: var(--brand-glow);
  border-color: rgba(37,99,235,0.25);
  color: var(--brand-light);
}

/* ─── How it works ────────────────────────────────── */
.how {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  opacity: 1 !important;
  transform: none !important;
}

.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--brand-glow);
  display: grid;
  place-items: center;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-light);
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.step-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 220px;
}

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border-strong);
  margin-top: 24px;
  align-self: flex-start;
  margin-left: -4px;
  margin-right: -4px;
}

/* ─── Pricing ─────────────────────────────────────── */
.pricing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.15s;
}

.pricing-card:hover { border-color: var(--border-strong); }

.pricing-card--featured {
  background: var(--brand-glow);
  border-color: rgba(37,99,235,0.3);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 18px; }

.pricing-header h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: 'Fira Code', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}

.price-period {
  font-size: 13px;
  color: var(--text-3);
}

.pricing-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-2);
}

.pricing-features li.disabled {
  color: var(--text-3);
  text-decoration: line-through;
}

/* ─── CTA Banner ──────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: var(--brand);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.10;
  pointer-events: none;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.cta-inner p {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--text-2);
  position: relative;
}

/* ─── Footer ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo { margin-bottom: 10px; }

.footer-brand p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.footer-col a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.12s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-3);
}

/* ─── Landing Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }

  .hero-bg-glow { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-mockup { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 32px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 28px; }
  .nav-links { display: none; }
}
