:root {
  --bg: #eef2f4;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(13, 23, 38, 0.02), transparent 60%);
  --surface-muted: rgba(15, 23, 42, 0.86);
  --text: #0d1726;
  --text-soft: #526071;
  --line: rgba(13, 23, 38, 0.08);
  --accent: #ff4d3d;
  --accent-deep: #d92f21;
  --shadow: 0 24px 60px rgba(13, 23, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 61, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(13, 23, 38, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f8fa 0%, var(--bg) 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header,
.hero,
.section,
.intake-form,
.hero-card,
.principle-card,
.signal-card,
.fit-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(13, 23, 38, 0.08);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #121212;
  background: linear-gradient(145deg, #ff6654, #ff3b29);
  box-shadow: inset 0 0 0 4px #121212;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 0.98rem;
}

.brand__text span,
.header-cta,
.eyebrow,
.hero__lede,
.section-heading p,
.principle-card p,
.signal-card p,
.check-list,
.disclaimer,
.form-note,
.field span,
input,
select,
textarea {
  color: var(--text-soft);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
  box-shadow: 0 12px 24px rgba(255, 77, 61, 0.18);
}

.language-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 23, 38, 0.05);
}

.language-toggle__button {
  min-width: 44px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.language-toggle__button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(13, 23, 38, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  padding: 56px 0 24px;
  align-items: stretch;
}

.hero__content,
.hero-card,
.section,
.fit-card,
.intake-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(255, 77, 61, 0.08), transparent 55%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero__lede,
.section-heading p,
.signal-card p,
.principle-card p,
.field,
.disclaimer {
  font-size: 1rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 30px rgba(255, 77, 61, 0.24);
}

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

.button--wide {
  width: 100%;
}

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

.hero__stats li {
  padding: 18px;
  border-radius: 22px;
  background: rgba(13, 23, 38, 0.04);
}

.hero__stats strong,
.field span {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 700;
}

.hero__stats span {
  display: block;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
  scroll-margin-top: 100px;
}

.hero-card__label {
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 14px;
  line-height: 1.5;
}

.pattern-stack {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.pattern-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54)),
    linear-gradient(135deg, rgba(13, 23, 38, 0.02), transparent 60%);
}

.pattern-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: rgba(255, 77, 61, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.pattern-item[data-pattern-icon="pipeline"] .pattern-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h5'/%3E%3Cpath d='M15 12h5'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.pattern-item[data-pattern-icon="founder"] .pattern-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3'/%3E%3Cpath d='M6 19c0-3 2.7-5 6-5s6 2 6 5'/%3E%3C/svg%3E");
}

.pattern-item[data-pattern-icon="enterprise"] .pattern-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19V7l7-3 7 3v12'/%3E%3Cpath d='M9 11h6'/%3E%3Cpath d='M9 15h6'/%3E%3C/svg%3E");
}

.pattern-item[data-pattern-icon="pricing"] .pattern-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M16 7.5c0-1.9-1.8-3.5-4-3.5s-4 1.2-4 3 1.3 2.4 4 3 4 1.1 4 3-1.8 4-4 4-4-1.6-4-3.5'/%3E%3C/svg%3E");
}

.pattern-item[data-pattern-icon="expansion"] .pattern-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l10-10'/%3E%3Cpath d='M10 7h7v7'/%3E%3Cpath d='M7 12v5h5'/%3E%3C/svg%3E");
}

.pattern-item__body h3 {
  margin-bottom: 4px;
  font-size: 1.06rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
}

.pattern-item__body p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 500;
}

.check-list li {
  position: relative;
  padding-left: 48px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: rgba(255, 77, 61, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.check-list li[data-icon="stage"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M7 14l3-3 3 2 4-5'/%3E%3C/svg%3E");
}

.check-list li[data-icon="signal"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='3' height='7'/%3E%3Crect x='10.5' y='7' width='3' height='11'/%3E%3Crect x='17' y='4' width='3' height='14'/%3E%3C/svg%3E");
}

.check-list li[data-icon="leverage"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v16'/%3E%3Cpath d='M7 9l5-5 5 5'/%3E%3Cpath d='M7 15l5 5 5-5' opacity='.35'/%3E%3C/svg%3E");
}

.check-list li[data-icon="customers"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M4 18c0-2.5 2.2-4 5-4s5 1.5 5 4'/%3E%3Cpath d='M17 11c1.7.2 3 1.5 3 3.2'/%3E%3Cpath d='M16 5.5a2.5 2.5 0 0 1 0 5'/%3E%3C/svg%3E");
}

.check-list li[data-icon="slides"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='10' rx='2'/%3E%3Cpath d='M12 15v4'/%3E%3Cpath d='M8 19h8'/%3E%3C/svg%3E");
}

.check-list li[data-icon="owner"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3'/%3E%3Cpath d='M6 19c0-3 2.7-5 6-5s6 2 6 5'/%3E%3Cpath d='M19 5l1.5 1.5L23 4'/%3E%3C/svg%3E");
}

.check-list--muted li::before {
  background-color: rgba(255, 255, 255, 0.08);
}

.check-list--muted li[data-icon="customers"]::before,
.check-list--muted li[data-icon="slides"]::before,
.check-list--muted li[data-icon="owner"]::before {
  filter: brightness(1.2);
}

.section {
  margin-top: 24px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.section--testimonials {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at top right, rgba(13, 23, 38, 0.035), transparent 26%);
}

.section--about {
  background:
    linear-gradient(180deg, rgba(255, 249, 247, 0.8), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at top left, rgba(255, 77, 61, 0.045), transparent 24%);
}

.section--split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.section--signal {
  background:
    linear-gradient(135deg, rgba(13, 23, 38, 0.97), rgba(28, 37, 54, 0.94)),
    radial-gradient(circle at top right, rgba(255, 77, 61, 0.22), transparent 28%);
  color: #f5f7fb;
}

.section--signal .eyebrow,
.section--signal .section-heading p,
.section--signal .signal-card p {
  color: rgba(245, 247, 251, 0.72);
}

.principles,
.signal-grid,
.testimonial-grid,
.about-grid {
  display: grid;
  gap: 18px;
}

.principles {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.signal-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: center;
}

.about-photo-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-proof {
  margin-top: 24px;
}

.about-proof__inner {
  padding: 24px 26px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

.about-proof__lead {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.principle-card,
.signal-card,
.fit-card,
.testimonial-card,
.about-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.principle-card {
  padding: 28px;
  background: var(--surface-strong);
}

.principle-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 61, 0.12);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.signal-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-card {
  padding: 28px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  background: var(--surface-strong);
  box-shadow: none;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 96px;
  min-width: 0;
  height: 96px;
  aspect-ratio: auto;
  border-radius: 16px;
  background: rgba(13, 23, 38, 0.05);
  overflow: hidden;
  display: block;
}

.testimonial-avatar--image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: none;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-kicker {
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.testimonial-card h3 {
  margin-bottom: 4px;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.testimonial-role {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.about-card {
  padding: 28px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  background: var(--surface-strong);
}

.about-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 61, 0.12);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-card__lead {
  margin-bottom: 18px !important;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.about-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-card__list li {
  position: relative;
  padding-left: 40px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
}

.about-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background:
    rgba(255, 77, 61, 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d92f21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E")
    no-repeat center / 14px 14px;
}

.testimonial-quote {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.fit-card {
  padding: 36px;
  background: var(--surface-strong);
  display: flex;
  flex-direction: column;
}

.fit-card__inner {
  margin-top: 28px;
  padding: 24px 24px 10px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  flex: 1;
}

.fit-card__inner--muted {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.fit-card--muted {
  background: var(--surface-muted);
  color: #f5f7fb;
}

.fit-card--muted .eyebrow,
.fit-card--muted .check-list li {
  color: rgba(245, 247, 251, 0.75);
}

.section--form {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.88), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at top right, rgba(255, 77, 61, 0.08), transparent 24%);
}

.form-copy {
  padding: 8px 4px 0 4px;
}

.form-copy__inner {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.form-copy__inner p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.form-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(13, 23, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.form-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 77, 61, 0.08);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.form-note strong {
  color: var(--text);
}

.form-note span {
  color: var(--text-soft);
}

.intake-form {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
}

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

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

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

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(13, 23, 38, 0.12);
  border-radius: 16px;
  background: rgba(247, 248, 250, 0.95);
  font: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 77, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 77, 61, 0.12);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footer {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.disclaimer {
  margin-bottom: 0;
}

code {
  padding: 0.18em 0.45em;
  border-radius: 999px;
  background: rgba(13, 23, 38, 0.08);
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 8px 0;
  color: var(--text-soft);
}

.site-footer__identity {
  display: grid;
  gap: 2px;
}

.site-footer__identity strong {
  color: var(--text);
  font-size: 0.98rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__links a,
.site-footer__meta {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--text);
}

.site-footer__meta {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero,
  .section--form,
  .section--split,
  .principles,
  .signal-grid,
  .testimonial-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    top: 10px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .header-cta {
    display: none;
  }

  .header-controls {
    margin-left: auto;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__content,
  .hero-card,
  .section,
  .fit-card,
  .intake-form {
    padding: 24px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .hero__stats,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-person {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
