:root {
  --bg: #141414;
  --bg-raised: #1c1c1c;
  --surface: #262626;
  --surface-hi: #2f2f2f;
  --line: #383838;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f3f1ee;
  --muted: #aeaba6;
  --dim: #8a8680;
  --accent: #e07a45;
  --accent-strong: #bb5627;
  --accent-deep: #963f1b;
  --danger: #ff9483;
  --success: #93d3a2;
  --overlay: rgba(10, 10, 10, 0.72);
  --font-display: "Oswald", "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1140px;
  --header-h: 72px;
  --shadow-lift: 0 18px 40px -18px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(224, 122, 69, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

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

::selection {
  background: var(--accent-strong);
  color: #fff;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.004em;
}

.accent {
  color: var(--accent);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-title {
  font-size: clamp(2.1rem, 1.25rem + 3.6vw, 4.1rem);
}

.section-title--center {
  text-align: center;
}

.section-lead {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 46ch;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent-deep);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent-strong);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 10px 26px -12px rgba(224, 122, 69, 0.7);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost::before {
  background: var(--surface-hi);
}

.btn--sm {
  padding: 0.58rem 1rem;
  font-size: 0.78rem;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.btn:disabled::before {
  display: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.tag:hover {
  border-color: var(--accent);
}

.tag[aria-pressed="true"] {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-block;
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.link-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.link-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.link-line:hover::after,
.link-line:focus-visible::after {
  transform: scaleX(1);
}

.link-line .icon {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.3s var(--ease-out);
}

.link-line:hover .icon {
  transform: translateX(3px);
}

.arrows {
  display: flex;
  gap: 0.5rem;
}

.arrow-btn {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
}

.arrow-btn .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.arrow-btn:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.arrow-btn:active {
  transform: scale(0.94);
}

.media {
  overflow: hidden;
  background: var(--bg-raised);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.media:hover img {
  transform: scale(1.05);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9), inset 0 -1px 0 var(--line-soft);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.site-header.is-scrolled::before,
.site-header.menu-open::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  text-decoration: none;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s var(--ease-out);
}

.brand:hover .brand__mark {
  transform: rotate(-20deg);
}

.brand__name {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: var(--text);
  text-decoration: none;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__phone {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem;
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone__text {
  display: none;
}

.header-phone:hover {
  color: var(--accent);
}

.cart-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.35);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.cart-toggle:hover {
  border-color: var(--accent);
}

.cart-toggle__count {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  display: grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.cart-toggle__count.is-bumped {
  animation: bump 0.45s var(--ease-out);
}

@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.burger {
  display: inline-grid;
  align-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.35);
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: none;
}

.js .site-nav {
  display: block;
  position: fixed;
  inset: var(--header-h) 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  background: rgba(20, 20, 20, 0.97);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), visibility 0s linear 0.35s;
}

.js .site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), visibility 0s;
}

.js .site-nav .site-nav__list {
  flex-direction: column;
  gap: 0.25rem;
}

.js .site-nav .site-nav__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.js .site-nav .site-nav__phone {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--accent);
  font-size: 1rem;
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(640px, min(100svh, 880px));
  overflow: hidden;
  isolation: isolate;
  background: #0d0d0d;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  animation: ken-burns 26s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.78) 34%, rgba(13, 13, 13, 0.25) 66%, rgba(13, 13, 13, 0.15) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(20, 20, 20, 0) 32%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  left: -12rem;
  bottom: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 69, 0.26) 0%, rgba(224, 122, 69, 0) 68%);
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero__glow--two {
  width: 22rem;
  height: 22rem;
  left: 38%;
  top: 8%;
  bottom: auto;
  background: radial-gradient(circle, rgba(224, 122, 69, 0.12) 0%, rgba(224, 122, 69, 0) 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(3rem, -2rem, 0); }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding-block: calc(var(--header-h) + 2.5rem) 2rem;
}

.hero__title {
  font-size: clamp(2.6rem, 1.4rem + 5vw, 5.1rem);
  line-height: 1.08;
  max-width: 11ch;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem 1.75rem;
  margin-top: 2rem;
}

.hero-stat {
  min-width: 11.5rem;
  padding: 1.35rem 1.5rem 1.25rem;
  background: rgba(38, 38, 38, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
}

.hero-stat__value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.hero-stat__unit {
  margin-left: 0.2rem;
  color: var(--accent);
  font-size: 1.3rem;
}

.hero-stat__label {
  margin-top: 1.1rem;
  max-width: 12ch;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.hero__lead {
  max-width: 17rem;
}

.hero__lead p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.hero-range {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-end;
}

.hero-range__thumbs {
  display: flex;
  padding: 0;
  list-style: none;
}

.hero-range__thumbs li + li {
  margin-left: -0.7rem;
}

.hero-range__thumbs img {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--bg);
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.hero-range__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-range__label {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero__tagline {
  display: grid;
  gap: 1.25rem;
}

.hero-rotator {
  display: grid;
  font-size: 1.2rem;
  line-height: 1.3;
}

.hero-rotator__item {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease-out);
}

.hero-rotator__item.is-active {
  opacity: 1;
  transform: none;
}

.scroll-cue {
  display: none;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
}

.scroll-cue__circle {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.scroll-cue__circle .icon {
  width: 1rem;
  height: 1rem;
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

.strip {
  position: relative;
  overflow: hidden;
  padding-block: 1.15rem;
  background: #1e1e1e;
  border-block: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.strip__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.strip:hover .strip__track {
  animation-play-state: paused;
}

.strip__list {
  display: flex;
  gap: 3.5rem;
  padding: 0 3.5rem 0 0;
  list-style: none;
}

.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip__item .icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.range-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.range-grid__photo {
  min-height: 18rem;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 18rem;
  padding: 1.9rem 1.75rem;
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}

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

.feature-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  border-radius: 4px;
  background: var(--accent-strong);
  color: #fff;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  transform: rotate(-8deg) scale(1.05);
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.feature-card__text {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.feature-card .link-line {
  margin-top: auto;
  align-self: flex-start;
}

.shop__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.shop__intro {
  display: grid;
  gap: 1rem;
}

.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter .tag {
  cursor: pointer;
  padding: 0.45rem 1.05rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
}

.product__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(224, 122, 69, 0.45);
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.25rem 1.4rem;
}

.product__cat {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.product__desc {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product__specs {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

.product__specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product__specs dt {
  color: var(--muted);
}

.product__specs dd {
  text-align: right;
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

.product__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.plan__head {
  display: grid;
  gap: 1.5rem;
}

.plan__intro {
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 21rem;
}

.plan__intro p {
  color: var(--muted);
  font-size: 0.84rem;
}

.plan__grid {
  display: grid;
  gap: 1.75rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.plan__aside {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.plan__aside .media {
  aspect-ratio: 8 / 7;
}

.plan__caption {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.plan__photo {
  aspect-ratio: 4 / 3;
}

.plan__info {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.plan-panel__title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.plan-panel__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.plan-panel__num {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-panel__text {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.plan-panel {
  animation: fade-up 0.45s var(--ease-out);
}

.plan__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.plan__stats .stat:last-child {
  margin-top: 1.75rem;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.05;
}

.stat__unit {
  margin-left: 0.2rem;
  color: var(--accent);
  font-size: 0.95rem;
  vertical-align: top;
}

.stat__label {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}

.facts__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.facts__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.facts__photo {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
  max-width: 11rem;
}

.facts__title {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.build__hero {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  aspect-ratio: 16 / 9;
}

.build__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0) 30%, rgba(13, 13, 13, 0.55) 100%);
  pointer-events: none;
}

.build__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: -2.1rem 0 0 -2.1rem;
  border-radius: 50%;
  background: rgba(243, 241, 238, 0.92);
  color: var(--bg);
}

.build__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(243, 241, 238, 0.8);
  animation: pulse-ring 2.4s var(--ease) infinite;
}

.build__badge .icon {
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.build__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.build__portrait {
  aspect-ratio: 1 / 1;
}

.build-chart {
  display: grid;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.build-chart__visual {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 1.25rem;
}

.build-chart__svg {
  width: 100%;
  max-width: 16rem;
  height: auto;
}

.build-chart__line {
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
}

.build-chart__dot {
  fill: var(--accent);
}

.build-chart__data {
  display: grid;
  align-content: start;
  gap: 1.35rem;
}

.build-chart__title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.build-chart__note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.build-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background: var(--surface);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}

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

.build-card__title {
  font-size: 1rem;
  font-weight: 500;
}

.build-card__text {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.build-card .link-line {
  margin-top: auto;
  align-self: flex-start;
}

.info__grid {
  display: grid;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.info__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: start;
}

.info__tab {
  position: relative;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: left;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.info__tab:hover {
  color: var(--text);
}

.info__tab[aria-selected="true"] {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.info__stage {
  position: relative;
}

.info-panel__inner {
  display: grid;
  gap: 1.5rem;
  animation: fade-up 0.45s var(--ease-out);
}

.info-panel + .info-panel {
  margin-top: 3rem;
}

.info-panel[hidden] + .info-panel,
.info-panel + .info-panel[hidden] {
  margin-top: 0;
}

.info-panel__media {
  aspect-ratio: 16 / 10;
}

.info-panel__text {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.info-panel__title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.info-panel__text p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.info-panel__list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  line-height: 1.5;
}

.info-panel__list li {
  position: relative;
  padding-left: 1rem;
}

.info-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.info__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}

.support {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.support__avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--surface-hi);
  color: var(--accent);
}

.support__avatar .brand__mark {
  width: 1.35rem;
  height: 1.35rem;
}

.support__name {
  font-size: 0.8rem;
  font-weight: 500;
}

.support__role {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10rem;
  top: 10%;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 69, 0.14), rgba(224, 122, 69, 0) 70%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.contact__inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.contact__text {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.contact-card__list {
  display: grid;
  gap: 1rem;
}

.contact-card__list dt {
  color: var(--muted);
  font-size: 0.74rem;
}

.contact-card__list dd {
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-card__list a {
  text-decoration: none;
}

.contact-card__list a:hover {
  color: var(--accent);
}

.site-footer {
  padding: 3.5rem 0 2rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.site-footer__tagline {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  margin-top: 2.25rem;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  position: relative;
  font-size: 0.8rem;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
}

.site-footer__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-footer__contact a {
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: var(--accent);
}

.site-footer__about {
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 0.74rem;
  line-height: 1.6;
}

.site-footer__legal a {
  color: var(--muted);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease), visibility 0s;
}

.cart {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: min(100%, 460px);
  background: var(--bg-raised);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.9);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
}

.cart.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.45s var(--ease-out), visibility 0s;
}

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.cart__title {
  font-size: 1.5rem;
}

.cart__close {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease-out);
}

.cart__close:hover {
  border-color: var(--accent);
  transform: rotate(90deg);
}

.cart__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart__view {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.25rem;
}

.cart__view[hidden],
.cart__list[hidden] {
  display: none;
}

.cart__list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--surface);
  animation: fade-up 0.35s var(--ease-out);
}

.cart-line__name {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.cart-line__unit {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.cart-line__total {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: right;
}

.cart-line__remove {
  justify-self: start;
  padding: 0.2rem 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.74rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-line__remove:hover {
  color: var(--danger);
}

.qty {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty__btn {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 1rem;
  transition: color 0.2s var(--ease);
}

.qty__btn:hover:not(:disabled) {
  color: var(--accent);
}

.qty__btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.qty__value {
  min-width: 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.cart__empty {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
}

.cart__empty[hidden] {
  display: none;
}

.summary {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary__row dt {
  color: var(--muted);
}

.summary__row--total {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.summary__row--total dt {
  color: var(--text);
}

.summary__note {
  color: var(--accent);
  font-size: 0.74rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.78rem;
  font-weight: 500;
}

.field__optional {
  color: var(--muted);
  font-weight: 400;
}

.field__input {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field__input:hover {
  border-color: #4a4a4a;
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 69, 0.25);
}

.field__input[aria-invalid="true"] {
  border-color: var(--danger);
}

textarea.field__input {
  min-height: 5.5rem;
  resize: vertical;
}

.field__error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.74rem;
  line-height: 1.4;
}

.field__error:empty {
  display: none;
}

.field-row {
  display: grid;
  gap: 1rem;
}

.checkout__privacy {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.checkout__privacy a {
  color: var(--text);
}

.checkout__actions {
  display: grid;
  gap: 0.6rem;
}

.done {
  display: grid;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  text-align: left;
}

.done__icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(147, 211, 162, 0.14);
  color: var(--success);
  animation: pop 0.45s var(--ease-out);
}

.done__icon .icon {
  width: 1.6rem;
  height: 1.6rem;
}

@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.done__title {
  font-size: 1.7rem;
}

.done__title:focus {
  outline: none;
}

.done__meta {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.done__meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.done__meta dt {
  color: var(--muted);
}

.done__text {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(224, 122, 69, 0.45);
  border-radius: 1.4rem;
  background: #222;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.9);
  font-size: 0.84rem;
  opacity: 0;
  transform: translate(-50%, 1.5rem);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast .icon {
  color: var(--accent);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  border-bottom: 1px solid var(--line-soft);
}

.legal-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8rem;
  top: -10rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 69, 0.2), rgba(224, 122, 69, 0) 70%);
  animation: drift 16s ease-in-out infinite alternate;
}

.legal-hero__title {
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4.4rem);
  background: linear-gradient(90deg, var(--text) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-hero__meta {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  padding-block: 3rem 5rem;
}

.toc {
  align-self: start;
  padding: 1.5rem;
  background: var(--surface);
}

.toc__title {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc__list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  font-size: 0.84rem;
}

.toc__list a {
  display: flex;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.toc__list a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1.9;
}

.toc__list a:hover,
.toc__list a[aria-current="true"] {
  color: var(--text);
}

.legal__content {
  max-width: 46rem;
}

.legal__section + .legal__section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-soft);
}

.legal__section h2 {
  margin-bottom: 1.1rem;
  font-size: 1.7rem;
}

.legal__section h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal__section p,
.legal__section li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal__section p + p,
.legal__section p + ul,
.legal__section ul + p {
  margin-top: 0.9rem;
}

.legal__section ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
}

.legal__section li::marker {
  color: var(--accent);
}

.legal__section strong {
  color: var(--text);
  font-weight: 600;
}

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

.legal__section a:hover {
  color: var(--accent);
}

.legal__details {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  font-size: 0.9rem;
}

.legal__details div {
  display: grid;
  gap: 0.1rem;
}

.legal__details dt {
  color: var(--muted);
  font-size: 0.74rem;
}

.legal__details a {
  text-decoration: none;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.legal-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.legal-table th,
.legal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.legal-table th {
  background: var(--surface);
  font-weight: 600;
}

.legal-table td {
  color: var(--muted);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .build-chart {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 768px) {
  .header-phone__text {
    display: inline;
  }

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

  .plan__head {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .plan__grid {
    grid-template-columns: 1fr 1.6fr;
  }

  .plan__info {
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .plan__info .tag-list {
    grid-column: 1 / -1;
  }

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

  .build-chart {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .info-panel__inner {
    grid-template-columns: 1.25fr 1fr;
    gap: 2.5rem;
  }

  .info-panel__text {
    padding-bottom: 4.5rem;
  }

  .info__meta {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc((100% - 2.5rem) / 2.25);
    margin: 0;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr 1fr 1.4fr;
    align-items: end;
  }

  .site-footer__about {
    justify-self: end;
  }

  .scroll-cue {
    display: inline-flex;
  }

  .hero-rotator {
    padding-left: 3.75rem;
  }

  .field-row--three {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    display: block;
    position: static;
    inset: auto;
    padding: 0;
    background: none;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .js .site-nav .site-nav__list {
    flex-direction: row;
    gap: 2.5rem;
  }

  .js .site-nav .site-nav__link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: none;
  }

  .js .site-nav .site-nav__phone {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .js .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__row {
    margin-top: 2.5rem;
  }

  .range-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(20rem, auto);
  }

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

  .plan__grid {
    grid-template-columns: 1fr 1.6fr 1.3fr;
    gap: 2rem;
  }

  .plan__info {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }

  .plan__photo {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .facts {
    grid-template-columns: 0.9fr 1.1fr 1.3fr 0.9fr 0.6fr;
  }

  .facts__photo,
  .facts__title {
    grid-column: auto;
  }

  .facts__item--end {
    text-align: right;
  }

  .build__hero {
    aspect-ratio: 16 / 5;
  }

  .build__grid {
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 2rem;
  }

  .build-chart {
    grid-column: auto;
    grid-row: auto;
  }

  .info__grid {
    grid-template-columns: 11rem 1fr;
  }

  .info__tabs {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .info__tab {
    padding: 0.2rem 0 0.2rem 1.1rem;
    border: 0;
    border-radius: 0;
    background: none;
  }

  .info__tab::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    margin-top: -0.2rem;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.3s var(--ease-out);
  }

  .info__tab[aria-selected="true"] {
    background: none;
    color: var(--text);
  }

  .info__tab[aria-selected="true"]::before {
    transform: scale(1);
  }

  .contact__inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }

  .legal {
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 4rem;
  }

  .toc {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-rotator__item {
    transform: none;
  }
}
