:root {
  --bg: #0b0f14;
  --bg-soft: #111821;
  --bg-deep: #070a0f;

  --text: #f5f7fa;
  --muted: #a9b4c0;
  --muted-strong: #c7d0dc;

  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);

  --card: #ffffff;
  --card-text: #111827;

  --accent: #8aa4c2;
  --accent-soft: rgba(138, 164, 194, 0.16);
  --accent-line: rgba(138, 164, 194, 0.36);

  --light: #f5f3ee;
  --light-muted: #e8e2d6;
  --light-alt: #ede7db;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--light);
  color: #171717;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

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

main a:not(.button),
footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 92%);
}

.center {
  text-align: center;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: #ffffff;
  color: #07111f;
  border: 2px solid #07111f;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 12px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f4c542;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* HEADER */

.site-header {
  background: rgba(11, 15, 20, 0.96);
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand a {
  text-decoration: none;
}

.brand a:hover {
  color: var(--accent);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

/* HERO */

.hero {
  background:
    radial-gradient(circle at top right, rgba(138, 164, 194, 0.15), transparent 34%),
    linear-gradient(90deg, rgba(11, 15, 20, 1), rgba(11, 15, 20, 0.96)),
    var(--bg);
  color: var(--text);
  padding: 86px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  line-height: 0.98;
  margin: 0 0 30px;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.lead {
  font-size: 1.28rem;
  color: #273142;
  max-width: 640px;
}

.hero .lead {
  color: #e7ebf1;
}

.hero p {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.hero .strong {
  color: var(--text);
}

.infrastructure-line {
  border-left: 3px solid var(--accent-line);
  padding-left: 14px;
  margin-top: 18px;
  color: var(--muted) !important;
}

.cta-note {
  margin-top: 24px;
}

.emphasis-line {
  font-weight: 800;
  color: var(--text) !important;
}

/* PANELS */

.panel {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(8px);
}

.panel h2 {
  font-size: 1.5rem;
}

/* BUTTONS */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  text-decoration: none;
}

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

.button.primary {
  background: #1f2a37;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.button.primary:hover {
  background: #2a3646;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.section .button.secondary,
.not-found .button.secondary {
  color: #1f2a37;
  border-color: rgba(31, 42, 55, 0.35);
}

.button.secondary:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

/* SECTIONS */

.section {
  padding: 78px 0;
}

.muted {
  background: var(--light-alt);
}

.dark {
  background: var(--bg-soft);
  color: var(--text);
}

.dark p {
  color: var(--muted-strong);
}

.section-intro {
  max-width: 760px;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 30px;
  align-items: stretch;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--card);
  color: var(--card-text);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.policy-card h2 {
  margin-top: 34px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

/* LISTS */

.panel ul,
.card ul,
.check-list {
  padding-left: 20px;
}

.panel li,
.card li,
.check-list li {
  margin-bottom: 9px;
}

/* FAQ */

details {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

summary {
  font-weight: 800;
  cursor: pointer;
}

/* CONTACT */

.contact {
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.contact p {
  color: var(--muted);
}

.contact-info {
  margin-top: 26px;
  font-weight: 800;
  color: var(--text) !important;
}

.policy-card .contact-info {
  color: var(--card-text) !important;
  text-align: left;
}

/* FOOTER */

.site-footer {
  background: var(--bg-deep);
  color: var(--muted);
  padding: 28px 0;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 4px 0;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.5;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

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

/* TYPOGRAPHY HELPERS */

.strong {
  font-weight: 800;
}

.small {
  font-size: 0.92rem;
}

/* REVIEW FRAGMENTS / COPY-PASTE BOXES */

.review-fragment {
  background: #ececec;
  border: 1px solid #cfcfcf;
  padding: 18px;
  border-radius: 4px;
  margin-top: 28px;
}

.review-fragment pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #222;
}

.fragment-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #666;
  font-weight: 700;
}

/* NOT FOUND */

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at top left, rgba(138, 164, 194, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg), #050814 100%);
}

.not-found-card {
  max-width: 620px;
  text-align: center;
}

.not-found-card h1 {
  font-size: clamp(4rem, 12vw, 7rem);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .cards.three,
  .cards.four {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    gap: 12px;
  }

  .hero {
    padding: 68px 0 76px;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
}


/* SEO OPS V2 */
.trust-section { background: var(--light); }
.trust-cards .card, .service-cards .card { min-height: 100%; }
.service-cards h3 a, .trust-cards h3 a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) { nav { gap: 14px; font-size: 0.88rem; } }
