:root {
  --paper: #f6efe5;
  --paper-strong: #fffaf3;
  --sand: #ead9c1;
  --mist: #e8e0d2;
  --ink: #122725;
  --ink-soft: #415551;
  --forest: #173a35;
  --forest-soft: #234b45;
  --copper: #b96f3f;
  --copper-deep: #90512b;
  --gold: #d7b67b;
  --line: rgba(18, 39, 37, 0.1);
  --line-strong: rgba(18, 39, 37, 0.18);
  --shadow: 0 26px 70px rgba(18, 39, 37, 0.12);
  --shadow-strong: 0 38px 90px rgba(18, 39, 37, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 182, 123, 0.28), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(35, 75, 69, 0.12), transparent 18%),
    linear-gradient(180deg, #f9f4eb 0%, #efe4d3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 250, 243, 0.46), transparent 16%),
    radial-gradient(circle at 85% 58%, rgba(255, 250, 243, 0.34), transparent 18%);
}

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

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.45;
}

.site-shell::before {
  top: 4rem;
  left: -8rem;
  background: rgba(185, 111, 63, 0.16);
}

.site-shell::after {
  right: -6rem;
  bottom: 12rem;
  background: rgba(35, 75, 69, 0.14);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(18, 39, 37, 0.06);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 32px rgba(18, 39, 37, 0.06);
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  box-shadow: 0 0 0 5px rgba(185, 111, 63, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(249, 244, 235, 0.82);
  border-bottom: 1px solid rgba(18, 39, 37, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 111, 63, 0.28), transparent);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand__name {
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand__tag {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav__link {
  padding: 0.86rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 12px 26px rgba(18, 39, 37, 0.08);
  transform: translateY(-1px);
}

.site-nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.28rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-nav__cta,
.button--primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff8ef;
  box-shadow: 0 18px 34px rgba(144, 81, 43, 0.22);
}

.site-nav__cta:hover,
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(144, 81, 43, 0.28);
}

.button--ghost {
  border: 1px solid rgba(18, 39, 37, 0.1);
  background: rgba(255, 250, 243, 0.82);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(18, 39, 37, 0.05);
}

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

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  padding: 0.72rem 0.92rem;
  background: rgba(255, 250, 243, 0.84);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(18, 39, 37, 0.08);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  gap: 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.page-hero__panel,
.card,
.highlight-panel,
.table-card,
.post-card,
.faq-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 39, 37, 0.08);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: clamp(1.65rem, 4vw, 3.3rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(248, 241, 231, 0.92)),
    var(--paper-strong);
}

.hero__content::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.35), transparent 72%);
  pointer-events: none;
}

.hero__content::after {
  content: "01";
  position: absolute;
  right: 1.4rem;
  bottom: 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6rem);
  color: rgba(18, 39, 37, 0.08);
  line-height: 1;
  pointer-events: none;
}

.hero__panel {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1.05rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(23, 58, 53, 0.98), rgba(15, 33, 31, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.94);
  min-height: 100%;
}

.hero__panel::before {
  content: "Radar";
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255, 250, 243, 0.06);
  pointer-events: none;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 48%, rgba(255, 255, 255, 0.03) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at top right, rgba(215, 182, 123, 0.16), transparent 24%);
  pointer-events: none;
}

.hero h1,
.page-hero h1,
.section-heading,
.rich-copy h2 {
  margin: 0.95rem 0 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6.8vw, 6rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.section-heading {
  max-width: 13ch;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.hero__lead,
.page-hero__lead,
.section-intro,
.footer-note,
.table-note,
.stack p,
.rich-copy p,
.card p,
.post-card p,
.faq-card p {
  color: var(--ink-soft);
  line-height: 1.84;
}

.hero__lead,
.page-hero__lead {
  max-width: 60ch;
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.stat-card {
  position: relative;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.74);
  border: 1px solid rgba(18, 39, 37, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero__panel-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__checklist,
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__checklist {
  position: relative;
  z-index: 1;
  display: grid;
}

.hero__checklist li {
  position: relative;
  padding: 1rem 0 1rem 1.7rem;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__checklist li:first-child {
  border-top: 0;
}

.hero__checklist li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  box-shadow: 0 0 0 6px rgba(215, 182, 123, 0.08);
}

.bullet-list li {
  position: relative;
  padding-left: 1.45rem;
  line-height: 1.8;
}

.bullet-list li + li {
  margin-top: 0.8rem;
}

.feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__panel-note {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background: rgba(255, 250, 243, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__panel-note p {
  margin: 0;
  color: rgba(255, 250, 243, 0.8);
}

.hero__panel .meta-badge {
  background: rgba(255, 250, 243, 0.12);
  color: #fff4dc;
}

.feature-strip__item {
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-strip__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff8ef;
}

.feature-strip__item span {
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.65;
}

main > section {
  position: relative;
  padding: 3.3rem 0;
}

main > section:not(.hero):not(.page-hero):nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.22), transparent);
}

main > section:not(.hero):not(.page-hero):nth-of-type(even) {
  background: linear-gradient(180deg, rgba(18, 39, 37, 0.03), transparent);
}

.cards-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.highlight-panel,
.table-card,
.post-card,
.faq-card,
.contact-card {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(248, 241, 231, 0.88)),
    var(--paper-strong);
}

.card::before,
.highlight-panel::before,
.table-card::before,
.post-card::before,
.faq-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--copper), var(--gold), transparent 82%);
}

.card::after,
.highlight-panel::after,
.post-card::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 68%);
  pointer-events: none;
}

.cards-grid--four .card:nth-child(2),
.cards-grid--four .card:nth-child(4) {
  transform: translateY(1.35rem);
}

.cards-grid:not(.cards-grid--four) .card:nth-child(2) {
  transform: translateY(1rem);
}

.card h3,
.post-card h3,
.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.18;
}

.card__badge,
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  background: rgba(185, 111, 63, 0.08);
  color: var(--copper-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stack {
  display: grid;
  gap: 1rem;
}

.page-hero {
  padding: 4.8rem 0 1.2rem;
}

.page-hero__panel {
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(246, 239, 227, 0.9)),
    var(--paper-strong);
}

.page-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 70%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs span {
  opacity: 0.64;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.25rem;
}

.split-grid > .highlight-panel {
  margin-top: 4.2rem;
}

.highlight-panel {
  min-height: 100%;
}

.highlight-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.table-card {
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(244, 236, 224, 0.92)),
    var(--paper-strong);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(18, 39, 37, 0.08);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--copper-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 39, 37, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(247, 240, 230, 0.9)),
    var(--paper-strong);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--copper-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  line-height: 1.84;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.rich-copy {
  display: grid;
  gap: 1.25rem;
}

.rich-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background:
    linear-gradient(135deg, rgba(23, 58, 53, 0.98), rgba(28, 67, 61, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.95);
  box-shadow: var(--shadow-strong);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 66%);
}

.cta-band p {
  max-width: 64ch;
  color: rgba(255, 250, 243, 0.78);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list a,
.contact-list strong {
  display: block;
}

.site-footer {
  padding: 3rem 0 3.4rem;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background:
    linear-gradient(135deg, rgba(23, 58, 53, 0.99), rgba(15, 33, 31, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow-strong);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.site-footer__links a {
  color: rgba(255, 250, 243, 0.82);
}

.site-footer__links a:hover {
  color: #fff;
}

.footer-note {
  color: rgba(255, 250, 243, 0.7);
}

.muted {
  color: var(--ink-soft);
}

.align-start {
  align-items: start;
}

.spacer-top {
  margin-top: 1.2rem;
}

.reveal {
  animation: riseIn 0.72s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .split-grid,
  .site-footer__panel {
    grid-template-columns: 1fr;
  }

  .split-grid > .highlight-panel {
    margin-top: 0;
  }

  .cards-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-nav__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.82rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 39, 37, 0.08);
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav__menu[data-open="true"] {
    display: flex;
  }

  .site-nav__link,
  .site-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__stats,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .cards-grid--four .card:nth-child(2),
  .cards-grid--four .card:nth-child(4),
  .cards-grid:not(.cards-grid--four) .card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .cards-grid,
  .cards-grid--four,
  .post-grid,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .site-header__bar {
    min-height: 84px;
  }

  .hero__content,
  .hero__panel,
  .page-hero__panel,
  .card,
  .highlight-panel,
  .table-card,
  .post-card,
  .faq-card,
  .contact-card,
  .site-footer__panel,
  .cta-band {
    padding: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.35rem);
  }

  .page-hero h1,
  .section-heading {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }
}
