:root {
  --bg: #0b0d0f;
  --bg-soft: #11161a;
  --surface: #151a1f;
  --surface-strong: #1b2228;
  --panel: rgba(21, 26, 31, 0.86);
  --panel-deep: rgba(7, 9, 11, 0.74);
  --text: #f4efe6;
  --muted: #a9b0b6;
  --muted-strong: #c7ced4;
  --line: rgba(244, 239, 230, 0.13);
  --line-strong: rgba(244, 239, 230, 0.22);
  --copper: #d8894b;
  --copper-strong: #f0a35e;
  --cyan: #4cc9d8;
  --dark: #07090b;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  --shadow-panel: 0 18px 44px rgba(0, 0, 0, 0.22);
  --grid-line: rgba(244, 239, 230, 0.036);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(216, 137, 75, 0.055), transparent 18%, transparent 82%, rgba(76, 201, 216, 0.035)),
    linear-gradient(180deg, #080a0c 0%, var(--bg) 42%, #101111 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(244, 239, 230, 0.028) calc(50% - 1px), rgba(244, 239, 230, 0.028) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent 0, rgba(216, 137, 75, 0.045) 26%, transparent 50%);
  mask-image: linear-gradient(to bottom, black 0, transparent 64%);
}

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

a {
  color: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.sr-only,
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 13, 15, 0.86);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.simple {
  position: static;
  transform: none;
  margin: 16px auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 840;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  white-space: nowrap;
}

.brand strong {
  color: var(--copper-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 720;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(244, 239, 230, 0.08);
  outline: none;
}

.nav-cta {
  color: var(--dark) !important;
  background: var(--copper-strong);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--dark) !important;
  background: #ffc17f !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(244, 239, 230, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 48px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76vh;
  margin: 0 auto;
  padding: 106px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 86px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--copper-strong), rgba(244, 239, 230, 0.16) 32%, transparent 78%);
  opacity: 0.6;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: 3.82rem;
  line-height: 1;
  font-weight: 860;
}

.hero-lead {
  max-width: 700px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.12rem;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  max-width: 700px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
  font-weight: 720;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-strong);
}

.hero-entry-note {
  width: fit-content;
  max-width: 700px;
  margin: 18px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(216, 137, 75, 0.34);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(216, 137, 75, 0.1);
  font-size: 0.96rem;
  font-weight: 720;
}

.hero-entry-note strong {
  color: var(--copper-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--dark);
  background: var(--copper-strong);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc17f;
}

.button-secondary,
.button-small {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(244, 239, 230, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-small:hover,
.button-small:focus-visible {
  background: rgba(244, 239, 230, 0.11);
}

.button-small {
  min-height: 44px;
  width: fit-content;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.text-link {
  width: fit-content;
  color: var(--copper-strong);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffc17f;
  outline: none;
}

.hero-start-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 18px;
}

.hero-start-card {
  display: grid;
  gap: 4px;
  min-height: 124px;
  padding: 12px;
  border: 1px solid rgba(216, 137, 75, 0.38);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  background: rgba(21, 26, 31, 0.72);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-start-card:hover,
.hero-start-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 137, 75, 0.72);
  background: rgba(27, 33, 38, 0.88);
  outline: none;
}

.hero-start-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 790;
}

.hero-start-card strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-start-card em {
  color: var(--copper-strong);
  font-style: normal;
  font-size: 1.28rem;
  line-height: 1.05;
  font-weight: 860;
}

.hero-start-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(244, 239, 230, 0.045);
  font-size: 0.9rem;
  font-weight: 700;
}

.system-board {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 137, 75, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(76, 201, 216, 0.07), transparent 42%),
    linear-gradient(180deg, var(--surface-strong), #0d1114);
  box-shadow: var(--shadow);
}

.system-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.system-board::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(244, 239, 230, 0.055);
  background:
    linear-gradient(90deg, rgba(216, 137, 75, 0.32) 0 36px, transparent 36px) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(216, 137, 75, 0.32) 0 36px, transparent 36px) top left / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(76, 201, 216, 0.22) 0 36px, transparent 36px) bottom right / 100% 1px no-repeat,
    linear-gradient(0deg, rgba(76, 201, 216, 0.22) 0 36px, transparent 36px) bottom right / 1px 100% no-repeat;
}

.board-top,
.board-grid,
.audit-lines,
.board-note {
  position: relative;
  z-index: 1;
}

.board-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-weight: 780;
}

.board-top img {
  width: 42px;
  height: 42px;
}

.audit-lines {
  display: grid;
  gap: 10px;
  margin: 34px 0;
}

.audit-lines span {
  display: block;
  height: 10px;
  border-radius: var(--radius);
  background: rgba(244, 239, 230, 0.1);
}

.audit-lines span:nth-child(1) {
  width: 84%;
}

.audit-lines span:nth-child(2) {
  width: 62%;
}

.audit-lines span:nth-child(3) {
  width: 76%;
}

.audit-lines span:nth-child(4) {
  width: 48%;
  background: rgba(76, 201, 216, 0.22);
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.board-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 9, 11, 0.72);
}

.board-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--copper-strong);
  font-size: 0.86rem;
  font-weight: 840;
}

.board-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.06rem;
}

.board-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.board-note {
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid rgba(76, 201, 216, 0.26);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(76, 201, 216, 0.07);
  font-size: 0.92rem;
}

.hero-image-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 570px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #090c0f;
  box-shadow: var(--shadow);
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.72), rgba(7, 9, 11, 0.14) 48%, rgba(7, 9, 11, 0.58)),
    linear-gradient(180deg, transparent 48%, rgba(7, 9, 11, 0.82));
}

.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(244, 239, 230, 0.1);
  background:
    linear-gradient(90deg, rgba(216, 137, 75, 0.4) 0 48px, transparent 48px) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(216, 137, 75, 0.4) 0 48px, transparent 48px) top left / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(76, 201, 216, 0.3) 0 48px, transparent 48px) bottom right / 100% 1px no-repeat,
    linear-gradient(0deg, rgba(76, 201, 216, 0.3) 0 48px, transparent 48px) bottom right / 1px 100% no-repeat;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-image-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 9, 11, 0.72);
  backdrop-filter: blur(14px);
}

.hero-image-panel span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(216, 137, 75, 0.42);
  border-radius: var(--radius);
  color: var(--copper-strong);
  background: rgba(216, 137, 75, 0.1);
  font-size: 0.78rem;
  font-weight: 840;
}

.hero-image-panel strong {
  display: block;
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-image-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  scroll-margin-top: 104px;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 137, 75, 0.42), rgba(244, 239, 230, 0.12) 22%, transparent 68%);
}

.starter-section::before,
.hero + .starter-section::before {
  display: none;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 34px;
}

.compact-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: 2.55rem;
}

.section-heading h2,
.split-copy h2,
.legal-copy h1 {
  margin: 0 0 14px;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 850;
}

.section-heading p,
.split-copy p,
.legal-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

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

.starter-section {
  padding-top: 42px;
}

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

.starter-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(216, 137, 75, 0.4);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(216, 137, 75, 0.075), transparent 45%),
    var(--panel);
  box-shadow: var(--shadow-panel);
}

.starter-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1.2;
}

.starter-card p {
  margin: 0;
  color: var(--muted);
}

.starter-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.starter-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.starter-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-strong);
}

.surface-card,
.why-grid article,
.package-card,
.faq-list details,
.contact-form,
.contact-note,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.028), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow-panel);
}

.surface-card,
.why-grid article,
.package-card,
.starter-card,
.faq-list details,
.contact-note,
.example-summary,
.example-observation-grid article,
.example-delivery article {
  position: relative;
}

.surface-card::before,
.why-grid article::before,
.package-card::before,
.starter-card::before,
.faq-list details::before,
.contact-note::before,
.example-summary::before,
.example-observation-grid article::before,
.example-delivery article::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 14px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 230, 0.22), transparent);
  opacity: 0.65;
}

.surface-card,
.why-grid article {
  min-height: 260px;
  padding: 24px;
}

.simple-grid .surface-card {
  min-height: 210px;
}

.card-image,
.section-image,
.contact-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 239, 230, 0.13);
  border-radius: var(--radius);
  background: rgba(7, 9, 11, 0.74);
}

.card-image {
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

.card-image img,
.section-image img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.card-number {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-strong);
  font-weight: 840;
}

.surface-card h3,
.why-grid h3,
.package-card h3,
.process-list h3,
.contact-note h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.2;
}

.surface-card p,
.why-grid p,
.package-card p,
.process-list p,
.contact-note p {
  margin: 0;
  color: var(--muted);
}

.deliverables-section,
.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.deliverable-list,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.deliverable-list div,
.fit-grid span {
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(244, 239, 230, 0.045);
  font-weight: 730;
}

.deliverable-list div {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 126px;
}

.deliverable-list strong {
  color: var(--text);
  font-size: 1.02rem;
}

.deliverable-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 520;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package-card {
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 430px;
  padding: 24px;
}

.main-offers .package-card {
  min-height: auto;
}

.package-card.featured {
  border-color: rgba(216, 137, 75, 0.56);
  background:
    linear-gradient(180deg, rgba(216, 137, 75, 0.12), rgba(21, 26, 31, 0.92));
}

.entry-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(216, 137, 75, 0.38);
  border-radius: var(--radius);
  color: var(--copper-strong);
  background: rgba(216, 137, 75, 0.08);
  font-size: 0.78rem;
  font-weight: 840;
}

.price {
  margin: 8px 0 12px !important;
  color: var(--copper-strong) !important;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 860;
}

.package-card ul,
.contact-note ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li,
.contact-note li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
}

.package-card li::before,
.contact-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-strong);
}

.package-goal strong {
  color: var(--muted-strong);
}

.example-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 137, 75, 0.05), transparent 24%, transparent 76%, rgba(76, 201, 216, 0.04)),
    rgba(244, 239, 230, 0.03);
}

.example-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.example-flow article {
  min-height: 210px;
  padding: 24px;
  border-left: 1px solid var(--line);
  background: rgba(11, 13, 15, 0.76);
}

.example-flow article:first-child {
  border-left: 0;
}

.example-flow span {
  display: block;
  margin-bottom: 42px;
  color: var(--copper-strong);
  font-weight: 840;
}

.example-flow p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.example-report {
  display: grid;
  gap: 14px;
}

.compact-example .example-observation-grid article {
  min-height: 0;
}

.example-summary,
.example-observation-grid article,
.example-delivery article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.028), transparent 44%),
    var(--panel-deep);
}

.example-summary {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
}

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

.example-observation-grid article,
.example-delivery article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

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

.example-report span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(216, 137, 75, 0.38);
  border-radius: var(--radius);
  color: var(--copper-strong);
  background: rgba(216, 137, 75, 0.08);
  font-size: 0.78rem;
  font-weight: 840;
}

.example-report h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.25;
}

.example-report p {
  margin: 0;
  color: var(--muted-strong);
}

.example-report p strong {
  color: var(--text);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-image {
  aspect-ratio: 16 / 6.2;
  margin-bottom: 18px;
}

.process-image img {
  object-position: center 46%;
}

.process-list li {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.026), transparent 44%),
    rgba(21, 26, 31, 0.72);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(216, 137, 75, 0.48);
  border-radius: var(--radius);
  color: var(--copper-strong);
  font-weight: 840;
}

.process-list span::before {
  content: attr(data-step);
}

.followup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

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

.followup-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.032), transparent 44%),
    rgba(21, 26, 31, 0.72);
  box-shadow: var(--shadow-panel);
}

.followup-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.2;
}

.followup-card p {
  margin: 0;
  color: var(--muted);
}

.followup-price {
  color: var(--copper-strong) !important;
  font-size: 1.22rem;
  font-weight: 850;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 137, 75, 0.045), transparent 28%, transparent 72%, rgba(76, 201, 216, 0.035)),
    rgba(244, 239, 230, 0.026);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--text);
  font-weight: 780;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.compact-contact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 740;
}

.wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(7, 9, 11, 0.76);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 11px 12px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 137, 75, 0.82);
  outline: 3px solid rgba(216, 137, 75, 0.16);
}

.form-warning {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 137, 75, 0.38);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(216, 137, 75, 0.09);
}

.form-status {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.consent-line {
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 620 !important;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.contact-note {
  padding: 24px;
}

.contact-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.contact-image img {
  object-position: center;
}

.contact-note h3 {
  margin-bottom: 12px;
}

.contact-note ul {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

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

.site-footer a {
  color: var(--muted-strong);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--copper-strong);
  outline: none;
}

.legal-page {
  min-height: calc(100vh - 180px);
  padding: 72px 16px;
}

.legal-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 36px;
}

.legal-copy h2 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 1.32rem;
}

.legal-copy a {
  color: var(--copper-strong);
}

.legal-note {
  margin-top: 20px !important;
  padding: 14px 16px;
  border: 1px solid rgba(216, 137, 75, 0.38);
  border-radius: var(--radius);
  background: rgba(216, 137, 75, 0.09);
}

@media (max-width: 1040px) {
  .hero,
  .deliverables-section,
  .fit-section,
  .followup-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .package-grid,
  .starter-grid,
  .result-grid,
  .why-grid,
  .process-list,
  .example-observation-grid,
  .example-delivery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-flow article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .example-flow article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(11, 13, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.visible,
  .site-header.simple .site-nav {
    display: flex;
  }

  .site-header.simple .site-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    width: 100%;
  }

  .hero,
  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 28px;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 12.5ch;
    font-size: 2.24rem;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .hero-benefits,
  .hero-entry-note {
    max-width: 100%;
  }

  .hero-entry-note {
    width: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .system-board {
    min-height: auto;
    padding: 18px;
  }

  .hero-image-panel,
  .hero-image-panel img {
    min-height: 320px;
  }

  .board-grid,
  .starter-grid,
  .package-grid,
  .result-grid,
  .why-grid,
  .process-list,
  .deliverable-list,
  .fit-grid,
  .followup-card-grid,
  .contact-form,
  .example-flow,
  .example-summary,
  .example-observation-grid,
  .example-delivery {
    grid-template-columns: 1fr;
  }

  .example-flow article,
  .example-flow article:nth-child(3),
  .example-flow article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .example-flow article:first-child {
    border-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .legal-copy h1 {
    font-size: 2.15rem;
  }

  .surface-card,
  .why-grid article,
  .package-card,
  .process-list li {
    min-height: auto;
  }

  .section-image {
    aspect-ratio: 16 / 9;
  }

  .card-number,
  .process-list span,
  .example-flow span {
    margin-bottom: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .wide {
    grid-column: auto;
  }

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

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

  .legal-copy {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 11.5ch;
    font-size: 2.05rem;
  }

  .hero-lead,
  .hero-benefits,
  .hero-entry-note {
    max-width: 34ch;
  }

  .section-heading h2,
  .split-copy h2,
  .legal-copy h1 {
    font-size: 1.9rem;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(11, 13, 15, 0.98);
  }
}

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

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