@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,750&family=Manrope:wght@400;550;700;800&display=swap");

:root {
  --ink: #111511;
  --paper: #fff7e8;
  --gold: #f1b84b;
  --clay: #9b5c2e;
  --shadow: 0 26px 70px rgba(9, 14, 11, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 10%, rgba(241, 184, 75, 0.2), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(87, 168, 148, 0.24), transparent 34rem),
    linear-gradient(135deg, #0a1014 0%, #17271f 50%, #3b2415 100%);
  font-family: Manrope, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

code {
  padding: 0.16em 0.42em;
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.12);
  color: var(--paper);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.92em;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0;
  color: rgba(255, 247, 232, 0.78);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  padding: 82px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(56px, 8vw, 108px);
  letter-spacing: -0.07em;
}

h2 {
  color: var(--paper);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 30px;
  letter-spacing: -0.03em;
}

p,
li {
  color: rgba(255, 247, 232, 0.78);
  font-size: 17px;
  line-height: 1.72;
}

.lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 247, 232, 0.82);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.1);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c140a;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 247, 232, 0.16);
  border-color: rgba(255, 247, 232, 0.46);
}

.button.primary:hover {
  background: #ffd477;
}

section {
  padding: 68px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
}

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

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

.panel,
.card,
.quote,
.figure {
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 28px;
  background: rgba(255, 247, 232, 0.09);
  box-shadow: var(--shadow);
}

.panel,
.card {
  padding: 26px;
}

.card {
  min-height: 230px;
  text-decoration: none;
  transition:
    transform 200ms ease,
    background 200ms ease;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 247, 232, 0.14);
}

.card-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.figure {
  padding: 18px;
  margin: 0;
  overflow: hidden;
}

.figure img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.media-card {
  padding: 18px;
  overflow: hidden;
}

.media-card video {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
}

.media-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.media-placeholder {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 247, 232, 0.05);
}

.media-placeholder p {
  margin: 0;
}

.microcopy {
  color: rgba(255, 247, 232, 0.64);
  font-size: 14px;
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

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

.metric-chip {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  background: rgba(255, 247, 232, 0.07);
}

.metric-chip strong {
  display: block;
  color: var(--paper);
  font-size: 28px;
  font-family: Fraunces, Georgia, serif;
}

.metric-chip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 247, 232, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

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

.preview-card {
  overflow: hidden;
}

.preview-card img {
  display: block;
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
}

.preview-card p {
  margin: 0;
}

.stack {
  display: grid;
  gap: 18px;
}

.eyebrow-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 184, 75, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 999px;
  color: rgba(255, 247, 232, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.quote {
  padding: 26px;
  background: rgba(241, 184, 75, 0.13);
}

.quote p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(21px, 3vw, 34px);
  font-family: Fraunces, Georgia, serif;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  background: rgba(255, 247, 232, 0.08);
}

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

th,
td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 247, 232, 0.12);
  color: rgba(255, 247, 232, 0.78);
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.workflow {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 22px;
  background: rgba(255, 247, 232, 0.07);
}

.workflow li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c140a;
  font-weight: 900;
}

.compact-list {
  margin: 0;
  padding-left: 20px;
}

.footer {
  padding: 78px 0 38px;
}

.footer-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 247, 232, 0.1);
  border: 1px solid rgba(255, 247, 232, 0.18);
}

@media (max-width: 900px) {
  .section-heading,
  .grid,
  .case-grid,
  .case-grid.four,
  .proof-grid,
  .metric-row,
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 54px;
  }

  section {
    padding: 50px 0;
  }
}
