:root {
  --primary: #0b60c6;
  --primary-dark: #064489;
  --primary-light: #e5f0ff;
  --accent: #1abc9c;
  --text: #1f2933;
  --muted: #6b7b93;
  --bg: #f5f7fb;
  --border: #dde3f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: radial-gradient(circle at top left, #1280ff 0, #064489 40%, #021528 90%);
  color: var(--white);
  padding: 20px 5vw 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1abcff, #1a5bff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.logo-text-main {
  text-transform: lowercase;
}

.logo-text-dotcom {
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  header {
    padding-bottom: 30px;
  }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #b8d7ff;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

.hero h1 span {
  color: #c9e4ff;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 480px;
  color: #deebff;
  margin-bottom: 20px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.hero-bullets div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-badge {
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 47, 107, 0.7);
  color: #e0edff;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #022132;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: #dbeafe;
  border: 1px solid rgba(219, 234, 254, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.4);
  text-decoration: none;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.7rem;
  color: #cbd5f5;
}

.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.hero-card-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.5);
  font-size: 0.7rem;
}

.hero-card-body {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), rgba(15, 23, 42, 0.9));
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.76rem;
  color: #e5e7eb;
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.hero-card-row:last-child {
  border-bottom: none;
}

.hero-card-label {
  color: #9ca3af;
}

.hero-card-value-strong {
  color: #bbf7d0;
  font-weight: 600;
}

.hero-card-value-soft {
  color: #e5e7eb;
}

/* Main content sections */
main {
  flex: 1;
}

section {
  padding: 40px 5vw;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.pill-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  font-size: 0.9rem;
}

.pill-list li {
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.pill-icon {
  font-size: 1.1rem;
  margin-top: 2px;
}

.pill-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.pill-text {
  font-size: 0.83rem;
  color: var(--muted);
}

.card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 25px rgba(15, 23, 42, 0.04);
  font-size: 0.85rem;
}

.card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
  font-size: 0.86rem;
}

.form-row {
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.required {
  color: #b91c1c;
  margin-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-family: inherit;
}

textarea {
  min-height: 70px;
  resize: vertical;
}

.helper {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.fineprint {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.disclosure-list {
  font-size: 0.78rem;
  color: var(--muted);
  list-style: none;
  padding-left: 0;
}

.disclosure-list li {
  margin-bottom: 4px;
}

.disclosure-label {
  font-weight: 600;
  color: var(--text);
}

.highlight-box {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.field-error {
  font-size: 0.72rem;
  color: #b91c1c;
  margin-top: 3px;
  min-height: 0.9em;
}

.input-error {
  border-color: #fca5a5;
  background: #fef2f2;
}

.form-success {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.2);
  font-size: 0.78rem;
  color: #166534;
}

footer {
  border-top: 1px solid var(--border);
  background: #0b1220;
  color: #9ca3af;
  padding: 18px 5vw;
  font-size: 0.78rem;
}

footer a {
  color: #e5e7eb;
}


.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* Legal pages */
.legal-hero {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.legal-content h2 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.legal-content h3 {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.legal-content p, .legal-content ul {
  font-size: 0.86rem;
}

.legal-content ul {
  padding-left: 18px;
}


.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
}



.footer-main {
  font-weight: 500;
}

.footer-meta {
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 700px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
