:root {
  --bg: #fff9f1;
  --bg-soft: rgba(255, 255, 255, 0.7);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1f1726;
  --muted: #645a6d;
  --line: rgba(69, 36, 94, 0.12);
  --accent: #ff7a18;
  --accent-deep: #c94900;
  --accent-soft: #fff0df;
  --shadow: 0 18px 60px rgba(86, 48, 22, 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(255, 170, 89, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf8 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;
}

.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::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(255, 196, 132, 0.12));
  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%, #ff944d 100%);
  box-shadow: 0 16px 26px rgba(255, 122, 24, 0.24);
}

.button.secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

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

.info-card {
  padding: 28px;
  border-radius: 28px;
}

.wide-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(255, 255, 255, 0.92));
}

.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  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;
}

.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;
  margin-top: 10px;
  font-weight: 600;
  color: var(--accent-deep);
}

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

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

.policy-header {
  padding: 32px;
  border-radius: 30px;
}

.updated-at {
  margin-top: 18px;
  color: var(--accent-deep);
  font-weight: 600;
}

.policy-card {
  padding: 32px;
  border-radius: 30px;
}

.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);
}

@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;
  }
}
