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

:root {
  --blue: #1a4d8c;
  --blue-dark: #123566;
  --blue-light: #e8f0fa;
  --text: #1a1a1a;
  --muted: #5c6570;
  --card: #ffffff;
  --radius: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(160deg, #f0f5fc 0%, #f7f9fc 45%, #eef3f9 100%);
  min-height: 100vh;
}

a {
  color: var(--blue);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26, 77, 140, 0.2);
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.header-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
}

.header-link:hover {
  color: #fff;
  text-decoration: underline;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(26, 77, 140, 0.08);
  border: 1px solid rgba(26, 77, 140, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.7;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2 {
  margin: 0;
  line-height: 1.25;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--blue-dark);
}

.lang-block {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.lang-block:last-of-type {
  margin-bottom: 1.5rem;
}

.lang-tag {
  flex-shrink: 0;
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 4px;
}

.lead {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem 0.6rem 1rem;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.play-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.play-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.play-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.play-text small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.play-text strong {
  font-size: 1.15rem;
  font-weight: 600;
}

.section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.section-title-bm {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eef1f5;
}

.feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  background: var(--blue-light);
  border-radius: 10px;
}

.feature-list strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.feature-bm {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.1rem;
}

.feature-list p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-bm-text {
  font-style: italic;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 1.25rem 2rem;
}

.footer-links-sep {
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--blue) !important;
  border: 1.5px solid rgba(26, 77, 140, 0.25);
}

.btn-secondary:hover {
  background: var(--blue-light);
}

footer {
  text-align: center;
  padding: 0 1.5rem 2rem;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Privacy page shared styles */
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
}

p,
ul {
  margin: 0 0 1rem;
}

ul:not(.feature-list) {
  padding-left: 1.25rem;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .card {
    padding: 1.5rem;
  }

  .lang-block {
    flex-direction: column;
    gap: 0.35rem;
  }
}
