:root {
  --bg: #0d2f5f;
  --bg-deep: #071d3b;
  --panel: #113d78;
  --card: #ffffff;
  --text: #0f2340;
  --muted: #5d6f8d;
  --line: #dbe6f8;
  --accent: #ff7a2f;
  --accent-2: #1ec3ff;
  --success: #12a150;
  --radius: 16px;
  --shadow: 0 16px 30px rgba(5, 19, 43, 0.18);
}

* { box-sizing: border-box; }
.hidden { display: none !important; }
body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #18437d 0%, var(--bg) 35%, var(--bg-deep) 100%);
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  color: #dfe9fa;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.nav {
  padding: 20px 0;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
}
.logo-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
}
.nav-links {
  display: flex;
  gap: 18px;
  color: #d9e8ff;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 122, 47, .35);
}
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn.is-disabled,
button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none !important;
  transform: none !important;
}

.hero {
  margin-top: 8px;
  margin-bottom: 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: #8fd5ff;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero-copy h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}
.hero-copy p {
  color: #d4e6ff;
  font-size: 1.1rem;
  margin: 0 0 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-bullets {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  color: #e8f1ff;
}
.trust-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-chip {
  border: 1px solid rgba(255,255,255,.24);
  color: #e7f2ff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(255,255,255,.06);
}

.hero-shot {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(5px);
}
.hero-shot .window {
  background: #f5f9ff;
  border-radius: 12px;
  min-height: 350px;
  border: 1px solid #d4e4ff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-product-shot {
  width: 100%;
  min-height: 350px;
  max-height: 560px;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid #d4e4ff;
  box-shadow: var(--shadow);
  background: #f5f9ff;
}
.window .bar {
  height: 44px;
  background: linear-gradient(90deg, #0f3e7b, #1b4f96);
}
.window .content {
  padding: 14px;
  display: grid;
  gap: 12px;
}
.panel-row-lg {
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f2ff, #d8e9ff);
  border: 1px solid #c9dcf4;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.tile {
  min-height: 76px;
  border-radius: 10px;
  background: #e2eeff;
  border: 1px solid #cfe2fb;
}
.window .row {
  height: 18px;
  background: #deebff;
  border-radius: 6px;
}
.window .row.short { width: 70%; }
.compliance-logo {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 120px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid #d9e6fb;
  box-shadow: var(--shadow);
}

.metrics {
  margin: 6px 0 18px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.metric-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 16px;
}
.metric-value {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}
.metric-label {
  color: #cddff9;
  font-size: .9rem;
}

.section {
  background: #f4f8ff;
  border-radius: 24px;
  padding: 40px 0;
  margin-bottom: 18px;
}
.section-alt {
  background: #edf4ff;
}
.section h2 {
  margin: 0 0 14px;
  color: #10315f;
  font-size: 2rem;
}
.section p.lead {
  margin: 0 0 26px;
  color: #4b6183;
}

.feature-grid, .plan-grid {
  display: grid;
  gap: 16px;
}
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: #5a6c88; }

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.flow-card span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 8px;
  background: #dff0ff;
  color: #0f4f99;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 10px;
}
.plan-card.popular { border: 2px solid var(--accent-2); transform: translateY(-4px); }
.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--accent-2);
  color: #032745;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}
.price { font-size: 2rem; font-weight: 800; color: #0e2f5d; }
.small { color: #61799d; font-size: .9rem; }
.list { margin: 0; padding-left: 18px; color: #3a5072; display: grid; gap: 6px; }
.pricing-note {
  margin: 18px 0 0;
  color: #4f6382;
  font-size: .95rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid #d7e5fa;
  border-radius: 14px;
  padding: 14px;
}
.faq-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #12376a;
}
.faq-item p {
  margin: 0;
  color: #4f668a;
}

.cta-band {
  margin: 16px 0 24px;
}
.cta-band-inner {
  border-radius: 18px;
  background: linear-gradient(135deg, #103b72, #0d2f5f);
  color: #fff;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cta-band-inner h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.cta-band-inner p {
  margin: 0;
  color: #d6e7ff;
}
.cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  color: #d1e0f9;
  padding: 28px 0 40px;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: grid;
  gap: 4px;
}

.signup-wrap {
  min-height: 100vh;
  background: linear-gradient(170deg, #0d2f5f 0%, #0a2650 60%, #081d3a 100%);
  padding: 34px 0;
}
.signup-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-radius: 24px;
  border: 1px solid #c9dbf8;
  width: min(980px, 94vw);
  margin: 0 auto;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(7, 29, 59, 0.2);
}
.signup-logo-row { margin-bottom: 18px; }
.signup-logo-row img {
  width: 220px;
  height: 88px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #c6d8f2;
  box-shadow: 0 10px 20px rgba(12, 42, 82, 0.12);
  padding: 10px 18px;
  border-radius: 14px;
}
.signup-logo-row [data-brand] {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}
.signup-title { margin: 0 0 8px; font-size: clamp(2rem, 3.4vw, 2.8rem); color: #122e5b; line-height: 1.05; }
.signup-lead { margin: 0 0 22px; font-size: 1.05rem; }
.signup-progress {
  margin: 0 0 20px;
  background: #eef4ff;
  border: 1px solid #cadefa;
  border-radius: 14px;
  padding: 12px;
}
.signup-progress-top {
  display: flex;
  justify-content: space-between;
  color: #1b3764;
  font-size: .92rem;
  margin-bottom: 8px;
}
.signup-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: #dbe7fb;
  overflow: hidden;
}
.signup-progress-bar span {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #1f7bff, #35b1ff);
}
.form-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; align-items: start; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-weight: 700; color: #203960; }
input, select, textarea {
  border: 1px solid #b3c9ec;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2f6edb;
  box-shadow: 0 0 0 3px rgba(47, 110, 219, 0.16);
}
textarea { min-height: 120px; resize: vertical; }
.signup-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.signup-actions .btn-primary { box-shadow: 0 10px 22px rgba(255, 122, 47, .35); }
.signup-back-btn { color: #10315f; border-color: #b6caea; }
.signup-submit-notice {
  margin-top: 14px;
  border: 1px solid #9fd7b8;
  background: linear-gradient(135deg, #ecfff4, #f7fffb);
  color: #0f5e35;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 10px 22px rgba(18, 161, 80, 0.12);
}
.signup-submit-notice strong {
  display: block;
  color: #0b4729;
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.signup-trust-row { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.signup-trust-pill {
  border: 1px solid #c4d6f2;
  background: #f5f9ff;
  color: #21406e;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .82rem;
  font-weight: 700;
}
.signup-aside { position: sticky; top: 16px; }
.signup-plan-title { margin: 0 0 12px; font-size: 2.1rem; color: #132f5d; }

.plan-pick { display: grid; gap: 8px; }
.plan-option {
  border: 1px solid #c3d4ee;
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  background: #ffffff;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan-option:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(14, 47, 93, 0.08); }
.plan-option.active { border-color: #1f7bff; background: #eef5ff; box-shadow: 0 10px 20px rgba(31, 123, 255, .16); }
.signup-summary { margin-top: 14px; border-radius: 16px; border: 1px solid #c7d9f4; background: #fff; }

.admin-wrap { width: min(980px, 94vw); margin: 24px auto; color: #102c55; }
.admin-card { background: #fff; border-radius: 16px; padding: 16px; border: 1px solid #d7e4f8; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 980px) {
  .hero-grid, .feature-grid, .plan-grid, .form-grid, .admin-grid, .metric-grid, .workflow-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-shot { margin-bottom: 20px; }
  .hero-product-shot {
    min-height: 220px;
    max-height: 320px;
  }
  .compliance-logo { position: static; margin-top: 10px; width: 110px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
