:root {
  --ink: #0d0f10;
  --ink-soft: #25282a;
  --muted: #494f53;
  --muted-light: #454b4e;
  --paper: #ffffff;
  --wash: #f5f6f4;
  --wash-warm: #f4f1ea;
  --line: #dedfdb;
  --line-dark: rgba(13, 15, 16, 0.14);
  --control-line: #8d9295;
  --accent: #7b622f;
  --cta: #002366;
  --success: #205a3b;
  --warning: #7b402b;
  --text-on-dark: #f7f7f5;
  --text-on-dark-muted: #c7c9c8;
  --text-on-dark-soft: #b8bcbb;
  --accent-on-dark: #d9be88;
  --sidebar-width: 252px;
  --content-width: 1180px;
  --shadow: 0 24px 64px rgba(16, 18, 19, 0.1);
  --shadow-soft: 0 12px 32px rgba(16, 18, 19, 0.07);
  --radius: 2px;
  --font: "Nunito", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: flex;
  width: var(--sidebar-width);
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.96);
  padding: 44px 38px 34px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-block;
  width: 166px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: grid;
  gap: 8px;
  margin: auto 0;
}

.site-nav a,
.mobile-nav a {
  position: relative;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a::before {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 8px;
  height: 1px;
  background: var(--ink);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  transform: translateX(6px);
}

.site-nav a:hover::before,
.site-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.sidebar-contact {
  display: grid;
  gap: 7px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  line-height: 1.45;
}

.sidebar-contact span {
  color: var(--muted-light);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sidebar-contact a {
  font-size: 14px;
  font-weight: 500;
}

.sidebar-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-header,
.mobile-menu {
  display: none;
}

.page-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  overflow: clip;
}

.container {
  width: min(var(--content-width), calc(100% - 96px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 96px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 116px 0;
}

.section-sm {
  padding: 76px 0;
}

.section-wash {
  background: var(--wash);
}

.section-warm {
  background: var(--wash-warm);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.display-title,
.page-title,
.section-title,
.card-title {
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.display-title {
  max-width: 820px;
  font-size: clamp(3.45rem, 6.8vw, 7.1rem);
  line-height: 0.98;
}

.page-title {
  max-width: 980px;
  font-size: clamp(3.25rem, 6vw, 6.5rem);
  line-height: 1;
}

.section-title {
  max-width: 800px;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
  line-height: 1.04;
}

.section-title em,
.display-title em,
.page-title em {
  color: var(--muted-light);
  font-style: normal;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  padding: 13px 22px;
  background: var(--cta);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 16px;
}

.button:hover {
  background: transparent;
  color: var(--cta);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  color: var(--cta);
}

.button-secondary:hover {
  background: var(--cta);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  isolation: isolate;
  padding: 90px 0;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: -2;
  top: -22%;
  right: -18%;
  width: 78%;
  height: 78%;
  border-radius: 48% 52% 62% 38% / 35% 48% 52% 65%;
  background: #f1f2f1;
  content: "";
  transform: rotate(-9deg);
}

.hero::after,
.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -9%;
  right: -8%;
  width: 62%;
  height: 54%;
  border-radius: 62% 38% 43% 57% / 47% 57% 43% 53%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
  transform: rotate(8deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 72px;
  align-items: center;
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.profit-panel {
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(16px);
}

.profit-panel::before {
  position: absolute;
  z-index: -1;
  right: -32px;
  bottom: -32px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(184, 151, 85, 0.42);
  border-radius: 50%;
  content: "";
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.panel-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.status-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(52, 116, 84, 0.1);
  content: "";
}

.profit-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 20px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.metric-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.metric-value {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.metric-delta {
  display: inline-flex;
  margin-top: 10px;
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

.sparkline {
  width: 100%;
  color: var(--success);
}

.sparkline .area {
  fill: rgba(52, 116, 84, 0.09);
}

.sparkline .line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-metric {
  min-height: 116px;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--paper);
}

.mini-metric strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.mini-metric small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.mini-metric.warning strong {
  color: var(--warning);
}

.action-list {
  margin-top: 14px;
  padding: 18px;
  background: var(--ink);
  color: var(--text-on-dark);
}

.action-list h3 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.action-list li {
  display: flex;
  gap: 10px;
  color: var(--text-on-dark-muted);
  font-size: 12px;
}

.action-list li::before {
  color: var(--accent-on-dark);
  content: "→";
}

.panel-caption {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.problem-card {
  position: relative;
  min-height: 320px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 34px 28px;
  transition: background 220ms ease, color 220ms ease;
}

.problem-card:hover {
  background: var(--ink);
  color: var(--text-on-dark);
}

.problem-number {
  display: block;
  margin-bottom: 60px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.22;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  transition: color 220ms ease;
}

.problem-card:hover .problem-number {
  color: var(--text-on-dark-muted);
}

.problem-card:hover p {
  color: var(--text-on-dark-muted);
}

.manifesto {
  overflow: hidden;
  background: var(--ink);
  color: var(--text-on-dark);
}

.manifesto::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 90px;
  align-items: end;
}

.manifesto .section-title {
  max-width: 900px;
}

.manifesto .eyebrow {
  color: var(--text-on-dark-muted);
}

.manifesto .eyebrow::before {
  background: var(--accent-on-dark);
}

.manifesto .section-title em {
  color: var(--text-on-dark-soft);
}

.manifesto-copy {
  color: var(--text-on-dark-muted);
}

.manifesto-copy strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text-on-dark);
  font-size: 20px;
  font-weight: 500;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 34px;
  background: var(--paper);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 56px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  font-size: 20px;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  align-items: center;
}

.editorial-visual {
  min-height: 690px;
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 52px;
}

.editorial-card {
  position: relative;
  z-index: 2;
  margin-left: -74px;
  border: 1px solid var(--line);
  padding: 54px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.editorial-card h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.8vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.editorial-card p {
  color: var(--muted);
}

.decision-board {
  display: grid;
  gap: 16px;
}

.decision-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-on-dark-muted);
  font-size: 12px;
}

.decision-head strong {
  color: var(--text-on-dark);
  font-size: 15px;
  font-weight: 500;
}

.decision-chart {
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px 20px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.decision-chart svg {
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-profit {
  fill: none;
  stroke: #d9be88;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-sales {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-dasharray: 5 7;
  stroke-width: 2;
}

.decision-rows {
  display: grid;
  gap: 10px;
}

.decision-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-on-dark-muted);
  font-size: 12px;
}

.decision-row strong {
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 500;
}

.decision-row span:last-child {
  color: var(--accent-on-dark);
  font-weight: 600;
}

.outcome-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 15px;
}

.outcome-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--success);
  content: "✓";
  font-size: 12px;
  font-weight: 700;
}

.value-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.value-step {
  position: relative;
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid var(--line-dark);
}

.value-step:first-child {
  border-left: 1px solid var(--line-dark);
}

.value-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--paper);
  content: "→";
  font-size: 12px;
  transform: translateY(-50%);
}

.value-step span {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.value-step h3 {
  margin: 48px 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.value-step p {
  color: var(--muted);
  font-size: 13px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.62fr);
  gap: 0;
  border: 1px solid var(--line-dark);
}

.proof-story,
.proof-stat {
  min-height: 270px;
  padding: 38px;
}

.proof-story {
  border-right: 1px solid var(--line-dark);
}

.proof-story h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.proof-story p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
}

.proof-stat:last-child {
  border-right: 0;
}

.proof-stat strong {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-stat span {
  color: var(--muted);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 330px;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 86px;
  color: var(--muted-light);
  content: "0" counter(process);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 400;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 0;
  padding: 26px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 19px;
  font-weight: 400;
}

.faq-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-on-dark);
}

.closing-cta::after {
  position: absolute;
  right: -220px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.closing-cta .section-title {
  max-width: 860px;
}

.closing-cta .eyebrow {
  color: var(--text-on-dark-muted);
}

.closing-cta .eyebrow::before {
  background: var(--accent-on-dark);
}

.closing-cta .section-title em {
  color: var(--text-on-dark-soft);
}

.closing-cta p {
  max-width: 460px;
  color: var(--text-on-dark-muted);
}

.closing-cta .button {
  border-color: var(--paper);
  background: var(--cta);
  color: var(--paper);
}

.closing-cta .button:hover {
  background: transparent;
  color: var(--paper);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  padding: 52px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 56px;
}

.footer-brand {
  width: 156px;
  margin-bottom: 20px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 13px;
}

.footer-heading {
  display: block;
  margin-bottom: 14px;
  color: var(--ink) !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 500;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  align-items: end;
  isolation: isolate;
  padding: 118px 0 92px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 74px;
  align-items: end;
}

.page-hero-copy p {
  max-width: 610px;
}

.page-hero-aside {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

.page-hero-aside p {
  color: var(--muted);
  font-size: 14px;
}

.page-hero-aside .text-link {
  margin-top: 22px;
}

.plain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.plain-card {
  min-height: 280px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 32px;
}

.plain-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plain-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.plain-card p {
  color: var(--muted);
  font-size: 14px;
}

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

.question-card {
  display: grid;
  min-height: 180px;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
}

.question-card::before {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--accent);
  content: "?";
  font-size: 16px;
  font-weight: 600;
}

.question-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.question-card p {
  color: var(--muted);
  font-size: 13px;
}

.product-preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  min-height: 570px;
  padding: 34px;
  background: #efeee9;
}

.product-image {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background: #dad8cf;
}

.product-image::before {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(13, 15, 16, 0.12);
  border-radius: 50%;
  content: "";
}

.mock-product {
  position: relative;
  z-index: 2;
  display: grid;
  width: 116px;
  height: 242px;
  place-items: center;
  border-radius: 58px 58px 18px 18px;
  background: #202425;
  box-shadow: 18px 24px 36px rgba(13, 15, 16, 0.22);
  color: #f0e7d4;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.mock-product::before {
  position: absolute;
  top: -28px;
  width: 54px;
  height: 42px;
  border-radius: 8px 8px 2px 2px;
  background: #b59762;
  content: "";
}

.product-content {
  padding: 16px 0;
}

.product-content .panel-kicker {
  margin-bottom: 18px;
}

.product-content h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.product-content > p {
  color: var(--muted);
  font-size: 13px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.trust-row span {
  border: 1px solid var(--line-dark);
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 500;
}

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

.bundle-option {
  position: relative;
  border: 1px solid var(--line-dark);
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.bundle-option.featured {
  border-color: var(--ink);
  background: var(--paper);
}

.bundle-option.featured::before {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 2px 6px;
  background: var(--ink);
  color: var(--paper);
  content: "Najvýhodnejšie";
  font-size: 8px;
  font-weight: 600;
  transform: translateX(-50%);
  white-space: nowrap;
}

.bundle-option strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.bundle-option span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.mock-add-button {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 0;
  padding: 14px;
  background: var(--cta);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.mock-caption {
  grid-column: 1 / -1;
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line-dark);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 18px;
  text-align: left;
}

.comparison-table th {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table td {
  font-size: 15px;
}

.comparison-table td:first-child {
  font-weight: 500;
}

.comparison-table td:not(:first-child) {
  color: var(--muted);
}

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

.fit-card {
  min-height: 360px;
  padding: 40px;
  border: 1px solid var(--line);
}

.fit-card.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--text-on-dark);
}

.fit-card h3 {
  margin-bottom: 34px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.fit-card li::before {
  color: var(--success);
  content: "✓";
  font-weight: 700;
}

.fit-card.dark li {
  color: var(--text-on-dark-muted);
}

.fit-card.dark li::before {
  color: var(--accent-on-dark);
  content: "—";
}

.story-quote {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 50px;
  border-left: 1px solid var(--accent);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.story-quote cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: 88px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 60px;
}

.contact-details h2 {
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.contact-details > p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.contact-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  font-size: 15px;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  border: 1px solid var(--line);
  padding: 48px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--control-line);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-light);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.form-note {
  max-width: 320px;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.45;
}

.form-success {
  display: none;
  margin-top: 24px;
  border: 1px solid rgba(52, 116, 84, 0.35);
  padding: 16px;
  background: rgba(52, 116, 84, 0.08);
  color: var(--success);
  font-size: 13px;
}

.form-success.is-visible {
  display: block;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1260px) {
  :root {
    --sidebar-width: 220px;
  }

  .site-sidebar {
    padding-inline: 30px;
  }

  .brand {
    width: 150px;
  }

  .hero-grid {
    gap: 44px;
  }

  .problem-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
  }
}

@media (max-width: 1180px) {
  :root {
    --sidebar-width: 0px;
  }

  .site-sidebar {
    display: none;
  }

  .mobile-header {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    width: 144px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    width: 24px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle-lines::before {
    top: -7px;
  }

  .menu-toggle-lines::after {
    top: 7px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 112px 34px 36px;
    background: var(--paper);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav {
    display: grid;
    align-content: center;
    gap: 16px;
  }

  .mobile-nav a {
    font-size: clamp(2rem, 7vw, 3.4rem);
    font-weight: 300;
    letter-spacing: -0.035em;
  }

  .mobile-menu-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    color: var(--muted);
    font-size: 13px;
  }

  .page-shell {
    margin-left: 0;
    padding-top: 72px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 90px;
  }

  .hero-grid,
  .page-hero-grid,
  .manifesto-grid,
  .cta-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 72px;
  }

  .display-title,
  .page-title {
    max-width: 900px;
  }

  .profit-panel {
    width: min(680px, 100%);
    justify-self: center;
  }

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

  .service-card {
    min-height: 280px;
  }

  .service-icon {
    margin-bottom: 38px;
  }

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

  .editorial-card {
    width: calc(100% - 80px);
    margin: -76px auto 0;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-story {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .page-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .page-hero-aside {
    max-width: 560px;
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 1180px) and (max-height: 720px) {
  .mobile-menu {
    padding-top: 90px;
  }

  .mobile-nav {
    align-content: start;
    gap: 8px;
  }

  .mobile-nav a {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(100% - 40px, var(--content-width));
  }

  .section {
    padding: 82px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .mobile-header {
    padding-inline: 20px;
  }

  .display-title,
  .page-title {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .section-title {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

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

  .hero::before,
  .page-hero::before {
    top: -12%;
    right: -46%;
    width: 120%;
  }

  .hero-grid {
    gap: 52px;
  }

  .profit-panel {
    padding: 18px;
  }

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

  .sparkline {
    max-width: 220px;
  }

  .mini-metrics,
  .problem-grid,
  .plain-grid,
  .question-grid,
  .process-grid,
  .fit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 270px;
  }

  .problem-number {
    margin-bottom: 42px;
  }

  .manifesto-grid {
    gap: 46px;
  }

  .service-card {
    min-height: 320px;
    padding: 28px;
  }

  .editorial-visual {
    min-height: 590px;
    padding: 24px;
  }

  .editorial-card {
    width: calc(100% - 24px);
    margin-top: -42px;
    padding: 32px 26px;
  }

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

  .value-step,
  .value-step:first-child {
    min-height: auto;
    border-right: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .value-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -15px;
    content: "↓";
    transform: translateX(50%);
  }

  .value-step h3 {
    margin-top: 26px;
  }

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

  .proof-story,
  .proof-stat {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-stat:last-child {
    border-bottom: 0;
  }

  .process-step {
    min-height: 260px;
  }

  .process-step::before {
    margin-bottom: 54px;
  }

  .cta-grid {
    gap: 42px;
  }

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

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

  .product-preview {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .story-quote {
    padding-left: 26px;
  }

  .contact-layout {
    gap: 54px;
  }

  .contact-form {
    padding: 28px 22px;
  }

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

  .field-full {
    grid-column: auto;
  }
}

@media (max-width: 440px) {
  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  .bundle-option.featured::before {
    top: 0;
    right: 0;
    left: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
