:root {
  color-scheme: light;
  --bg: #faf6f1;
  --bg-deep: #f0e8de;
  --surface: rgba(255, 252, 248, 0.96);
  --surface-muted: rgba(255, 247, 240, 0.94);
  --text: #2c2218;
  --muted: #7a6b5c;
  --accent: #d45a3a;
  --accent-deep: #a83d22;
  --glow-coral: #e8724f;
  --glow-coral-soft: rgba(232, 114, 79, 0.16);
  --glow-saffron: #e8a84a;
  --glow-saffron-soft: rgba(232, 168, 74, 0.18);
  --glow-olive: #6b8f5e;
  --glow-olive-soft: rgba(107, 143, 94, 0.14);
  --glow-cream: #fff4e8;
  --glow-cream-soft: rgba(255, 244, 232, 0.6);
  --ink: #1a120c;
  --border: rgba(212, 90, 58, 0.14);
  --shadow: 0 28px 72px rgba(44, 34, 24, 0.12);
  --radius: 32px;
  --radius-sm: 20px;
  --font-display: "SF Pro Display", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "SF Pro Text", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 40% at 92% 8%, rgba(232, 114, 79, 0.14), transparent),
    radial-gradient(ellipse 42% 36% at 6% 42%, rgba(232, 168, 74, 0.12), transparent),
    radial-gradient(ellipse 50% 42% at 48% 98%, rgba(107, 143, 94, 0.1), transparent),
    linear-gradient(168deg, #fff9f3 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.ambient__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 52px,
      rgba(212, 90, 58, 0.05) 52px,
      rgba(212, 90, 58, 0.05) 53px
    );
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 8%, transparent 85%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.ambient__orb--coral {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(232, 114, 79, 0.28);
}

.ambient__orb--saffron {
  width: 380px;
  height: 380px;
  top: 42%;
  left: -120px;
  background: rgba(232, 168, 74, 0.22);
}

.ambient__orb--olive {
  width: 320px;
  height: 320px;
  bottom: 8%;
  right: 8%;
  background: rgba(107, 143, 94, 0.16);
}

.page {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 56px 48px 48px;
  border-radius: var(--radius);
  background: linear-gradient(152deg, #fffdfb 0%, #fff7ef 55%, #fef0e4 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% -8%, rgba(232, 168, 74, 0.12), transparent 58%),
    radial-gradient(ellipse 30% 28% at 88% 72%, rgba(107, 143, 94, 0.08), transparent 52%),
    radial-gradient(ellipse 24% 22% at 8% 78%, rgba(232, 114, 79, 0.1), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-olive) 12%,
    var(--glow-saffron) 48%,
    var(--glow-coral) 88%,
    transparent
  );
  opacity: 0.9;
  border-radius: 0 0 4px 4px;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  color: var(--accent);
  background: linear-gradient(
    148deg,
    var(--glow-coral-soft) 0%,
    var(--glow-saffron-soft) 50%,
    var(--glow-olive-soft) 100%
  );
  border: 1.5px solid rgba(212, 90, 58, 0.22);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 20px rgba(255, 255, 255, 0.7),
    0 8px 32px rgba(212, 90, 58, 0.14),
    0 4px 16px rgba(44, 34, 24, 0.06);
  position: relative;
  z-index: 1;
}

.hero__badge svg {
  width: 48px;
  height: 48px;
}

.hero__content {
  min-width: 0;
  position: relative;
  z-index: 1;
  max-width: 58ch;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.brand-title span {
  background: linear-gradient(
    108deg,
    var(--accent-deep) 0%,
    var(--glow-coral) 35%,
    var(--glow-saffron) 68%,
    var(--glow-olive) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin: 18px 0 0;
  font-size: 1.04rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.005em;
}

h1 {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lead {
  margin-top: 16px;
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.updated {
  display: inline-block;
  margin-top: 28px;
  padding: 9px 22px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--glow-coral-soft);
  border: 1px solid rgba(212, 90, 58, 0.28);
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--glow-saffron);
  box-shadow: 0 6px 28px rgba(44, 34, 24, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-top-color 0.24s ease;
}

.highlights li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(44, 34, 24, 0.1);
}

.highlights li:nth-child(1) {
  border-top-color: var(--glow-coral);
}

.highlights li:nth-child(2) {
  border-top-color: var(--glow-saffron);
}

.highlights li:nth-child(3) {
  border-top-color: var(--glow-olive);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.highlights span {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.58;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--glow-coral), var(--glow-saffron), var(--glow-olive));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.card:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(212, 90, 58, 0.22);
  box-shadow: 0 10px 32px rgba(44, 34, 24, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 11px;
}

a {
  color: var(--accent);
  font-weight: 600;
}

a:hover {
  color: var(--accent-deep);
}

.footer {
  margin-top: 52px;
  padding: 26px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 720px) {
  .hero {
    padding: 42px 28px 36px;
  }

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

@media (max-width: 480px) {
  .page {
    padding: 28px 0 56px;
  }

  .hero {
    padding: 34px 22px 30px;
  }
}
