:root {
  --bg: oklch(11% 0.035 255);
  --bg-2: oklch(15% 0.04 250);
  --surface: oklch(20% 0.045 250);
  --surface-2: oklch(25% 0.055 255);
  --text: oklch(97% 0.01 255);
  --muted: oklch(79% 0.035 255);
  --line: oklch(36% 0.08 255 / 0.65);
  --blue: oklch(69% 0.17 255);
  --violet: oklch(61% 0.2 292);
  --warm: oklch(80% 0.16 78);
  --shadow: 0 24px 80px oklch(0% 0 0 / 0.42);
  --display: "Marcellus", Georgia, serif;
  --body: "Montserrat", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.58;
}

body.nav-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px clamp(18px, 5vw, 64px);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, padding 220ms ease;
}

.header-solid .site-header,
.nav-open .site-header {
  background: oklch(10% 0.03 255 / 0.72);
  border-bottom-color: oklch(100% 0 0 / 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 31px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  min-width: 86px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.nav-links a:hover {
  color: var(--text);
  background: oklch(100% 0 0 / 0.08);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  place-items: center;
  overflow: hidden;
  padding: 118px 22px 72px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transform-origin: 50% 42%;
  animation: heroImageDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::before {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 26% 36%, oklch(69% 0.17 255 / 0.24), transparent 35%),
    radial-gradient(ellipse at 73% 50%, oklch(61% 0.2 292 / 0.32), transparent 38%),
    linear-gradient(112deg, transparent 25%, oklch(80% 0.16 78 / 0.12) 48%, transparent 66%);
  content: "";
  filter: blur(18px);
  mix-blend-mode: lighten;
  opacity: 0.92;
  transform: translate3d(-8%, 0, 0) scale(1.04) rotate(0.001deg);
  animation: heroLightSweep 6s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, oklch(67% 0.24 285 / 0.2), transparent 32%),
    linear-gradient(180deg, oklch(0% 0 0 / 0.26), var(--bg) 98%);
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.03) translate3d(-1.4%, -0.9%, 0);
  }

  100% {
    transform: scale(1.11) translate3d(1.4%, 1%, 0);
  }
}

@keyframes heroLightSweep {
  0% {
    opacity: 0.56;
    transform: translate3d(-12%, 0, 0) scale(1.03) rotate(0.001deg);
  }

  100% {
    opacity: 0.98;
    transform: translate3d(12%, -3%, 0) scale(1.08) rotate(0.001deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow,
.plan-label {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 5.4vw, 4.8rem);
  text-shadow: 0 16px 48px oklch(0% 0 0 / 0.48);
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
}

h3 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.hero-subtitle {
  margin: 30px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.hero-proof span {
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 999px;
  padding: 7px 13px;
  background: oklch(0% 0 0 / 0.18);
  color: var(--muted);
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 118px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 21px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: oklch(8% 0.03 255);
}

.button-secondary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--text);
  box-shadow: 0 16px 50px oklch(52% 0.2 275 / 0.28);
}

.button-ghost {
  border-color: oklch(100% 0 0 / 0.22);
  background: oklch(100% 0 0 / 0.06);
  color: var(--text);
}

.pricing-card .button-ghost,
.final-actions .button-ghost {
  color: var(--muted);
}

.button-light {
  background: var(--text);
  color: var(--bg);
}

.hero .button {
  min-height: 36px;
  padding: 7px 20px;
}

.signals-section,
.faq-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 64px);
  background: var(--bg);
}

.faq-section {
  background: var(--bg-2);
}

.section-intro {
  width: min(880px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.section-intro p {
  margin: 14px auto 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  text-wrap: pretty;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: clamp(18px, 3vw, 28px);
  width: min(1040px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  width: 100%;
  margin: 0 auto;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, oklch(100% 0 0 / 0.075), transparent 44%),
    var(--surface);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: oklch(69% 0.17 255 / 0.74);
  background:
    radial-gradient(circle at 88% 12%, oklch(69% 0.17 255 / 0.18), transparent 34%),
    linear-gradient(145deg, oklch(100% 0 0 / 0.095), transparent 44%),
    var(--surface);
}

.secondary-card {
  background: oklch(100% 0 0 / 0.045);
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pill {
  border-radius: 999px;
  padding: 6px 12px;
  background: oklch(69% 0.17 255 / 0.16);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
}

.card-copy {
  margin: -6px 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--bg);
  content: "\2713";
  font-size: 0.66rem;
  font-weight: 900;
}

.prop-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 16% 12%, oklch(69% 0.17 255 / 0.14), transparent 30%),
    radial-gradient(circle at 82% 74%, oklch(61% 0.2 292 / 0.12), transparent 30%),
    oklch(15% 0.045 245);
}

.prop-pricing-card {
  display: grid;
  gap: 20px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, oklch(69% 0.17 255 / 0.16), transparent 34%),
    linear-gradient(145deg, oklch(100% 0 0 / 0.075), transparent 42%),
    oklch(13% 0.038 248 / 0.96);
  box-shadow: var(--shadow);
}

.prop-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.prop-heading h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.14;
}

.bars-mark {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  width: 42px;
  height: 38px;
  margin-top: 7px;
}

.bars-mark i {
  display: block;
  width: 9px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, oklch(73% 0.15 251), oklch(55% 0.2 261));
  box-shadow: inset 0 0 0 1px oklch(100% 0 0 / 0.3);
}

.bars-mark i:nth-child(1) {
  height: 18px;
}

.bars-mark i:nth-child(2) {
  height: 27px;
}

.bars-mark i:nth-child(3) {
  height: 38px;
}

.prop-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 2px;
}

.prop-price-row h3 {
  font-size: clamp(2.25rem, 5vw, 3.65rem);
}

.faq-list {
  display: grid;
  width: min(880px, 100%);
  margin: 0 auto;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.055);
}

summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(880px, 100%);
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 15%, oklch(69% 0.17 255 / 0.14), transparent 34%),
    oklch(100% 0 0 / 0.045);
}

.final-cta h2 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.content-page {
  min-height: 78vh;
  padding: 132px clamp(18px, 5vw, 64px) 72px;
  background:
    linear-gradient(180deg, oklch(0% 0 0 / 0.28), var(--bg)),
    url("assets/hero.jpeg") center / cover;
}

.content-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: oklch(12% 0.035 255 / 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.content-panel h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.content-panel p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 38px);
  width: min(840px, 100%);
}

.about-copy {
  min-width: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding-top: 4px;
}

.about-actions .button {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 0.86rem;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-meta div {
  padding: 16px;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.045);
}

.about-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-meta strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.about-portrait {
  position: relative;
  align-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.05);
  box-shadow: 0 24px 60px oklch(0% 0 0 / 0.34);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(100% 0 0 / 0.08), oklch(0% 0 0 / 0.16));
  content: "";
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 36%;
}

.about-strategy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}

.about-strategy-heading h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
}

.about-strategy-heading p {
  margin: 0;
}

.strategy-targets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strategy-targets div {
  padding: 14px 12px;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.045);
  text-align: center;
}

.strategy-targets span {
  display: block;
  margin-bottom: 5px;
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 700;
}

.strategy-targets strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
}

.strategy-notes {
  display: grid;
  grid-column: 1 / -1;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-notes li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.strategy-notes li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--warm);
  content: "";
}

.legal-page {
  background:
    linear-gradient(180deg, oklch(0% 0 0 / 0.34), var(--bg) 520px),
    url("assets/hero.jpeg") top center / cover no-repeat;
}

.legal-panel {
  width: min(920px, 100%);
}

.legal-content {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.legal-content h2 {
  margin-top: 20px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  max-width: 78ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.legal-content p {
  margin: 0;
}

.legal-content ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-panel {
  width: min(620px, 100%);
  padding: clamp(22px, 3.2vw, 30px);
}

.contact-panel h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.form-field label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field span {
  color: var(--warm);
}

.form-field input,
.form-field textarea,
.input-with-icon {
  width: 100%;
  border: 1px solid oklch(78% 0.02 240 / 0.54);
  border-radius: 8px;
  background: oklch(5.5% 0.014 245 / 0.92);
  color: var(--text);
  font: 400 0.92rem var(--body);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  min-height: 40px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.input-with-icon {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 12px;
}

.input-with-icon span {
  position: relative;
  width: 20px;
  height: 14px;
  margin-right: 9px;
  border: 2px solid oklch(75% 0.02 240 / 0.82);
  border-radius: 5px;
  flex: 0 0 auto;
}

.input-with-icon span::before,
.input-with-icon span::after {
  position: absolute;
  top: 3px;
  width: 9px;
  height: 2px;
  background: oklch(75% 0.02 240 / 0.82);
  content: "";
}

.input-with-icon span::before {
  left: 2px;
  transform: rotate(31deg);
  transform-origin: left center;
}

.input-with-icon span::after {
  right: 2px;
  transform: rotate(-31deg);
  transform-origin: right center;
}

.input-with-icon input {
  min-height: 38px;
  border: 0;
  background: transparent;
  padding: 0;
}

.input-with-icon:focus-within,
.form-field input:focus,
.form-field textarea:focus {
  border-color: oklch(82% 0.13 250 / 0.86);
  box-shadow: 0 0 0 3px oklch(69% 0.17 255 / 0.16);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: oklch(68% 0.02 80);
}

.form-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status[data-state="success"] {
  color: oklch(82% 0.16 145);
}

.form-status[data-state="error"] {
  color: oklch(76% 0.18 28);
}

.contact-form .button {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  border-radius: 6px;
  background: oklch(0% 0 0);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
}

.contact-fast-lane {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}

.contact-fast-lane h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-fast-lane p {
  margin: 0;
  font-size: 0.84rem;
}

.contact-fast-lane .button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.footer {
  padding: clamp(26px, 4vw, 38px) clamp(18px, 5vw, 64px) 18px;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  background: oklch(8% 0.026 255);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(140px, 0.45fr));
  gap: clamp(18px, 4vw, 38px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand p {
  max-width: 34ch;
  margin: 10px 0 0;
  font-size: 0.84rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: var(--text);
}

.terms-short {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 22px auto 0;
  padding-top: 12px;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  font-size: 0.78rem;
}

@media (max-width: 720px) {
  .nav-toggle {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid oklch(100% 0 0 / 0.16);
    border-radius: 8px;
    background: oklch(7% 0.02 255 / 0.72);
    color: inherit;
    box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.08);
    transition: border-color 180ms ease, background 180ms ease;
  }

  .nav-toggle:hover {
    border-color: oklch(80% 0.16 78 / 0.42);
    background: oklch(13% 0.04 255 / 0.84);
  }

  .nav-toggle span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transform-origin: center;
    transition: transform 180ms ease, opacity 140ms ease, top 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    top: 13px;
  }

  .nav-toggle span:nth-child(2) {
    top: 20px;
  }

  .nav-toggle span:nth-child(3) {
    top: 27px;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 64px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: oklch(12% 0.035 255 / 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
  }

  .hero {
    min-height: 82vh;
    padding-top: 104px;
  }

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

  .prop-heading {
    gap: 14px;
  }

  .prop-price-row {
    flex-direction: column;
    gap: 10px;
  }

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

  .final-actions {
    justify-content: flex-start;
  }

  .content-page {
    padding-top: 108px;
  }

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

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

  .about-portrait {
    min-height: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-actions .button {
    flex: 1 1 160px;
  }

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

  .strategy-targets {
    grid-template-columns: 1fr;
  }

  .contact-fast-lane {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: max-content max-content;
    justify-content: center;
    justify-items: center;
    column-gap: 50px;
    row-gap: 18px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    display: none;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-column {
    justify-items: center;
  }

  .terms-full {
    display: none;
  }

  .terms-short {
    display: inline;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-bg {
    animation: heroImageDriftReduced 12s ease-in-out infinite alternate;
  }

  .hero::before {
    animation: heroLightSweepReduced 7s ease-in-out infinite alternate;
    opacity: 0.9;
  }
}

@keyframes heroImageDriftReduced {
  0% {
    transform: scale(1.03) translate3d(-1.1%, -0.7%, 0);
  }

  100% {
    transform: scale(1.09) translate3d(1.1%, 0.8%, 0);
  }
}

@keyframes heroLightSweepReduced {
  0% {
    opacity: 0.5;
    transform: translate3d(-12%, 0, 0) scale(1.03) rotate(0.001deg);
  }

  100% {
    opacity: 0.95;
    transform: translate3d(12%, -3%, 0) scale(1.08) rotate(0.001deg);
  }
}
