:root {
  --ink: #11203b;
  --ink-soft: #40526f;
  --paper: #f6f5ef;
  --card: #ffffff;
  --line: rgba(17, 32, 59, 0.12);
  --accent: #2b6cb0;
  --accent-deep: #173f73;
  --accent-soft: #dce9f7;
  --highlight: #e6b655;
  --shadow: 0 24px 60px rgba(17, 32, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(230, 182, 85, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(43, 108, 176, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfaf5 0%, #f3f5f8 100%);
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 28px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(43, 108, 176, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-copy,
.hero-card,
.section-card,
.policy-section {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 0;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(17, 32, 59, 0.95) 0%, rgba(25, 56, 96, 0.95) 100%),
    linear-gradient(135deg, rgba(230, 182, 85, 0.18), transparent 50%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 182, 85, 0.25), transparent 70%);
}

.hero-card h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.hero-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
}

.hero-list strong {
  display: block;
  color: #fff;
}

.dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--highlight);
}

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

.section-card {
  padding: 26px;
}

.section-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.section-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(230, 182, 85, 0.18), rgba(43, 108, 176, 0.12));
  border: 1px solid var(--line);
  margin-bottom: 28px;
}

.cta-band p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.cta-label {
  font-weight: 700;
  color: var(--accent-deep);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
}

.support-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
}

.policy-hero {
  padding: 34px;
  margin-bottom: 20px;
}

.policy-hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}

.policy-meta {
  color: var(--ink-soft);
  line-height: 1.7;
}

.support-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px;
  margin-bottom: 20px;
}

.support-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  flex: 0 0 88px;
  box-shadow: 0 14px 28px rgba(17, 32, 59, 0.18);
}

.support-copy h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 10px;
}

.support-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(43, 108, 176, 0.05);
  border: 1px solid rgba(43, 108, 176, 0.1);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.policy-section {
  padding: 26px 28px;
  margin-bottom: 16px;
}

.policy-section h2 {
  font-size: 1.28rem;
  margin-bottom: 14px;
}

.policy-section p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.contact-block {
  padding: 24px 28px;
  border-radius: 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(43, 108, 176, 0.16);
  margin-bottom: 28px;
}

.contact-block p {
  margin: 0;
  color: var(--ink);
  line-height: 1.8;
}

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

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

  .cta-band,
  .site-footer,
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .policy-shell,
  .support-shell {
    padding: 18px;
  }

  .hero-copy,
  .hero-card,
  .section-card,
  .policy-section,
  .policy-hero,
  .contact-block,
  .support-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .header-links {
    flex-wrap: wrap;
  }

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