:root {
  --ink: #111315;
  --muted: #667078;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #ded8cf;
  --gold: #c7943a;
  --teal: #146b67;
  --steel: #243039;
  --rust: #9d563a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 68px);
  color: #fff;
  background: #111315;
}

.example-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.example-brand img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
}

.back-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.example-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 68px);
  background: #fbfaf7;
}

.tier-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #111315;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 19, 21, 0.18);
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 68px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

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

.card {
  min-height: 190px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 19, 21, 0.07);
}

.card p,
.section-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.mock-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 16px;
  align-items: stretch;
}

.mock-card {
  padding: 28px;
  color: #fff;
  background: #111315;
  border-radius: 8px;
}

.mock-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.mock-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mock-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 68px);
  color: #fff;
  background: var(--steel);
}

.cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .example-hero,
  .mock-panel,
  .cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .example-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
