:root {
  --bg: #f2f7f6;
  --bg-soft: rgba(255, 255, 255, 0.7);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1a2e2e;
  --muted: #4d6a6a;
  --line: rgba(26, 107, 107, 0.15);
  --accent: #1a6b6b;
  --accent-deep: #0d4a4a;
  --accent-soft: #dcefef;
  --gold: #c9a84c;
  --gold-soft: #f5edd6;
  --coral: #ff6b6b;
  --coral-soft: #ffe0e0;
  --sky: #4ecdc4;
  --sky-soft: #d4f5f2;
  --purple: #8b5cf6;
  --purple-soft: #ede9fe;
  --pink: #f472b6;
  --pink-soft: #fce7f3;
  --orange: #fb923c;
  --orange-soft: #ffedd5;
  --shadow: 0 18px 60px rgba(13, 74, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 107, 107, 0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(78, 205, 196, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 107, 107, 0.08), transparent 28%),
    linear-gradient(180deg, #eef5f3 0%, #f7faf9 100%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-soft);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--sky), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: scale(1.03);
}

.brand::before {
  content: "🚀 ";
  -webkit-text-fill-color: initial;
  color: var(--sky);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.hero {
  display: grid;
  gap: 24px;
}

.hero-content,
.policy-header,
.policy-card,
.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  overflow: hidden;
  padding: 64px 36px;
  border-radius: 36px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(78, 205, 196, 0.08));
  filter: blur(6px);
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 107, 107, 0.18), rgba(201, 168, 76, 0.10));
  filter: blur(4px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--sky) 50%, var(--purple) 100%);
  box-shadow: 0 16px 26px rgba(26, 107, 107, 0.24);
}

.button.primary:hover {
  box-shadow: 0 20px 32px rgba(139, 92, 246, 0.30);
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--purple) 100%);
}

.button.secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.info-card {
  padding: 28px;
  border-radius: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(13, 74, 74, 0.16);
}

.info-card:nth-child(1) {
  border-bottom: 3px solid var(--purple);
}

.info-card:nth-child(2) {
  border-bottom: 3px solid var(--coral);
}

.wide-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(26, 107, 107, 0.10), rgba(255, 255, 255, 0.92));
  border-left: 4px solid var(--gold);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.info-card:nth-child(1) .card-tag {
  background: var(--purple-soft);
  color: var(--purple);
}

.info-card:nth-child(2) .card-tag {
  background: var(--coral-soft);
  color: var(--coral);
}

.wide-card .card-tag {
  background: var(--gold-soft);
  color: #8a6d1c;
}

.info-card h2,
.policy-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.info-card p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
  color: var(--accent-deep);
  transition: color 200ms ease, gap 200ms ease;
}

.text-link:hover {
  color: var(--purple);
  gap: 10px;
}

.policy-wrapper {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.topbar-inner {
  margin-top: 8px;
}

.policy-header {
  padding: 32px;
  border-radius: 30px;
  border-left: 4px solid var(--purple);
}

.updated-at {
  margin-top: 18px;
  color: var(--accent-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-card {
  padding: 32px;
  border-radius: 30px;
  border-left: 4px solid transparent;
  background: linear-gradient(135deg, var(--surface), rgba(255,255,255,0.95));
  transition: border-color 200ms ease;
}

.policy-card:hover {
  border-left-color: var(--coral);
}

.policy-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.policy-card ul {
  padding-left: 20px;
  margin-bottom: 22px;
}

.contact-box {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border-left: 4px solid var(--sky);
  transition: box-shadow 200ms ease;
}

.contact-box:hover {
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.20);
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 14px;
  }

  .topbar,
  .hero-content,
  .policy-header,
  .policy-card,
  .info-card {
    border-radius: 24px;
  }

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

  .hero-content,
  .policy-header,
  .policy-card,
  .info-card {
    padding: 24px;
  }

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

  .wide-card {
    grid-column: auto;
  }

  h1 {
    line-height: 1.02;
  }
}
