:root {
  --ink: #0d1111;
  --ink-soft: #161c1b;
  --ink-muted: #27302e;
  --paper: #f2eee7;
  --paper-soft: #e9e3d9;
  --paper-deep: #d9d1c4;
  --text: #f7f3ec;
  --muted: #a8b1ad;
  --dark-copy: #1d2422;
  --gold: #e99c48;
  --gold-soft: #f5b465;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(13, 17, 17, 0.16);
  --container: 1180px;
  --section-space: clamp(5.25rem, 10vw, 9.25rem);
  --sans: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line-dark);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 76px;
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 0.75rem;
}

.language-switcher {
  border: 1px solid var(--line-dark);
  padding: 0.2rem;
}

.language-switcher button {
  border: 0;
  padding: 0.5rem 0.55rem;
  background: transparent;
  color: #78837f;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--text);
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(233, 156, 72, 0.65);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.77rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  border: 1px solid transparent;
  padding: 0.92rem 1.22rem;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button span {
  color: currentColor;
  font-size: 1rem;
  font-weight: 400;
}

.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 13rem;
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-text {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-text:hover,
.button-text:focus-visible {
  border-color: rgba(233, 156, 72, 0.72);
}

.button-small {
  min-height: 2.6rem;
  padding: 0.72rem 0.9rem;
  font-size: 0.64rem;
}

.button-quiet {
  border-color: var(--line-dark);
  color: var(--text);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.section-light {
  background: var(--paper);
  color: var(--dark-copy);
}

.section-warm {
  background: var(--paper-soft);
  color: var(--dark-copy);
}

.section-gold {
  background: var(--gold);
  color: var(--ink);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.3rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-light .eyebrow,
.section-warm .eyebrow {
  color: #a85a16;
}

.section-gold .eyebrow {
  color: rgba(13, 17, 17, 0.64);
}

.eyebrow span {
  opacity: 0.65;
}

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

h1,
h2 {
  margin-bottom: 0;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 7.5vw, 6.9rem);
  font-weight: 690;
}

h1 em {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  font-weight: 680;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero {
  min-height: 100svh;
  padding: clamp(8rem, 15vw, 11.5rem) 0 1.55rem;
}

.hero-grid,
.hero-glow {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 86%);
}

.hero-glow {
  top: -16rem;
  right: -18rem;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 156, 72, 0.15), transparent 65%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.55fr);
}

.hero-intro {
  max-width: 730px;
  margin: 2rem 0 0;
  color: #bbc4c0;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.accent-dash {
  color: var(--gold-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.15rem;
}

.hero-audience {
  max-width: 680px;
  margin: 1rem 0 0;
  color: #aab5b1;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.55rem 0 0;
  color: #88938f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pulse {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(233, 156, 72, 0.1);
}

.signal-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(18, 24, 23, 0.66);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.signal-panel::before {
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(233, 156, 72, 0.12);
  content: "";
  pointer-events: none;
}

.signal-panel-topline,
.signal-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  color: #97a19d;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.signal-panel-topline {
  border-bottom: 1px solid var(--line-dark);
}

.signal-status {
  color: var(--gold-soft);
}

.signal-orbit {
  position: relative;
  min-height: 22rem;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 9rem;
  height: 9rem;
  border-color: rgba(233, 156, 72, 0.62);
}

.orbit-two {
  width: 14.5rem;
  height: 14.5rem;
}

.orbit-three {
  width: 19rem;
  height: 19rem;
  border-style: dashed;
}

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.signal-core span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-core strong {
  margin-top: 0.34rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.orbit-label {
  position: absolute;
  color: #c9cfcc;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-one {
  top: 14%;
  left: 38%;
}

.label-two {
  top: 43%;
  right: 4%;
}

.label-three {
  right: 25%;
  bottom: 13%;
}

.label-four {
  bottom: 31%;
  left: 7%;
}

.signal-panel-bottom {
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
  padding: 0;
}

.signal-panel-bottom div {
  flex: 1;
  padding: 0.82rem 0.65rem;
  border-right: 1px solid var(--line-dark);
}

.signal-panel-bottom div:last-child {
  border-right: 0;
}

.micro-label {
  display: block;
  color: #7f8c88;
  font-size: 0.48rem;
}

.signal-panel-bottom strong {
  display: block;
  margin-top: 0.32rem;
  color: #d7dedb;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(3rem, 7vw, 6.5rem);
  color: #74807c;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-footer-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.problem,
.audience,
.reveals,
.process,
.cost,
.clarity,
.trust,
.company-diagnostic,
.final-cta {
  padding: var(--section-space) 0;
}

.split-layout,
.cost-layout,
.trust-layout {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
}

.problem h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.4vw, 4.45rem);
}

.problem-copy {
  color: #b3bcb8;
  font-size: 1rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.problem-copy .large-copy {
  margin-bottom: 1.3rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.problem-copy strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.3em;
  font-weight: 400;
}

.section-heading {
  max-width: 800px;
}

.section-heading h2 {
  color: var(--dark-copy);
}

.audience-grid {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
  transition: background 180ms ease;
}

.audience-card:hover {
  background: #f8f5f0;
}

.card-index {
  width: 2.2rem;
  border-top: 2px solid #b35f1b;
  padding-top: 0.28rem;
  color: #a85a16;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.card-kicker {
  margin: auto 0 0.8rem;
  color: #a85a16;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 24rem;
  margin-bottom: 1.05rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.audience-card p:not(.card-kicker) {
  max-width: 30rem;
  margin-bottom: 1.75rem;
  color: #56605c;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1rem;
  color: #8b4810;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--ink);
}

.reveals-layout {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  grid-template-columns: minmax(16rem, 0.68fr) minmax(0, 1fr);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.sticky-heading p:last-child {
  max-width: 29rem;
  margin-top: 1.25rem;
  color: #5a615d;
}

.reveal-list,
.process-grid,
.cost-chain {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reveal-list li {
  display: grid;
  align-items: start;
  gap: 0.5rem 1rem;
  border-top: 1px solid var(--line-light);
  padding: 1.45rem 0 1.5rem;
  grid-template-columns: 2.4rem 1fr;
}

.reveal-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.reveal-list span,
.step-number,
.cost-chain span {
  color: #a85a16;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.reveal-list strong {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.reveal-list small {
  grid-column: 2;
  color: #68716d;
  font-size: 0.92rem;
}

.heading-row {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
}

.heading-row > p {
  max-width: 24rem;
  margin-bottom: 0;
  color: #59625e;
}

.process-grid {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  background: var(--line-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid li {
  min-height: 20.5rem;
  padding: clamp(1.5rem, 3.4vw, 2.2rem);
  background: var(--paper);
}

.process-grid h3 {
  margin: 4.5rem 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.process-grid p {
  margin-bottom: 0;
  color: #68716d;
  font-size: 0.95rem;
}

.cost h2 {
  max-width: 690px;
}

.cost-intro {
  max-width: 32rem;
  margin: 1.45rem 0 0;
  color: #aab5b1;
}

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

.cost-chain li {
  position: relative;
  display: grid;
  gap: 0.18rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding: 1.15rem 0 1.18rem;
  grid-template-columns: 2rem 1fr;
}

.cost-chain li:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: -0.64rem;
  z-index: 1;
  color: var(--gold);
  content: "↓";
  font-size: 1rem;
}

.cost-chain strong {
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.cost-chain small {
  grid-column: 2;
  color: #96a19d;
}

.clarity-layout {
  display: grid;
  gap: clamp(2rem, 8vw, 7rem);
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1fr);
}

.clarity-layout h2 {
  max-width: 900px;
  color: var(--ink);
}

.clarity-layout p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: rgba(13, 17, 17, 0.77);
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
}

.clarity-layout .clarity-close {
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 800;
}

.trust h2 {
  max-width: 700px;
  color: var(--dark-copy);
  font-size: clamp(2.25rem, 4vw, 4.15rem);
}

.trust-copy {
  color: #505a56;
}

.trust-note {
  border-top: 1px solid var(--line-light);
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  color: #727a77;
  font-size: 0.86rem;
}

.company-diagnostic {
  scroll-margin-top: 1rem;
}

.company-diagnostic-layout {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(15rem, 0.62fr) minmax(0, 1fr);
}

.company-diagnostic-heading {
  align-self: start;
  position: sticky;
  top: 2rem;
}

.company-diagnostic-heading h2 {
  max-width: 560px;
  color: var(--text);
  font-size: clamp(2.5rem, 4.8vw, 4.85rem);
}

.company-diagnostic-heading > p:last-child {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #aab5b1;
}

.company-form {
  border: 1px solid var(--line-dark);
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.025);
}

.form-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.48rem;
}

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

.form-field span {
  color: #aab5b1;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  padding: 0.92rem 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.form-field select {
  cursor: pointer;
}

.form-field option {
  background: var(--ink-soft);
  color: var(--text);
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #77827e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  margin-top: 1.25rem;
  color: #98a39f;
  font-size: 0.82rem;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.22rem 0 0;
  accent-color: var(--gold);
}

.consent-field a,
.email-fallback a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.company-form-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.company-form-actions .button {
  cursor: pointer;
}

.email-fallback {
  margin: 0;
  color: #8e9995;
  font-size: 0.78rem;
}

.email-fallback a {
  margin-left: 0.22rem;
}

.form-confirmation,
.form-error {
  border-top: 1px solid rgba(233, 156, 72, 0.4);
  margin: 1.55rem 0 0;
  padding-top: 1rem;
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.form-error {
  color: #d9a16c;
}

.final-cta {
  text-align: center;
}

.final-cta-glow {
  position: absolute;
  bottom: -20rem;
  left: 50%;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 156, 72, 0.13), transparent 66%);
  pointer-events: none;
  transform: translateX(-50%);
}

.final-layout {
  position: relative;
  z-index: 1;
}

.final-layout .eyebrow {
  justify-content: center;
}

.final-layout h2 {
  color: var(--text);
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.final-layout > p:not(.eyebrow) {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: #aab5b1;
}

.button-row-center {
  justify-content: center;
}

.positioning-line {
  max-width: 860px;
  border-top: 1px solid var(--line-dark);
  margin: clamp(4rem, 8vw, 6.5rem) auto 0;
  padding: 2rem 0 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-inner {
  min-height: 70px;
  color: #78837f;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-legal a {
  padding: 0.35rem 0;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold-soft);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

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

  .signal-panel {
    max-width: 31rem;
  }

  .split-layout,
  .cost-layout,
  .trust-layout {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .reveals-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .sticky-heading,
  .company-diagnostic-heading {
    position: static;
  }

  .company-diagnostic-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .clarity-layout {
    gap: 0.4rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 4.5rem;
  }

  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 0.65rem;
  }

  .brand-copy span {
    font-size: 0.56rem;
  }

  .button-small {
    min-height: 2.35rem;
    padding-inline: 0.72rem;
    font-size: 0.57rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .button-small {
    display: none;
  }

  .language-switcher button {
    padding: 0.45rem 0.48rem;
  }

  .hero {
    padding-top: 7.5rem;
  }

  h1 {
    font-size: clamp(3.35rem, 15vw, 5.25rem);
  }

  h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-orbit {
    min-height: 19.5rem;
    transform: scale(0.9);
  }

  .signal-panel-bottom {
    font-size: 0.5rem;
  }

  .hero-footer {
    margin-top: 3rem;
  }

  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 27rem;
  }

  .heading-row {
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
  }

  .process-grid h3 {
    margin-top: 3rem;
  }

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

  .company-form-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer-inner {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
}

@media (max-width: 400px) {
  .brand-copy span {
    display: none;
  }

  .hero-footer span:last-child {
    display: none;
  }
}

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