:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-strong: #111827;
  --surface-muted: #ece8de;
  --text: #141414;
  --muted: #5f6470;
  --line: #d9d3c7;
  --accent: #d95f32;
  --accent-dark: #a53f1d;
  --gold: #d7aa4b;
  --green: #2e7d5b;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(217, 95, 50, 0.08), transparent 28%),
    linear-gradient(150deg, transparent 40%, rgba(17, 24, 39, 0.06) 40.2%, transparent 40.8%),
    linear-gradient(20deg, transparent 58%, rgba(217, 95, 50, 0.08) 58.2%, transparent 59%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: rgba(236, 232, 222, 0.72);
  border-block: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(217, 211, 199, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
}

.logo-mark {
  width: 20px;
  height: 20px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 18%, 58% 100%, 22% 62%);
  box-shadow: 8px 4px 0 rgba(217, 95, 50, 0.22);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 95, 50, 0.35);
  outline-offset: 4px;
}

.button-primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.2);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.button-small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.hero {
  padding-top: 66px;
}

.hero-grid,
.two-column {
  display: grid;
  gap: 36px;
}

.eyebrow,
.panel-label,
.field-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 790px;
  font-size: 1.08rem;
}

.hero-helper {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.badge-row,
.hero-actions,
.audience-list,
.output-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row {
  margin: 24px 0 30px;
}

.badge-row span,
.audience-list span,
.output-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: #363a42;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel,
.sample-card,
.pricing-card,
.asset-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -24px;
  right: -34px;
  width: 160px;
  height: 240px;
  background: rgba(217, 95, 50, 0.12);
  clip-path: polygon(44% 0, 100% 18%, 66% 100%, 0 70%);
}

.source-block,
.asset-stack {
  position: relative;
  z-index: 1;
}

.source-block {
  border-left: 4px solid var(--accent);
  padding: 16px;
  background: #fbfaf6;
}

.source-block strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.2;
}

.splinter-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 18px;
}

.splinter-lines span {
  height: 2px;
  max-width: 78%;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: skewY(-8deg);
}

.splinter-lines span:nth-child(2) {
  max-width: 92%;
  margin-left: 22px;
}

.splinter-lines span:nth-child(3) {
  max-width: 64%;
  margin-left: 44px;
}

.asset-stack {
  display: grid;
  gap: 10px;
}

.asset-stack span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  font-weight: 800;
}

.problem h2,
.problem p {
  max-width: 830px;
}

.problem p,
.final-cta p {
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.asset-grid,
.pricing-grid,
.sample-grid,
.written-assets,
.check-grid {
  display: grid;
  gap: 14px;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.card-list li {
  color: #343943;
}

.asset-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.asset-card {
  min-height: 92px;
  padding: 18px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease;
}

.asset-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps span {
  color: var(--accent-dark);
  font-weight: 900;
}

.check-grid span,
.promise-list span {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 750;
}

.output-strip {
  margin-top: 28px;
}

.sample-section {
  background: var(--surface-strong);
}

.sample-section h2,
.sample-section .section-heading p {
  color: #ffffff;
}

.sample-section .eyebrow {
  color: #f6b58d;
}

.sample-card {
  padding: 20px;
  box-shadow: none;
}

.sample-input {
  padding: 16px;
  border-radius: var(--radius);
  background: #fbfaf6;
  border: 1px solid var(--line);
}

.sample-input strong {
  display: block;
  font-size: 1.1rem;
}

.sample-grid {
  margin-top: 18px;
}

.sample-grid > div,
.written-assets > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.sample-grid p,
.written-assets p {
  margin-bottom: 0;
  color: #242832;
}

.score-box {
  background: #fff7e5 !important;
}

.score-box p {
  color: var(--accent-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.written-assets {
  margin-top: 18px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: none;
}

.recommended {
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(217, 95, 50, 0.12);
  color: var(--accent-dark);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #343943;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.pricing-card .button {
  margin-top: auto;
}

.quality {
  background: #181b22;
}

.quality h2,
.quality .eyebrow {
  color: #ffffff;
}

.quality .promise-list {
  display: grid;
  gap: 12px;
}

.quality .promise-list span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f7f5ef;
}

.audience-list {
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  box-shadow: none;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 10px;
}

.instructions-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #ffffff;
}

.footer-inner,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

@media (min-width: 640px) {
  .asset-grid,
  .info-grid,
  .check-grid,
  .sample-grid,
  .written-assets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    align-items: center;
  }

  .two-column {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .asset-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: translateY(-10px);
  }
}

@media (min-width: 1100px) {
  .asset-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 0;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .sample-card,
  .pricing-card,
  .hero-panel {
    padding: 18px;
  }
}
