:root {
  --navy: #07111c;
  --navy-2: #0d1d2e;
  --blue: #1479e8;
  --blue-2: #0b63c7;
  --text: #122033;
  --muted: #5d6b7d;
  --soft: #eef4f8;
  --line: #dce5ee;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f6f9fb;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 12px;
  z-index: 20;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(7,17,28,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-size: 20px;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

.login-link {
  color: var(--blue);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
  border-radius: 34px;
  padding: 56px;
  background:
    radial-gradient(circle at 75% 20%, rgba(20,121,232,0.35), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  box-shadow: 0 24px 70px rgba(7,17,28,0.28);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
  color: #6fb4ff;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 21px;
  color: #d8e7f7;
  max-width: 760px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: var(--blue);
  color: white;
}

.secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 26px;
  align-self: center;
}

.hero-card img {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  display: block;
  margin-bottom: 22px;
}

.hero-card p {
  colo©r: #d8e7f7;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
  padding: 42px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(7,17,28,0.06);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

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

.grid article,
.panel,
.pricing-card,
.note {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 22px;
  padding: 22px;
}

.grid article p,
.panel p,
.note p,
.pricing-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.pricing-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.price {
  min-width: 230px;
  padding: 24px;
  border-radius: 22px;
  background: var(--navy);
  color: white;
  text-align: center;
}

.price strong {
  display: block;
  font-size: 30px;
}

.price span {
  color: #c8d6e5;
}

.note {
  margin-top: 18px;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #0d1d2e, #07111c);
  color: white;
}

.cta p {
  color: #d8e7f7;
}

.policy {
  min-height: 70vh;
}

.policy .section {
  max-width: 900px;
}

.policy h1 {
  color: var(--text);
  font-size: clamp(38px, 5vw, 60px);
}

.policy h2 {
  font-size: 28px;
  margin-top: 34px;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
  padding: 30px;
  border-radius: 28px;
  background: #07111c;
  color: white;
  display: grid;
  gap: 12px;
}

footer p {
  margin: 0;
  color: #cbd7e4;
}

footer a {
  color: #80bdff;
}

.legal {
  font-size: 13px;
  color: #9eacbb;
}

@media (max-width: 850px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .split,
  .pricing-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    padding: 34px 24px;
  }

  .section {
    padding: 28px 22px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}


/* BlockSafe contact email additions */
.contact-strip {
  margin: 48px 0;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.04);
}

.contact-strip h2 {
  margin-top: 0;
}

.contact-strip a,
.footer-email a,
.privacy-contact a {
  font-weight: 700;
  color: inherit;
}

.footer-email {
  margin-top: 8px;
}

.privacy-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}
