:root {
  --bg: #f5efe4;
  --paper: #fbf7ef;
  --ink: #142f4a;
  --ink-soft: #4f5e6d;
  --gold: #c6a15a;
  --gold-deep: #a88545;
  --line: rgba(20, 47, 74, 0.12);
  --shadow: 0 18px 50px rgba(20, 47, 74, 0.08);
  --radius: 22px;
  --max: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(198, 161, 90, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 52%, #efe4d2 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  padding: 22px 0 16px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #1f4567 100%);
  color: #fffdf8;
  box-shadow: 0 14px 30px rgba(20, 47, 74, 0.16);
}

.btn-secondary {
  border-color: rgba(20, 47, 74, 0.14);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.hero {
  padding: 28px 0 44px;
}

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

.hero-copy,
.hero-card,
.content-card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(20, 47, 74, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 44px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.83rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.lede,
.content-card p,
.policy-copy p,
.policy-copy li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(198, 161, 90, 0.08);
  border: 1px solid rgba(198, 161, 90, 0.18);
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-note span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(198, 161, 90, 0.12);
  filter: blur(4px);
}

.hero-card::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
}

.hero-card::after {
  width: 140px;
  height: 140px;
  bottom: -20px;
  left: -30px;
}

.hero-logo {
  width: 128px;
  height: 128px;
  margin-bottom: 20px;
  border-radius: 32px;
  box-shadow: 0 22px 48px rgba(20, 47, 74, 0.14);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.feature-list li:first-child {
  border-top: none;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--ink) 100%);
  flex-shrink: 0;
}

.section {
  padding: 18px 0 34px;
}

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

.content-card {
  padding: 28px;
}

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

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(198, 161, 90, 0.42);
  box-shadow: 0 20px 54px rgba(166, 133, 69, 0.16);
}

.price-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(198, 161, 90, 0.15);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-label {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.price-amount small {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.card-list {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.page-main {
  padding: 28px 0 58px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 22px;
}

.policy-nav,
.policy-copy {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(20, 47, 74, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-nav {
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 18px;
}

.policy-nav h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.policy-nav a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: var(--ink-soft);
}

.policy-nav a:hover {
  color: var(--ink);
}

.policy-copy {
  padding: 34px;
}

.policy-copy section + section {
  margin-top: 32px;
}

.footer {
  padding: 20px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

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

  .policy-nav {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .topbar-inner,
  .hero-notes {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    display: grid;
  }

  .hero-copy,
  .hero-card,
  .content-card,
  .policy-copy,
  .policy-nav {
    padding: 24px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.35rem;
  }
}
