:root {
  --ink: #0a0a0a;
  --ink-soft: #121212;
  --surface: #171717;
  --surface-2: #202020;
  --paper: #f0eee9;
  --paper-soft: #d8d5cf;
  --muted: #9b9a96;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 10, 10, 0.16);
  --orange: #ff5a0a;
  --orange-hot: #ff6f1d;
  --green: #62d58b;
  --container: 1360px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero__grid > *,
.benefit-grid > *,
.story-grid > *,
.specs__grid > *,
.order__grid > *,
.faq__grid > *,
.contacts__grid > * {
  min-width: 0;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

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

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(84px, 10vw, 156px);
}

.section--muted {
  background: var(--ink-soft);
}

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

.site-header__inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 7px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: skew(-7deg);
}

.brand__mark {
  font-size: 27px;
}

.brand__text {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: var(--paper-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a,
.header-phone {
  transition: color 160ms ease;
}

.site-nav a:hover,
.header-phone:hover {
  color: var(--orange-hot);
}

.header-phone {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
}

.header-phone svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.88) 38%, rgba(10, 10, 10, 0.25) 72%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.hero__glow {
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 10, 0.3), transparent 66%);
  filter: blur(20px);
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 820px;
  padding-top: 136px;
  padding-bottom: 42px;
  grid-template-columns: minmax(400px, 0.9fr) minmax(520px, 1.25fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 30px 14px;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 12px;
}

.eyebrow,
.section-index {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(76px, 7.3vw, 124px);
  font-weight: 950;
  line-height: 0.79;
  letter-spacing: -0.078em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--orange);
  font-size: 0.45em;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-price {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 28px;
}

.hero-price__current {
  font-family: var(--display);
  font-size: clamp(50px, 4.8vw, 76px);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.hero-price__current small {
  color: var(--orange);
  font-size: 0.48em;
}

.hero-price__meta {
  display: grid;
  padding-bottom: 3px;
  gap: 4px;
  font-size: 13px;
}

.hero-price__meta s {
  color: var(--muted);
}

.hero-price__meta strong {
  color: var(--orange-hot);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--orange);
}

.button--primary:hover {
  background: var(--orange-hot);
}

.button--outline {
  border-color: var(--line);
  color: var(--paper);
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(8px);
}

.button--outline:hover {
  border-color: var(--paper);
}

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

.hero__media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 23%, transparent 76%, rgba(10, 10, 10, 0.34) 100%);
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(1.08) contrast(1.04);
}

.hero__slash {
  position: absolute;
  z-index: 2;
  top: -18%;
  left: 3%;
  width: 10px;
  height: 135%;
  background: var(--orange);
  transform: rotate(12deg);
  transform-origin: center;
  opacity: 0.9;
}

.hero__media-label {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  padding: 8px 11px;
  color: var(--paper);
  background: rgba(10, 10, 10, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-facts {
  position: relative;
  z-index: 4;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-height: 84px;
  padding: 20px clamp(12px, 2vw, 28px);
  border-right: 1px solid var(--line);
  align-items: baseline;
  gap: 7px;
}

.hero-facts li:first-child {
  padding-left: 0;
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.intro__grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
}

.intro h2,
.section-heading h2,
.specs h2,
.faq h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 6.8vw, 104px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.intro__lead {
  max-width: 870px;
  margin: clamp(38px, 5vw, 72px) 0 0 auto;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 520;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.intro__lead strong,
.intro__lead span {
  display: inline;
}

.intro__lead strong {
  font-weight: inherit;
}

.intro__lead span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 92px);
  grid-template-columns: 1.1fr 0.55fr;
  align-items: end;
  gap: 48px;
}

.section-heading > *,
.story-card__body > * {
  min-width: 0;
}

.section-heading > p {
  max-width: 450px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.benefit-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.benefit-card:hover {
  z-index: 1;
  background: var(--surface-2);
  transform: translateY(-4px);
}

.benefit-card--accent {
  color: var(--ink);
  background: var(--orange);
}

.benefit-card--accent:hover {
  background: var(--orange-hot);
}

.benefit-card__num {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.benefit-card--accent .benefit-card__num {
  color: rgba(10, 10, 10, 0.58);
}

.benefit-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benefit-card--accent p,
.benefit-card--accent span {
  color: rgba(10, 10, 10, 0.68);
}

.benefit-card h3 {
  margin-bottom: 4px;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.benefit-card div > span {
  color: var(--muted);
  font-size: 12px;
}

.performance-cta {
  display: grid;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  align-items: center;
  gap: 22px;
  background: linear-gradient(110deg, rgba(255, 90, 10, 0.08), transparent 55%);
}

.performance-cta__model,
.performance-cta__price {
  display: grid;
}

.performance-cta__model span,
.performance-cta__price span {
  color: var(--orange-hot);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.performance-cta__model strong {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.performance-cta__price {
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 1px 14px;
}

.performance-cta__price strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.performance-cta__price s {
  color: var(--muted);
  font-size: 13px;
}

.performance-cta__price span {
  grid-column: 1 / -1;
}

.performance-cta .button {
  width: 100%;
}

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

.section-heading--wide {
  grid-template-columns: 1.4fr 0.5fr;
}

.value .section-index,
.intro .section-index,
.faq .section-index {
  color: #6f6d68;
}

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

.story-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
}

.story-card--large {
  grid-row: span 2;
  min-height: 962px;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card:hover img {
  transform: scale(1.025);
}

.story-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(8, 8, 8, 0.9) 100%);
}

.story-card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 28px;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.story-card__body > span {
  padding-top: 5px;
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 850;
}

.story-card h3 {
  margin-bottom: 8px;
  font-size: clamp(29px, 3vw, 46px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  hyphens: manual;
}

.story-card p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--paper-soft);
  font-size: 14px;
}

.statement {
  position: relative;
  display: flex;
  min-height: min(800px, 82vw);
  overflow: hidden;
  align-items: center;
}

.statement > img,
.statement__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.statement > img {
  object-fit: cover;
  object-position: 56% center;
}

.statement__shade {
  background: linear-gradient(90deg, rgba(9, 9, 9, 0.96) 0%, rgba(9, 9, 9, 0.67) 45%, rgba(9, 9, 9, 0.08) 78%);
}

.statement__content {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}

.statement h2 {
  max-width: 820px;
  margin-bottom: 38px;
  font-size: clamp(54px, 7.2vw, 112px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.statement h2 em {
  color: var(--orange);
  font-style: normal;
  hyphens: manual;
}

.specs {
  background: var(--ink);
}

.specs__grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: clamp(48px, 8vw, 130px);
}

.specs__intro {
  align-self: start;
  position: sticky;
  top: 42px;
}

.specs__intro > p:last-of-type {
  max-width: 430px;
  margin: 28px 0 34px;
  color: var(--muted);
}

.specs__intro img {
  width: 100%;
  height: auto;
  aspect-ratio: 960 / 624;
  object-fit: contain;
}

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

.accordion details,
.faq-list details {
  border-bottom: 1px solid var(--line);
}

.accordion summary,
.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 850;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.accordion summary b {
  color: var(--muted);
  font-size: 11px;
}

.accordion details[open] summary span,
.accordion details[open] summary b {
  color: var(--orange-hot);
}

.accordion dl {
  margin: 0;
  padding-bottom: 28px;
}

.accordion dl div {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
}

.accordion dt {
  color: var(--muted);
  font-size: 13px;
}

.accordion dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.why-trx {
  background: var(--ink-soft);
}

.why-trx__heading {
  display: grid;
  margin-bottom: clamp(46px, 6vw, 80px);
  align-items: end;
  gap: 34px;
}

.why-trx__heading h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.why-trx__heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.why-trx__heading > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.why-trx__grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  display: flex;
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

.why-card > span {
  color: var(--orange-hot);
  font-size: 11px;
  font-weight: 850;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.why-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.why-card--accent {
  color: var(--ink);
  background: var(--orange);
}

.why-card--accent > span,
.why-card--accent p {
  color: rgba(10, 10, 10, 0.68);
}

.why-trx__cta {
  margin-top: 28px;
}

.order {
  position: relative;
  color: var(--ink);
  background: var(--orange);
}

.order::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  content: "";
  pointer-events: none;
  opacity: 0.1;
  background: linear-gradient(135deg, transparent 20%, #000 20%, #000 21%, transparent 21%, transparent 47%, #000 47%, #000 48%, transparent 48%);
}

.order__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
}

.offer .section-index {
  color: rgba(10, 10, 10, 0.62);
}

.offer__model {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer h2 {
  margin-bottom: 16px;
  font-size: clamp(76px, 9.2vw, 142px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.offer h2 span {
  display: inline-block;
}

.offer__old {
  display: flex;
  margin-bottom: 46px;
  align-items: center;
  gap: 18px;
}

.offer__old s {
  font-size: 19px;
  font-weight: 650;
}

.offer__old strong {
  padding: 6px 9px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.offer__badges {
  display: flex;
  max-width: 590px;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.offer__badges span {
  padding: 7px 10px;
  border: 1px solid rgba(10, 10, 10, 0.3);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer__badges span:first-child {
  color: var(--paper);
  background: var(--ink);
}

.offer__facts {
  max-width: 510px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.offer__facts li {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  justify-content: space-between;
  gap: 20px;
}

.offer__facts span {
  color: rgba(10, 10, 10, 0.62);
  font-size: 13px;
}

.offer__facts b {
  font-size: 14px;
}

.lead-card {
  padding: clamp(30px, 4.4vw, 62px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.lead-card__heading h3 {
  margin-bottom: 16px;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.lead-card__heading > p:last-child {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 17px;
}

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

.field > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--paper);
  background: var(--surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder {
  color: #71716e;
}

.field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 10, 0.2);
}

.field.is-invalid input {
  border-color: #ff6b6b;
}

.field__error {
  display: none;
  color: #ff8b8b;
  font-size: 11px;
}

.field.is-invalid .field__error {
  display: block;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #ff8b8b;
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(50px, 9vw, 150px);
}

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

.faq-list details {
  border-color: var(--line-dark);
}

.faq-list summary {
  min-height: 82px;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 720;
  letter-spacing: -0.02em;
}

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 150ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 44px 28px 0;
  margin: 0;
  color: #56544f;
  font-size: 15px;
}

.contacts {
  padding-block: clamp(84px, 10vw, 140px) 58px;
  background: var(--ink-soft);
}

.contacts__top {
  display: flex;
  margin-bottom: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 38px;
}

.contacts h2 {
  margin-bottom: 0;
  font-size: clamp(68px, 10vw, 152px);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: -0.075em;
}

.contacts__phone {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contacts__grid article {
  min-height: 112px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.contacts__grid article:last-child {
  border-right: 0;
}

.contacts__grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contacts__grid p {
  max-width: 270px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 650;
}

.contacts__cta a {
  color: var(--orange-hot);
  font-weight: 800;
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .hero__grid {
    min-height: 760px;
  }

  .hero__grid {
    grid-template-columns: minmax(360px, 0.82fr) minmax(440px, 1fr);
  }

  .hero__media {
    min-height: 500px;
  }

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

  .benefit-card {
    min-height: 220px;
  }

  .offer h2 {
    white-space: normal;
  }

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

  .contacts__grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    min-height: 66px;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    padding-top: 108px;
    padding-bottom: 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__media {
    min-height: 390px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 18%, transparent 74%, rgba(10, 10, 10, 0.38) 100%);
  }

  .hero__slash {
    left: 8%;
  }

  .hero-facts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-facts li {
    min-height: 78px;
    padding: 18px 10px;
    flex-direction: column;
    gap: 4px;
  }

  .hero-facts li:first-child {
    padding-left: 10px;
  }

  .intro__grid,
  .section-heading,
  .section-heading--wide,
  .specs__grid,
  .order__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .intro__lead {
    margin-left: 0;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    margin-top: -12px;
  }

  .story-card,
  .story-card--large {
    min-height: 560px;
    grid-row: auto;
  }

  .statement {
    min-height: 680px;
  }

  .statement__shade {
    background: linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.54) 62%, rgba(9, 9, 9, 0.16) 100%);
  }

  .specs__intro {
    position: static;
  }

  .specs__intro img {
    display: none;
  }

  .order__grid {
    gap: 62px;
  }

  .faq__grid {
    gap: 50px;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-width: 100vw;
    min-height: calc(72px + env(safe-area-inset-bottom));
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(10, 10, 10, 0.94);
    box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > div {
    display: grid;
    min-width: 0;
  }

  .mobile-cta span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .mobile-cta .button {
    min-height: 50px;
    padding: 14px 26px;
    flex: 0 0 auto;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 18px;
  }

  .section {
    padding-block: 84px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .header-phone svg {
    width: 21px;
  }

  .hero__grid {
    padding-top: 88px;
    gap: 14px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(60px, 22vw, 92px);
    line-height: 0.78;
  }

  .hero-price {
    margin-bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-price__current {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-price__meta {
    display: flex;
    padding-bottom: 0;
    align-items: center;
    gap: 12px;
    font-size: 11px;
  }

  .hero-price__meta strong {
    font-size: 9px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    min-height: 54px;
    padding: 15px 18px;
    font-size: 12px;
  }

  .hero__media {
    min-height: 258px;
    margin-inline: -18px;
  }

  .hero__media img {
    object-position: 54% center;
  }

  .hero__media-label {
    right: 14px;
    bottom: 12px;
  }

  .hero-facts {
    margin-top: 2px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts li {
    min-height: 64px;
    padding: 12px 8px;
  }

  .hero-facts li:nth-child(3) {
    border-right: 0;
  }

  .hero-facts li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .hero-facts strong {
    max-width: 100%;
    font-size: 21px;
    overflow-wrap: anywhere;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .intro__grid {
    gap: 18px;
  }

  .intro h2,
  .section-heading h2,
  .specs h2,
  .faq h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .intro__lead {
    margin-top: 32px;
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 44px;
    gap: 32px;
  }

  .section-heading > p {
    margin-top: 0;
    font-size: 15px;
  }

  .benefit-card {
    min-height: 185px;
    padding: 17px;
  }

  .benefit-card h3 {
    font-size: 23px;
  }

  .benefit-card p {
    font-size: 9px;
  }

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

  .story-card,
  .story-card--large {
    min-height: 470px;
  }

  .story-card__body {
    padding: 22px;
  }

  .story-card h3 {
    font-size: 32px;
  }

  .statement {
    min-height: 620px;
    align-items: flex-end;
  }

  .statement > img {
    object-position: 58% center;
  }

  .statement__shade {
    background: linear-gradient(0deg, rgba(9, 9, 9, 0.97) 0%, rgba(9, 9, 9, 0.56) 58%, rgba(9, 9, 9, 0.18) 100%);
  }

  .statement__content {
    padding-block: 70px;
  }

  .statement h2 {
    font-size: 52px;
  }

  .statement h2 em {
    font-size: 0.72em;
  }

  .accordion summary {
    min-height: 78px;
  }

  .accordion summary span {
    font-size: 21px;
  }

  .accordion dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .order {
    padding-top: 76px;
  }

  .offer h2 {
    font-size: clamp(70px, 21vw, 94px);
  }

  .lead-card {
    margin-inline: -18px;
    padding: 34px 18px 38px;
  }

  .lead-card__heading h3 {
    font-size: 48px;
  }

  .contacts h2 {
    font-size: 66px;
  }

  .contacts__phone {
    font-size: 29px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contacts__grid article,
  .contacts__grid article:nth-child(2) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contacts__grid article:last-child {
    border-bottom: 0;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 58px;
  }

  .hero-price__current {
    font-size: 43px;
  }

  .hero-price__meta {
    font-size: 10px;
  }

  .hero__media {
    min-height: 220px;
  }

  .benefit-card {
    min-height: 174px;
    padding: 14px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }

  .mobile-cta strong {
    font-size: 21px;
  }

  .mobile-cta .button {
    padding-inline: 22px;
  }
}

@media (min-width: 768px) {
  .hero-facts li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .performance-cta {
    grid-template-columns: minmax(180px, 0.72fr) minmax(250px, 1fr) auto;
  }

  .performance-cta .button {
    width: auto;
  }

  .why-trx__heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  }

  .why-trx__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-card {
    min-height: 310px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: clamp(88px, 7vw, 120px);
  }

  .intro__grid {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 34px;
  }

  .intro__lead {
    max-width: 980px;
    margin: 38px 0 0;
    font-size: clamp(23px, 2vw, 30px);
  }

  .intro__lead strong,
  .intro__lead span {
    display: block;
  }

  .intro__lead strong {
    margin-bottom: 16px;
    font-weight: 720;
  }

  .intro__lead span {
    max-width: 880px;
    color: #474640;
    font-size: 0.72em;
    font-weight: 520;
    line-height: 1.5;
    letter-spacing: -0.012em;
  }

  .benefits.section {
    padding-top: clamp(82px, 6vw, 102px);
    padding-bottom: clamp(88px, 7vw, 116px);
  }

  .section-heading {
    margin-bottom: clamp(48px, 4.5vw, 68px);
  }

  .benefits .section-heading {
    margin-bottom: clamp(42px, 4vw, 58px);
  }

  .performance-cta {
    margin-top: 28px;
    padding: 26px 30px;
  }

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

  .story-card,
  .story-card--large {
    min-height: 460px;
    grid-row: auto;
  }

  .specs__grid {
    gap: clamp(58px, 6vw, 94px);
  }

  .specs__intro {
    top: 28px;
  }

  .specs__intro img {
    max-width: 520px;
  }

  .why-trx__heading {
    margin-bottom: clamp(48px, 4.5vw, 68px);
  }

  .order__grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    gap: clamp(52px, 6vw, 96px);
  }

  .offer h2 {
    font-size: clamp(82px, 8vw, 126px);
  }

  .lead-card {
    min-width: 0;
  }
}

@media (min-width: 1280px) {
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-card,
  .story-card--large {
    min-height: 440px;
  }

  .story-card--large,
  .story-card--dark {
    grid-column: span 2;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
