:root {
  --bg: #f1f6ff;
  --panel: #ffffff;
  --text: #1f2a44;
  --muted: #5f6887;
  --heading: #041431;
  --accent: #005ed1;
  --accent-strong: #ff0335;
  --accent-soft: #ffdf47;
  --border: #d8e3ff;
  --shadow: 0 12px 40px rgba(8, 29, 74, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, Helvetica,
    sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: radial-gradient(
      circle at top,
      rgba(0, 94, 209, 0.18),
      transparent 60%
    )
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
ul,
ol {
  margin: 0 0 1.25rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.45rem;
}

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

a:hover,
a:focus {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.container {
  width: min(880px, 90vw);
  margin: 0 auto;
  padding: 64px 0 90px;
}

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.logo {
  width: 110px;
  height: 110px;
  margin-bottom: 0.5rem;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 94, 209, 0.08);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin: 0.8rem 0 0.6rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.tagline {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.multi-server-callout {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 94, 209, 0.12),
    rgba(0, 94, 209, 0.04)
  );
  border: 1px solid rgba(0, 94, 209, 0.18);
  box-shadow: var(--shadow);
  text-align: left;
}

.multi-server-callout strong {
  display: block;
  font-size: 0.95rem;
  color: var(--heading);
}

.multi-server-callout p {
  margin: 0.2rem 0 0;
  color: var(--text);
}

.cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.button {
  min-width: 200px;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  color: var(--heading);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.button.primary {
  background: linear-gradient(135deg, #1f7dff, #0050c8);
  color: #ffffff;
  border-color: rgba(0, 80, 200, 0.3);
}

.button.secondary {
  background: rgba(4, 20, 49, 0.08);
  color: var(--accent);
}

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

.meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.meta-card:first-child {
  grid-column: 1 / -1;
}

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

  .meta-card:first-child {
    grid-column: 1;
  }
}

.meta-card {
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  text-align: left;
}

.meta-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.meta-card strong {
  font-size: 1.05rem;
  color: var(--heading);
}

section {
  margin-top: 3.5rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--heading);
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2.1rem;
}

.privacy-wrapper {
  width: min(720px, 90vw);
  margin: 0 auto;
  padding: 64px 0 90px;
}

.privacy-hero {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.back-link {
  align-self: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.privacy-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--heading);
}

.privacy-tagline {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.privacy-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.privacy-section h2 {
  margin: 0 0 0.4rem;
  color: var(--heading);
}

.privacy-list {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}

.privacy-contact {
  border: 1px solid rgba(0, 94, 209, 0.18);
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 94, 209, 0.12),
    rgba(0, 94, 209, 0.04)
  );
  box-shadow: var(--shadow);
  margin-top: 2.5rem;
}

.privacy-contact h2 {
  margin-top: 0;
  color: var(--heading);
}

.privacy-updated {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--heading);
}

.pill {
  display: inline-block;
  padding: 0.15rem 0.65rem;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(0, 94, 209, 0.1);
  color: var(--accent);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  margin: 0 0 0.4rem;
  color: var(--heading);
}

.footer {
  text-align: center;
  padding: 3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
