:root {
  --olive-900: #18271d;
  --olive-800: #233729;
  --olive-700: #315039;
  --blue-900: #102a43;
  --blue-800: #173f5f;
  --sand-50: #fbf7ee;
  --sand-100: #f3ead9;
  --sand-200: #e5d3b6;
  --graphite-900: #1e2421;
  --graphite-700: #3f4a45;
  --graphite-500: #69736d;
  --terracotta-600: #c15f36;
  --terracotta-700: #a94f2c;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(16, 42, 67, 0.12);
  --shadow-card: 0 12px 30px rgba(24, 39, 29, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite-900);
  background: var(--sand-50);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--terracotta-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: var(--terracotta-600);
  box-shadow: 0 14px 30px rgba(193, 95, 54, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--terracotta-700);
}

.btn-secondary {
  color: var(--olive-900);
  background: var(--sand-100);
  border-color: rgba(24, 39, 29, 0.12);
}

.btn-outline {
  color: var(--olive-900);
  background: transparent;
  border-color: rgba(24, 39, 29, 0.2);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--sand-100);
  border-color: var(--terracotta-600);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(251, 247, 238, 0.9);
  border-bottom: 1px solid rgba(24, 39, 29, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--sand-50);
  background: linear-gradient(135deg, var(--olive-800), var(--blue-800));
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--graphite-500);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a {
  color: var(--graphite-700);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--terracotta-600);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--sand-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--olive-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.start-menu {
  position: relative;
}

.start-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 300px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.start-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.start-dropdown a {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-radius: 16px;
}

.start-dropdown a:hover,
.start-dropdown a:focus-visible {
  background: var(--sand-100);
  outline: none;
}

.start-dropdown strong {
  color: var(--olive-900);
}

.start-dropdown span {
  color: var(--graphite-500);
  font-size: 0.9rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
  background:
    radial-gradient(circle at top right, rgba(193, 95, 54, 0.18), transparent 32%),
    radial-gradient(circle at top left, rgba(23, 63, 95, 0.16), transparent 35%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  gap: 76px;
  align-items: center;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 4.8vw, 4.55rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.065em;
}

.hero-content p {
  max-width: 690px;
  margin-top: 22px;
  color: var(--graphite-700);
  font-size: 1.12rem;
  line-height: 1.52;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof div {
  width: auto;
  min-width: 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: 999px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 0;
  color: var(--olive-900);
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-proof span {
  display: none;
  color: var(--graphite-500);
  font-size: 0.86rem;
}

.hero-card {
  position: relative;
  align-self: center;
  max-width: 420px;
  margin-left: auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card-topline {
  width: 72px;
  height: 6px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--terracotta-600), var(--olive-700));
  border-radius: 999px;
}

.hero-card h2 {
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.hero-card p {
  color: var(--graphite-700);
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--graphite-700);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta-600);
  font-weight: 900;
}

/* Shared layouts */

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.text-block {
  display: grid;
  gap: 20px;
  color: var(--graphite-700);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--graphite-700);
  font-size: 1.08rem;
}

.section-heading.light,
.section-heading.light p {
  color: var(--sand-50);
}

.diagnostic {
  background: var(--olive-900);
  color: var(--sand-50);
}

.diagnostic .text-block {
  color: rgba(251, 247, 238, 0.82);
}

/* Layers */

.layers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.layer-card {
  min-height: 330px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.layer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.layer-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--terracotta-600);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.layer-card h3 {
  margin-bottom: 12px;
}

.layer-card p {
  color: var(--graphite-600, #55615b);
  font-size: 0.95rem;
}

/* Trilogy */

.trilogy {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(24, 39, 29, 0.98)),
    var(--blue-900);
}

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

.book-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--sand-50);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 247, 238, 0.12);
  border-radius: var(--radius-lg);
}

.featured-book {
  background: linear-gradient(180deg, rgba(193, 95, 54, 0.34), rgba(255, 255, 255, 0.08));
  transform: translateY(-14px);
}

.book-label {
  width: fit-content;
  margin-bottom: 70px;
  padding: 8px 12px;
  color: var(--sand-50);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.book-card h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.book-card p {
  color: rgba(251, 247, 238, 0.76);
}

.book-card a {
  margin-top: auto;
  color: var(--sand-50);
  font-weight: 900;
}

.book-card a:hover {
  color: var(--terracotta-600);
}

/* Living Lab */

.living-lab {
  background: var(--sand-100);
}

.lab-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.lab-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(49, 80, 57, 0.9), rgba(23, 63, 95, 0.92)),
    var(--olive-800);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-one {
  width: 190px;
  height: 190px;
  top: 40px;
  right: 34px;
  background: rgba(193, 95, 54, 0.52);
}

.orb-two {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -90px;
  background: rgba(251, 247, 238, 0.24);
}

.lab-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--sand-50);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(251, 247, 238, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.lab-panel strong {
  font-size: 1.4rem;
}

.lab-panel span {
  color: rgba(251, 247, 238, 0.72);
}

.lab-grid p {
  margin-top: 20px;
  color: var(--graphite-700);
  font-size: 1.08rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.price-card.highlighted {
  color: var(--sand-50);
  background: linear-gradient(180deg, var(--olive-800), var(--blue-900));
  transform: translateY(-10px);
}

.price {
  margin: 16px 0;
  color: var(--terracotta-600);
  font-size: 1.6rem;
  font-weight: 900;
}

.price-card.highlighted .price {
  color: var(--sand-100);
}

.price-card p:not(.price) {
  color: var(--graphite-700);
}

.price-card.highlighted p:not(.price) {
  color: rgba(251, 247, 238, 0.78);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite-700);
}

.price-card.highlighted li {
  color: rgba(251, 247, 238, 0.8);
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--terracotta-600);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

/* Contact */

.contact {
  background: var(--olive-900);
  color: var(--sand-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact p {
  margin-top: 20px;
  color: rgba(251, 247, 238, 0.78);
  font-size: 1.08rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  color: var(--sand-100);
  font-weight: 800;
}

.contact-links a:hover {
  color: var(--terracotta-600);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--graphite-900);
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-form input:not([type="checkbox"]),
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--graphite-900);
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.12);
  border-radius: 14px;
  font: inherit;
}

.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus {
  border-color: var(--terracotta-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 95, 54, 0.12);
}

.lead-form label:has(> input[type="checkbox"]) {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  color: var(--graphite-700);
  line-height: 1.45;
  cursor: pointer;
}

.lead-form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--terracotta-600);
  cursor: pointer;
}

.lead-form .btn {
  margin-top: 10px;
}

.form-note,
.form-feedback {
  margin-top: 4px !important;
  color: var(--graphite-500) !important;
  font-size: 0.84rem !important;
}

.form-feedback {
  min-height: 20px;
  font-weight: 800;
}

.form-note a {
  color: var(--terracotta-600);
  font-weight: 800;
}

.form-note a:hover {
  color: var(--terracotta-700);
}

/* Footer */

.site-footer {
  padding: 60px 0 24px;
  background: #0f1712;
  color: var(--sand-50);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 46px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 430px;
  color: rgba(251, 247, 238, 0.68);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(251, 247, 238, 0.68);
}

.site-footer a:hover {
  color: var(--terracotta-600);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 247, 238, 0.12);
}

.footer-bottom p {
  font-size: 0.86rem;
}

/* Capture Page */

.capture-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 42px 0 !important;
  background:
    radial-gradient(circle at top right, rgba(193, 95, 54, 0.16), transparent 34%),
    radial-gradient(circle at top left, rgba(23, 63, 95, 0.14), transparent 36%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}

.capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: 76px;
  align-items: center;
}

.capture-content h1 {
  max-width: 700px;
  font-size: clamp(3rem, 4.8vw, 4.65rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.065em;
}

.capture-subtitle {
  max-width: 700px;
  margin-top: 24px;
  color: var(--graphite-700);
  font-size: 1.12rem;
  line-height: 1.52;
}

.capture-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.capture-bullets div {
  width: auto;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: 999px;
}

.capture-bullets strong,
.capture-bullets span {
  display: block;
}

.capture-bullets strong {
  margin-bottom: 0;
  color: var(--olive-900);
  font-size: 0.88rem;
  white-space: nowrap;
}

.capture-bullets span {
  display: none;
  color: var(--graphite-500);
  font-size: 0.9rem;
}

.capture-form-card {
  max-width: 420px;
  margin-left: auto;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: var(--terracotta-600);
  background: rgba(193, 95, 54, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.capture-form-card h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.capture-form-card > p {
  margin-bottom: 16px;
  color: var(--graphite-700);
  font-size: 0.94rem;
  line-height: 1.5;
}

.capture-form {
  gap: 9px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.capture-form input:not([type="checkbox"]) {
  min-height: 44px;
}

.capture-form select {
  min-height: 44px;
}

.capture-form .btn {
  margin-top: 8px;
}

.checklist-section {
  background: var(--sand-50);
}

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

.checklist-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.checklist-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--terracotta-600);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.checklist-grid h3 {
  margin-bottom: 12px;
}

.checklist-grid p {
  color: var(--graphite-700);
}

.capture-manifest {
  background: var(--olive-900);
  color: var(--sand-50);
}

.capture-manifest .text-block {
  color: rgba(251, 247, 238, 0.82);
}

.manifest-cta {
  width: fit-content;
  margin-top: 10px;
}

/* Thank You Page */

.thank-you-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 42px 0;
  background:
    radial-gradient(circle at top right, rgba(193, 95, 54, 0.16), transparent 34%),
    radial-gradient(circle at top left, rgba(23, 63, 95, 0.14), transparent 36%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: 76px;
  align-items: center;
}

.thank-you-content h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.8vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.thank-you-content p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--graphite-700);
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

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

.thank-you-card {
  max-width: 420px;
  margin-left: auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.thank-you-card h2 {
  margin-bottom: 20px;
  font-size: 1.72rem;
}

/* Legal Page */

.legal-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(193, 95, 54, 0.13), transparent 34%),
    radial-gradient(circle at top left, rgba(23, 63, 95, 0.12), transparent 36%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.legal-hero p {
  max-width: 820px;
  margin-top: 26px;
  color: var(--graphite-700);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.legal-content-section {
  padding: 72px 0 100px;
  background: var(--sand-50);
}

.legal-content {
  max-width: 900px;
}

.legal-content article {
  padding: 34px 0;
  border-bottom: 1px solid rgba(24, 39, 29, 0.12);
}

.legal-content article:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin-bottom: 16px;
  color: var(--olive-900);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.045em;
}

.legal-content p {
  margin-top: 12px;
  color: var(--graphite-700);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--graphite-700);
}

.legal-content li {
  line-height: 1.65;
}

.legal-content a {
  color: var(--terracotta-600);
  font-weight: 800;
}

.legal-content a:hover {
  color: var(--terracotta-700);
}

.legal-updated {
  margin-top: 34px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.legal-updated p {
  margin: 0;
  color: var(--graphite-500);
  font-size: 0.94rem;
}

/* Internal Pages */

.internal-hero {
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at top right, rgba(193, 95, 54, 0.14), transparent 34%),
    radial-gradient(circle at top left, rgba(23, 63, 95, 0.12), transparent 36%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 76px;
  align-items: center;
}

.internal-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.internal-hero p {
  max-width: 760px;
  margin-top: 26px;
  color: var(--graphite-700);
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.internal-card {
  max-width: 430px;
  margin-left: auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 39, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.internal-card h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.internal-card p {
  margin-top: 0;
  font-size: 1rem;
}

.cta-band {
  background: var(--olive-900);
  color: var(--sand-50);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
}

.cta-band p {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(251, 247, 238, 0.78);
  font-size: 1.08rem;
}

.solutions-detail {
  background: var(--sand-100);
}

.contact-page-section {
  background: var(--olive-900);
  color: var(--sand-50);
}

.contact-page-section .lead-form textarea {
  width: 100%;
  padding: 14px;
  color: var(--graphite-900);
  background: var(--white);
  border: 1px solid rgba(24, 39, 29, 0.12);
  border-radius: 14px;
  font: inherit;
  resize: vertical;
}

.contact-page-section .lead-form textarea:focus {
  border-color: var(--terracotta-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 95, 54, 0.12);
}

/* Responsive */

@media (max-width: 1280px) {
  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.4rem) !important;
  }

  .hero-grid {
    gap: 44px;
  }
}

@media (max-width: 1080px) {
  .layers-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .capture-hero,
  .thank-you-section {
    min-height: auto;
    padding-top: 64px !important;
    padding-bottom: 72px !important;
  }

  .hero-grid,
  .lab-grid,
  .contact-grid,
  .two-columns,
  .capture-grid,
  .thank-you-grid,
  .internal-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 8vw, 4rem) !important;
  }

  .hero-card,
  .capture-form-card,
  .thank-you-card,
  .internal-card {
    max-width: 100%;
    margin-left: 0;
  }

  .capture-bullets,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .book-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-book,
  .price-card.highlighted {
    transform: none;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: rgba(251, 247, 238, 0.98);
    border-bottom: 1px solid rgba(24, 39, 29, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(24, 39, 29, 0.08);
  }

  .start-menu {
    margin-top: 18px;
  }

  .start-menu .btn {
    width: 100%;
  }

  .start-dropdown {
    position: static;
    width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .start-dropdown.is-open {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 74px 0;
  }

  .hero h1,
  .capture-content h1,
  .thank-you-content h1,
  .internal-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem) !important;
    line-height: 0.98 !important;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .thank-you-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .layers-grid,
  .pricing-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .lead-form,
  .capture-form-card,
  .thank-you-card,
  .internal-card {
    padding: 24px;
  }

  .lab-visual {
    min-height: 320px;
  }

  .manifest-cta,
  .cta-band-inner .btn {
    width: 100%;
  }

  .legal-hero {
    padding: 72px 0 56px;
  }

  .legal-content-section {
    padding: 56px 0 80px;
  }

  .legal-content article {
    padding: 28px 0;
  }
}

/* =========================================================
   AJUSTE — CARD PRINCIPAL DA PÁGINA CONTATO
   ========================================================= */

.contact-main-card {
  overflow-wrap: anywhere;
}

.contact-main-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.contact-main-email {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--olive-900);
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.035em;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-main-email:hover,
.contact-main-email:focus-visible {
  color: var(--terracotta-600);
  outline: none;
}

.contact-main-card p {
  margin-top: 0;
}
/* =========================================================
   AJUSTE — CARD PRINCIPAL DA PÁGINA CONTATO
   ========================================================= */

.contact-main-card {
  overflow-wrap: anywhere;
}

.contact-main-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.contact-email-label {
  margin: 0 0 6px !important;
  color: var(--graphite-500) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-main-email {
  display: block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--olive-900);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-main-email:hover,
.contact-main-email:focus-visible {
  color: var(--terracotta-600);
  outline: none;
}

.contact-main-card p:last-child {
  margin-top: 0;
}

/* =========================================================
   REFRESH GATE 1 — AJUSTES FINAIS
   ========================================================= */

.contact-main-card {
  overflow-wrap: anywhere;
}

.contact-main-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.contact-email-label {
  margin: 0 0 6px !important;
  color: var(--graphite-500) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-main-email {
  display: block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--olive-900);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-main-email:hover,
.contact-main-email:focus-visible {
  color: var(--terracotta-600);
  outline: none;
}

.contact-main-card p:last-child {
  margin-top: 0;
}

/* Ajuste para 7 cards na camada de Engenharia Permacultural */
@media (min-width: 1081px) {
  .layers-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

/* R3.6C - acessibilidade e feedback compartilhados */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--sand-50);
  background: var(--olive-900);
  border: 2px solid var(--terracotta-600);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-weight: 900;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(193, 95, 54, 0.5);
  outline-offset: 3px;
}

main[tabindex="-1"]:focus {
  outline: none;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.main-nav > a:focus-visible,
.start-dropdown a:focus-visible,
.contact-links a:focus-visible,
.site-footer a:focus-visible,
.book-card a:focus-visible,
.contact-main-email:focus-visible {
  outline: 3px solid rgba(193, 95, 54, 0.58);
  outline-offset: 4px;
}

.lead-form input:not([type="checkbox"]):focus-visible,
.lead-form select:focus-visible,
.contact-page-section .lead-form textarea:focus-visible {
  outline: 3px solid rgba(193, 95, 54, 0.58);
  outline-offset: 3px;
}

.lead-form input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(193, 95, 54, 0.58);
  outline-offset: 3px;
}

.form-feedback:not(:empty) {
  min-height: auto;
  padding: 12px 14px;
  border: 1px solid rgba(24, 39, 29, 0.12);
  border-radius: 14px;
  line-height: 1.45;
}

.form-feedback[data-state="success"] {
  color: #1f5132 !important;
  background: #e8f4eb;
  border-color: rgba(31, 81, 50, 0.25);
}

.form-feedback[data-state="warning"] {
  color: #755012 !important;
  background: #fff5db;
  border-color: rgba(117, 80, 18, 0.24);
}

.form-feedback[data-state="error"] {
  color: #8b2f1f !important;
  background: #fff0ea;
  border-color: rgba(139, 47, 31, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .btn:focus-visible,
  .layer-card:hover {
    transform: none;
  }
}


/* R3.7 - Arquitetura conceitual canônica e páginas-pilar */
.concept-summary { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin:2rem 0; }
.concept-summary p, .concept-panel { background:#fff; border:1px solid rgba(24,39,29,.12); border-radius:18px; padding:1.35rem; box-shadow:0 12px 35px rgba(24,39,29,.07); }
.concept-columns { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; }
.concept-panel h2 { margin-top:.35rem; font-size:1.35rem; }
.concept-panel p { color:var(--muted, #5b665e); }
.section-actions { margin-top:2rem; display:flex; justify-content:center; }
.book-pillar-hero small { display:block; margin-top:.75rem; font-size:.68em; line-height:1.5; font-weight:600; }
.waitlist-section { background:linear-gradient(180deg,#eef3ee 0%,#f8faf8 100%); }
.waitlist-section .contact-grid { align-items:start; }
.status-note { display:inline-flex; padding:.35rem .7rem; border-radius:999px; background:#e4eee6; color:#294b33; font-weight:700; font-size:.82rem; }
@media (max-width: 900px) { .concept-summary, .concept-columns { grid-template-columns:1fr; } }
