:root {
  --bg: #0e0f12;
  --surface: #17181c;
  --surface-strong: #17181c;
  --surface-muted: #121317;
  --line: #2e3036;
  --line-strong: #2e3036;
  --text: #f1f2f4;
  --muted: #9a9ca4;
  --accent: #19b6c8;
  --accent-strong: #0ea5b7;
  --accent-soft: rgba(25, 182, 200, 0.14);
  --accent-line: rgba(25, 182, 200, 0.35);
  --on-accent: #07171a;
  --gold: #f5c86a;
  --shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
  --glow: rgba(25, 182, 200, 0.2);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Segoe UI Variable Text",
    "Segoe UI",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.4;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #080b10d9;
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand > span:last-child > span {
  color: var(--accent);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.brand-mark svg {
  width: 18px;
  fill: none;
  stroke: var(--accent);
}
.main-nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}
.main-nav a:hover,
.footer a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--r-sm);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--accent-soft);
  background: var(--accent-strong);
}
.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}
.button-ghost:hover {
  background: var(--surface-strong);
  box-shadow: none;
}
.button-small {
  padding: 10px 15px;
  font-size: 11px;
}
.menu-toggle {
  display: none;
  background: 0;
  border: 0;
  color: var(--text);
  padding: 8px;
}
.menu-toggle i {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--text);
  margin: 4px;
}
.hero {
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}
.eyebrow b {
  font-size: 13px;
}
.hero h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 1.06;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.2vw, 70px);
  margin: 22px 0;
}
.hero h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  max-width: 555px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.hero-note strong {
  display: block;
  font-size: 12px;
}
.hero-note small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.avatars {
  display: flex;
}
.avatars img,
.avatars b {
  width: 29px;
  height: 29px;
  margin-left: -7px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  object-fit: cover;
}
.avatars img:first-child {
  margin-left: 0;
}
.avatars b {
  display: grid;
  place-items: center;
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 12px;
}
.hero-visual {
  min-height: 385px;
  display: grid;
  place-items: center;
  position: relative;
}
.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 67%);
}
.live-order {
  position: relative;
  width: min(100%, 400px);
  padding: 23px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  box-shadow: 0 22px 70px #0008;
  transform: rotate(2deg);
}
.live-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.live-top time {
  margin-left: auto;
  letter-spacing: 0;
  font-weight: 500;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.live-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 23px 0 20px;
}
.channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 21px;
}
.live-channel strong {
  display: block;
  font-size: 13px;
}
.live-channel small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.live-check {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.progress-label b {
  color: var(--accent);
}
.progress {
  height: 7px;
  margin: 10px 0 13px;
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  overflow: hidden;
}
.progress i {
  display: block;
  height: 100%;
  border-radius: var(--r-sm);
  background: var(--accent);
}
.live-count strong {
  font-size: 27px;
  letter-spacing: -0.06em;
}
.live-count span {
  color: var(--muted);
  font-size: 11px;
}
.live-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.live-tags span {
  padding: 7px 9px;
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 9px;
}
.float-badge {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-md);
  background: var(--surface);
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px #0006;
}
.float-badge b {
  color: var(--accent);
  font-size: 20px;
}
.float-badge span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.1;
}
.metrics {
  border-block: 1px solid var(--line);
  background: var(--surface-muted);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metrics-grid > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  border-right: 1px solid var(--line);
}
.metrics-grid > div:first-child {
  border-left: 1px solid var(--line);
}
.metrics b {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: -0.05em;
}
.metrics span {
  color: var(--muted);
  font-size: 10px;
}
.section {
  padding: 76px 0;
}
.section-muted {
  background: var(--surface-muted);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
}
.section-heading h2,
.center-heading h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(31px, 4vw, 49px);
  margin: 14px 0 0;
}
.section-heading > p {
  max-width: 340px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}
.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-lg);
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 14px;
}
.order-form {
  padding: 28px;
}
.form-step {
  padding: 0 0 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.form-step:last-child {
  padding-bottom: 0;
  margin: 0;
  border: 0;
}
.step-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin: 0 0 14px;
}
.service-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-chip,
.presets button {
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 11px;
  transition: 0.18s;
}
.service-chip:hover,
.service-chip.active,
.presets button:hover,
.presets button.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.step-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-title output {
  min-width: 108px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  font-size: 17px;
  font-weight: 800;
  text-align: right;
}
.range {
  display: block;
  width: 100%;
  height: 5px;
  margin: 22px 0 8px;
  accent-color: var(--accent);
}
.range-limits {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}
.presets {
  display: flex;
  gap: 7px;
  margin-top: 15px;
}
.presets button {
  padding: 8px 10px;
  font-size: 10px;
}
.link-field {
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-muted);
}
.link-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.link-field span {
  color: var(--muted);
  font-size: 12px;
}
.link-field input {
  min-width: 0;
  flex: 1;
  padding: 14px 7px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}
.link-field b {
  color: var(--accent);
  opacity: 0;
}
.link-field.valid b {
  opacity: 1;
}
.link-field.invalid {
  border-color: #d77d7d;
}
.link-field.invalid b {
  color: #d77d7d;
  opacity: 1;
}
.form-step > small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 9px;
}
.order-summary {
  position: sticky;
  top: 96px;
  height: max-content;
  padding: 25px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.summary-row span {
  color: var(--muted);
}
.summary-row strong {
  text-align: right;
}
.guarantee-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 19px 0;
  padding: 13px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-sm);
  background: var(--accent-soft);
}
.guarantee-line > span {
  color: var(--accent);
  font-size: 19px;
}
.guarantee-line strong,
.guarantee-line small {
  display: block;
}
.guarantee-line strong {
  font-size: 11px;
}
.guarantee-line small {
  color: var(--accent);
  font-size: 10px;
  margin-top: 2px;
}
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 19px 0 15px;
}
.total span {
  color: var(--muted);
  font-size: 11px;
}
.total strong {
  font-size: 30px;
  letter-spacing: -0.06em;
}
.button-wide {
  width: 100%;
}
.payment-note {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
  line-height: 1.5;
  margin-top: 12px;
}
.center-heading {
  text-align: center;
  max-width: 670px;
  margin: 0 auto 38px;
}
.center-heading .eyebrow {
  justify-content: center;
}
.center-heading > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 15px auto 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  padding: 21px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 17px;
}
.feature h3 {
  font-size: 14px;
  margin: 18px 0 7px;
}
.feature p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}
.carousel-controls {
  display: flex;
  gap: 8px;
}
.carousel-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}
.carousel-controls button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.reviews-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 17px;
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) transparent;
}
.review {
  flex: 0 0 280px;
  padding: 20px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-head img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.review-head div {
  flex: 1;
}
.review-head strong,
.review-head small {
  display: block;
}
.review-head strong {
  font-size: 12px;
}
.review-head small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}
.review-head > b {
  color: var(--accent);
  font-size: 12px;
}
.review p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  min-height: 76px;
  margin: 18px 0 14px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 11px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.faq-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 300px;
  font-size: 13px;
  line-height: 1.65;
  margin: 20px 0;
}
.text-link {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  transition: 0.2s;
}
.faq-list details[open] summary span {
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 650px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.final-cta {
  border-block: 1px solid var(--line);
  background: linear-gradient(100deg, #101b20, var(--surface-muted));
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 65px 0;
}
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
}
.footer {
  padding: 48px 0 19px;
  background: var(--surface-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.footer h4 {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-grid > div > a:not(.brand) {
  color: var(--muted);
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 9px;
}
.footer-bottom b {
  color: #d66b79;
}
@media (max-width: 900px) {
  .hero-grid {
    gap: 28px;
  }
  .main-nav {
    gap: 15px;
  }
  .header-cta {
    display: none;
  }
  .order-layout {
    grid-template-columns: 1fr 290px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    gap: 45px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    height: 65px;
  }
  .header-inner {
    gap: 0;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    padding: 17px 16px;
    gap: 17px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 13px;
  }
  .hero {
    padding: 64px 0 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-visual {
    min-height: 330px;
    margin-top: 5px;
  }
  .live-order {
    transform: none;
  }
  .float-badge {
    right: 0;
    bottom: 2px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid > div {
    justify-content: flex-start;
    padding: 17px 9px;
  }
  .metrics-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .section {
    padding: 62px 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 17px;
  }
  .order-layout {
    display: flex;
    flex-direction: column;
  }
  .order-form {
    padding: 21px 17px;
  }
  .order-summary {
    position: static;
    padding: 21px 17px;
  }
  .service-chips {
    gap: 6px;
  }
  .service-chip {
    padding: 10px 9px;
    font-size: 10px;
  }
  .presets {
    flex-wrap: wrap;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature {
    padding: 18px;
  }
  .section-heading h2,
  .center-heading h2 {
    font-size: 35px;
  }
  .center-heading {
    margin-bottom: 30px;
  }
  .carousel-controls {
    margin-top: 20px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .final-cta-inner {
    display: block;
    padding: 52px 0;
  }
  .final-cta .button {
    margin-top: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: grid;
    line-height: 1.5;
    margin-top: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.step-title input {
  width: 125px;
  min-width: 0;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  text-align: right;
  outline: 0;
}
.step-title input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon-send {
  width: 18px;
  height: 18px;
}
.eyebrow-dot {
  width: 13px;
  height: 13px;
  margin-right: 2px;
}
.brand-mark svg {
  stroke: var(--accent);
}
.button .icon {
  width: 16px;
  height: 16px;
}
.feature-icon .icon {
  width: 19px;
  height: 19px;
}
.review-head > b .icon {
  width: 15px;
  height: 15px;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.stars .star {
  width: 14px;
  height: 14px;
}
.table-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
}
.table-check .icon {
  width: 14px;
  height: 14px;
}
.faq-plus {
  transition: transform 0.2s;
}
.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}
.section {
  padding-block: 62px;
}
.hero {
  padding: 54px 0 50px;
}
.hero h1 {
  max-width: 600px;
  font-size: clamp(34px, 5vw, 54px);
}
.section-heading h2,
.center-heading h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
}
.center-heading {
  text-align: left;
  max-width: none;
  margin: 0 0 30px;
}
.center-heading .eyebrow {
  justify-content: flex-start;
}
.center-heading > p:last-child {
  margin-left: 0;
}
.feature {
  padding: 17px;
}
.feature h3 {
  margin-top: 13px;
}
.order-form {
  padding: 23px;
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quantity-controls input {
  width: 142px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-muted);
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  text-align: right;
  outline: 0;
}
.quantity-controls input:focus {
  border-color: var(--accent);
}
.quantity-controls .presets {
  margin: 0;
  flex-wrap: wrap;
}
.quantity-step .range {
  margin-top: 18px;
}
.range-limits {
  opacity: 0.65;
}
.carousel-controls .icon {
  width: 18px;
  height: 18px;
}
.footer-bottom .icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
}
@media (max-width: 640px) {
  .hero {
    padding: 42px 0 38px;
  }
  .section {
    padding-block: 54px;
  }
  .quantity-controls {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .quantity-controls input {
    width: 132px;
  }
  .quantity-controls .presets {
    flex: 1;
    min-width: 180px;
  }
  .quantity-step .range {
    margin-top: 16px;
  }
}
.metrics b {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.metrics-grid {
  min-width: 0;
}
.metrics-grid > div {
  min-width: 0;
}
.metrics span {
  white-space: nowrap;
}
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  filter: saturate(0.45);
  box-shadow: none;
  transform: none;
}
@media (max-width: 899px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .hero-copy {
    max-width: 690px;
  }
  .hero-visual {
    min-height: 330px;
    margin-top: 2px;
  }
}
@media (max-width: 640px) {
  .metrics b {
    font-size: 19px;
  }
  .metrics span {
    font-size: 9px;
  }
  .metrics-grid > div {
    gap: 6px;
    padding-inline: 8px;
  }
}
.hero h1 {
  max-width: 640px;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 18px 0;
}
.hero h1 em {
  font-weight: 600;
}
.hero h1,
h2 {
  letter-spacing: -0.04em;
}
.section-heading h2,
.center-heading h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.main-nav {
  font-size: 15px;
  font-weight: 550;
}
.button {
  border-radius: var(--r-md);
  font-weight: 600;
}
.button-small {
  font-size: 13px;
}
.hero-subtitle,
.section-heading > p,
.center-heading > p:last-child,
.feature p,
.review p,
.faq-intro p:not(.eyebrow),
.faq-list details p,
.final-cta p:not(.eyebrow),
.footer p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
}
.hero-note small,
.metrics span,
.payment-note,
.form-step > small,
.summary-row span,
.guarantee-line small,
.footer-grid > div > a:not(.brand),
.footer-bottom {
  font-weight: 400;
}
.step-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.live-top,
.progress-label,
.live-tags span,
.summary-row,
.payment-note {
  font-weight: 400;
}
.feature-icon {
  border-radius: var(--r-sm);
}
.live-order {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.float-badge {
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}
.card {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.final-cta {
  background: linear-gradient(100deg, var(--surface), var(--surface-muted));
}
