:root {
  --navy: #0b1220;
  --navy-soft: #101a2d;
  --blue: #173b73;
  --blue2: #2457a6;
  --blue3: #3d78d8;
  --ink: #172033;
  --muted: #617083;
  --soft: #f4f7fb;
  --soft2: #eef4fb;
  --line: #dbe4ef;
  --danger: #954fc3;
  --danger-dark: #7431a1;
  --gold: #d6a84f;
  --white: #ffffff;

  --shadow: 0 22px 60px rgba(11, 18, 32, 0.14);
  --shadow-soft: 0 12px 36px rgba(11, 18, 32, 0.07);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(36, 87, 166, 0.08), transparent 28%),
    radial-gradient(circle at 95% 30%, rgba(149, 79, 195, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--soft) 42%, #eef3f9 100%);
  color: var(--ink);
  line-height: 1.55;
}

/* =========================
   TOP STRIP
========================= */

.top-strip {
  background: linear-gradient(90deg, #07101f 0%, #0e2444 52%, #07101f 100%);
  color: #d8e3f2;
  font-size: 14px;
  padding: 10px 24px;
  text-align: center;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 228, 239, 0.9);
}

.nav {
  max-width: 1180px;
  margin: auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* =========================
   PREMIUM LEGAL LOGO
========================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--navy);
}

/* Logo mark */
.legal-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.38), transparent 24%),
    linear-gradient(145deg, #183a70 0%, #0b1a33 72%);
  box-shadow:
    0 14px 28px rgba(11, 18, 32, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.legal-logo-mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(214, 168, 79, 0.38);
}

.legal-logo-mark::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: -42px;
  top: -38px;
  background: rgba(214, 168, 79, 0.22);
  border-radius: 50%;
}

/* Courthouse roof */
.legal-logo-roof {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 11px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

/* Small line under roof */
.legal-logo-roof::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -3px;
  height: 3px;
  border-radius: 99px;
  background: #f2d28b;
}

/* Courthouse columns */
.legal-logo-columns {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.legal-logo-columns span {
  width: 4px;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f4d98f 0%, var(--gold) 100%);
}

/* Courthouse base */
.legal-logo-base {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 10px;
  height: 4px;
  border-radius: 99px;
  background: #f2d28b;
  z-index: 2;
}

/* Wordmark */
.legal-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.legal-logo-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.legal-logo-name span {
  color: var(--blue2);
}

.legal-logo-domain {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================
   NAV LINKS
========================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.emergency-mini {
  background:
    linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
  color: white !important;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px rgba(149, 79, 195, 0.24);
}

.emergency-mini:hover {
  transform: translateY(-1px);
}

/* =========================
   HERO
========================= */

.hero {
  background:
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.22), transparent 26%),
    radial-gradient(circle at 14% 12%, rgba(61, 120, 216, 0.25), transparent 28%),
    linear-gradient(135deg, #07101f 0%, #102b55 56%, #173b73 100%);
  color: white;
  padding: 76px 24px 58px;
  overflow: hidden;
}

.hero-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: #e7eef9;
  margin-bottom: 20px;
}

.dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.15);
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.055em;
}

.lead {
  font-size: 20px;
  color: #d7e4f4;
  max-width: 720px;
  margin: 0 0 30px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row-center {
  justify-content: center;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-danger {
  background:
    linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(149, 79, 195, 0.32);
}

.btn-light {
  background: white;
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(11, 18, 32, 0.12);
}

.btn-blue {
  background:
    linear-gradient(135deg, var(--blue2) 0%, var(--blue) 100%);
  color: white;
}

/* =========================
   HERO CARD
========================= */

.hero-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  color: var(--ink);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-visual {
  height: 240px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(10, 22, 40, 0.08), rgba(10, 22, 40, 0.52)),
    url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}

.status {
  display: grid;
  gap: 13px;
}

.status-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

/* =========================
   SHARED ICON
========================= */

.icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #eef5ff 0%, #dfeaff 100%);
  color: var(--blue2);
  font-weight: 900;
}

.icon-alert {
  background: #f3e8ff;
  color: var(--danger);
}

/* =========================
   MAIN CONTENT
========================= */

main {
  max-width: 1180px;
  margin: auto;
  padding: 58px 24px;
}

.urgent-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbf7ff 100%);
  border: 1px solid #ead8f7;
  border-left: 7px solid var(--danger);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(11, 18, 32, 0.08);
  margin-bottom: 42px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.pill {
  background:
    linear-gradient(135deg, #ecf4ff 0%, #f7f0ff 100%);
  color: var(--blue);
  font-weight: 850;
  font-size: 13px;
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.pill-dark {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

/* =========================
   CARDS
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 54px;
}

.card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.11);
}

.card h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

/* =========================
   SPLIT SECTION
========================= */

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  margin: 58px 0;
}

.image-panel {
  min-height: 420px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(11, 18, 32, 0.15), rgba(11, 18, 32, 0.45)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* =========================
   CHECKLIST
========================= */

.checklist {
  display: grid;
  gap: 14px;
}

.check {
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.04);
}

.check strong {
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.check span {
  color: var(--muted);
}

/* =========================
   RISK SECTION
========================= */

.risk {
  background:
    radial-gradient(circle at top right, rgba(149, 79, 195, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 54%, #122d55 100%);
  color: white;
  border-radius: 34px;
  padding: 40px;
  margin: 52px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  box-shadow: var(--shadow);
}

.risk h2 {
  color: white;
  margin-top: 0;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.risk p,
.risk li {
  color: #d4dfed;
}

.risk ul {
  margin: 0;
  padding-left: 20px;
}

/* =========================
   FAQ
========================= */

.faq {
  display: grid;
  gap: 13px;
  margin-bottom: 52px;
}

details {
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--navy);
  font-size: 18px;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  border-radius: 34px;
  padding: 44px;
  background:
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(11, 18, 32, 0.82), rgba(23, 59, 115, 0.9)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

.final-cta p {
  color: #d9e5f5;
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto 24px;
}

/* =========================
   FOOTER
========================= */

footer {
  margin-top: 58px;
  padding: 30px 24px;
  background:
    linear-gradient(90deg, #07101f 0%, #0d213e 100%);
  color: #c7d4e5;
  font-size: 14px;
}

.footer-inner {
  max-width: 1180px;
  margin: auto;
}

/* =========================
   MOBILE STICKY CTA
========================= */

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 20;
}

.mobile-sticky a {
  display: flex;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--danger) 0%, var(--danger-dark) 100%);
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(149, 79, 195, 0.34);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero-wrap,
  .split,
  .risk {
    grid-template-columns: 1fr;
  }

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

  .nav-links a:not(.emergency-mini) {
    display: none;
  }

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

  .hero {
    padding-top: 54px;
  }

  .mobile-sticky {
    display: block;
  }

  main {
    padding-bottom: 95px;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 13px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-text {
    font-size: 19px;
  }

  .brand-domain {
    display: none;
  }

  .emergency-mini {
    font-size: 11.5px;
    padding: 7px 10px;
    border-radius: 7px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-card,
  .risk,
  .final-cta {
    border-radius: 24px;
  }

  .risk,
  .final-cta {
    padding: 28px;
  }
}