:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #5e5b53;
  --paper: #f4f1e8;
  --paper-soft: #fbfaf5;
  --card: #e6ddcf;
  --line: #cec4b5;
  --black: #11110f;
  --white: #ffffff;
  --accent: #11110f;
  --shadow: 0 26px 70px rgba(17, 17, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(24px, 4vw, 80px);
  border-bottom: 1px solid rgba(17, 17, 15, 0.06);
  background: rgba(244, 241, 232, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
}

.brand-mark {
  display: inline;
  width: auto;
  height: auto;
  background: none;
  color: var(--ink);
}

.brand span:last-child {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  font-style: normal;
  font-weight: 750;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.signal-bars {
  display: none;
}

.signal-bars span {
  display: none;
}

.ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100% - 48px, 1180px);
  margin: clamp(28px, 4vw, 52px) auto -36px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 999px;
  background: rgba(251, 250, 245, 0.88);
  box-shadow: 0 18px 48px rgba(17, 17, 15, 0.12);
  backdrop-filter: blur(18px);
  white-space: normal;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 850;
}

.ticker strong {
  display: inline-flex;
  flex: 0 0 auto;
  margin-bottom: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1;
}

.ticker span {
  display: block;
  max-width: none;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.55vw, 1.35rem);
  line-height: 1.28;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  margin: 0 clamp(16px, 3vw, 48px) clamp(34px, 5vw, 70px);
  border-radius: 30px;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% 38%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.82), rgba(17, 17, 15, 0.28) 56%, rgba(17, 17, 15, 0.16)),
    linear-gradient(0deg, rgba(17, 17, 15, 0.8), rgba(17, 17, 15, 0.04) 72%);
}

.hero-content {
  position: relative;
  width: min(100% - 64px, 1180px);
  margin: 0 auto clamp(64px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eee7dc;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  max-width: 940px;
  font-size: clamp(3.1rem, 6.4vw, 6.7rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2.45rem, 5.4vw, 5.4rem);
}

.hero-copy {
  max-width: 760px;
  margin: 34px 0 0;
  color: #d9d1c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.35vw, 2rem);
  line-height: 1.22;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 1.06rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.16);
}

.button.primary::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.1em;
  line-height: 1;
}

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

.button.secondary {
  border: 1px solid rgba(244, 241, 232, 0.35);
  background: transparent;
  color: var(--paper);
}

.intro {
  padding: clamp(54px, 7vw, 96px) clamp(24px, 4vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro p {
  width: min(100%, 1180px);
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.25vw, 2rem);
  line-height: 1.24;
}

.section {
  padding: clamp(96px, 12vw, 172px) clamp(24px, 4vw, 80px);
}

.section.dark,
.section.light,
.section.color {
  background: var(--paper);
  color: var(--ink);
}

.layout,
.section-heading,
.card-grid,
.faq {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-intro {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.9vw, 1.6rem);
  line-height: 1.3;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.card {
  display: grid;
  min-height: 360px;
  padding: clamp(34px, 4vw, 54px);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.card p,
.card li {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.28;
}

.line-list {
  display: grid;
  gap: 0;
}

.line-list p,
.faq details {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.32;
}

.line-list strong,
.faq summary {
  color: var(--ink);
  font-weight: 900;
}

.faq summary {
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.cta {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--paper);
}

.cta .layout {
  align-items: end;
}

.cta .eyebrow {
  color: #d9d1c5;
}

.cta p {
  color: #d9d1c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.cta .button.primary,
.section.color .button.primary {
  min-width: min(100%, 300px);
  min-height: 76px;
  padding-inline: 40px;
  background: var(--black);
  color: var(--white);
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
  box-shadow: 0 18px 44px rgba(17, 17, 15, 0.18);
}

.cta .button.primary:hover,
.section.color .button.primary:hover {
  background: #000;
  box-shadow: 0 22px 54px rgba(17, 17, 15, 0.24);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(24px, 4vw, 80px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.footer a {
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 18px;
  }

  .nav {
    justify-content: flex-start;
  }

  .layout,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 660px;
  }
}

@media (max-width: 680px) {
  .ticker {
    display: block;
    width: min(100% - 32px, 1180px);
    margin-top: 18px;
    margin-bottom: -28px;
    border-radius: 20px;
  }

  .ticker strong {
    margin-bottom: 10px;
  }

  .hero {
    min-height: 560px;
    margin-inline: 12px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-actions {
    margin-top: 24px;
  }

  .hero-content {
    width: min(100% - 40px, 1180px);
    margin-bottom: 34px;
  }

  .hero-actions,
  .cta-actions,
  .button {
    width: 100%;
    min-height: 64px;
  }

  .card {
    min-height: 0;
  }

  .footer {
    flex-direction: column;
  }
}
