:root {
  --bg: #070807;
  --panel: rgba(13, 16, 15, 0.78);
  --panel-strong: rgba(17, 21, 19, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f7fbf7;
  --muted: #aeb9b3;
  --muted-2: #7f8c86;
  --cyan: #35e6ff;
  --mint: #51f2a7;
  --ruby: #ff5c7a;
  --amber: #ffd166;
  --ink: #050605;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-height: 100%;
  background: #070807;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  background: linear-gradient(135deg, #080908 0%, #0d0f0d 42%, #100d0c 72%, #070807 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(53, 230, 255, 0.12), transparent 30%),
    linear-gradient(245deg, transparent 20%, rgba(81, 242, 167, 0.08) 47%, transparent 76%),
    linear-gradient(18deg, transparent 0%, rgba(255, 92, 122, 0.07) 54%, transparent 88%);
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.site-bg::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.site-bg::after {
  background:
    linear-gradient(100deg, transparent 0%, rgba(53, 230, 255, 0.09) 38%, transparent 39%),
    linear-gradient(76deg, transparent 0%, rgba(255, 209, 102, 0.07) 64%, transparent 65%);
  opacity: 0.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 70px;
  margin: 12px auto 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 7, 0.76);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(81, 242, 167, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--cyan) 56%, var(--amber));
  box-shadow: 0 0 28px rgba(81, 242, 167, 0.2);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.header-nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-nav a:hover,
.header-action:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.header-action {
  color: var(--text);
  border: 1px solid rgba(53, 230, 255, 0.28);
  background: rgba(53, 230, 255, 0.08);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 54px;
  min-height: 78svh;
  padding-top: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mint);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  font-size: 68px;
  font-weight: 800;
}

h2 {
  font-size: 44px;
  font-weight: 800;
}

h3 {
  font-size: 25px;
  font-weight: 800;
}

p {
  line-height: 1.75;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(110deg, var(--mint), var(--cyan) 56%, var(--amber));
  box-shadow: 0 18px 48px rgba(53, 230, 255, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(81, 242, 167, 0.2);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary:hover {
  border-color: rgba(255, 209, 102, 0.44);
  box-shadow: 0 18px 46px rgba(255, 92, 122, 0.12);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
}

.hero-console,
.order-shell,
.flow-panel,
.benefit-item,
.step-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)), var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(53, 230, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent 46%, rgba(255, 92, 122, 0.12));
  opacity: 0.8;
  pointer-events: none;
}

.hero-console > * {
  position: relative;
  z-index: 1;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: var(--muted);
  font-size: 14px;
}

.console-header strong {
  margin-left: auto;
  color: var(--mint);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 0 0 18px rgba(81, 242, 167, 0.8);
}

.console-preview {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.console-preview::after,
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.65) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
}

.preview-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  min-width: 164px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 6, 5, 0.7);
  backdrop-filter: blur(12px);
}

.preview-overlay span,
.preview-overlay strong {
  display: block;
}

.preview-overlay span {
  color: var(--muted);
  font-size: 13px;
}

.preview-overlay strong {
  margin-top: 4px;
  font-size: 28px;
}

.console-products,
.console-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.console-product,
.console-metrics div {
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.console-product:hover,
.console-product.is-active {
  transform: translateY(-2px);
  border-color: rgba(53, 230, 255, 0.5);
  background: rgba(53, 230, 255, 0.1);
}

.console-product span,
.console-product strong,
.console-metrics span,
.console-metrics strong {
  display: block;
}

.console-product span,
.console-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.console-product strong {
  margin-top: 8px;
  line-height: 1.35;
}

.console-metrics {
  grid-template-columns: repeat(3, 1fr);
}

.console-metrics div {
  min-height: 74px;
}

.console-metrics strong {
  margin-top: 7px;
  font-size: 19px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)), var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.product-card-steam:hover {
  box-shadow: 0 28px 82px rgba(53, 230, 255, 0.14), var(--shadow);
}

.product-card-apple:hover {
  box-shadow: 0 28px 82px rgba(255, 209, 102, 0.14), var(--shadow);
}

.product-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 34px;
}

.product-kicker,
.form-tag,
.flow-index,
.modal-status {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--mint);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.product-card-apple .product-kicker {
  color: var(--amber);
}

.product-content p,
.flow-panel p,
.benefit-item p,
.step-item p {
  margin: 0;
  color: var(--muted);
}

.quick-list,
.amount-row,
.denom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.quick-list button,
.amount-row button,
.denom-row button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-list button:hover,
.amount-row button:hover,
.denom-row button:hover,
.amount-row button.is-active,
.denom-row button.is-active {
  transform: translateY(-1px);
  border-color: rgba(81, 242, 167, 0.52);
  background: rgba(81, 242, 167, 0.1);
}

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

.flow-panel {
  padding: 30px;
}

.flow-panel h3 {
  margin-top: 18px;
}

.flow-panel p {
  margin-top: 14px;
}

.flow-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.flow-panel li {
  position: relative;
  padding-left: 22px;
}

.flow-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--cyan);
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 0;
  overflow: clip;
}

.order-main {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.product-tab {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-tab.is-active {
  color: var(--ink);
  border-color: rgba(81, 242, 167, 0.45);
  background: linear-gradient(115deg, var(--mint), var(--cyan));
}

.order-form {
  display: none;
  gap: 18px;
}

.order-form.is-active {
  display: grid;
}

.order-empty {
  display: none;
  gap: 14px;
  align-content: start;
  min-height: 360px;
  padding: 18px 0 4px;
}

.order-empty.is-active {
  display: grid;
}

.order-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.form-intro {
  margin-bottom: 2px;
}

.form-intro h3 {
  margin-top: 16px;
}

.form-intro p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.field span,
.denom-group legend,
.quantity-control > span {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field input {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover,
.field input:focus,
.field textarea:focus {
  border-color: rgba(53, 230, 255, 0.55);
  background: rgba(53, 230, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(53, 230, 255, 0.08);
}

.field small,
.denom-group small {
  min-height: 18px;
  color: var(--ruby);
  font-size: 13px;
}

.field.has-error input,
.field.has-error textarea,
.denom-group.has-error {
  border-color: rgba(255, 92, 122, 0.8);
}

.denom-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.quantity-control div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.quantity-control button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.quantity-control strong {
  min-width: 24px;
  text-align: center;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.btn[disabled],
button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.order-summary {
  position: sticky;
  top: 96px;
  align-self: start;
  min-width: 0;
  padding: 28px;
}

.summary-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.summary-topline strong {
  padding: 6px 9px;
  border-radius: var(--radius);
  color: var(--mint);
  background: rgba(81, 242, 167, 0.1);
}

.order-summary h3 {
  margin-top: 22px;
}

.order-summary p {
  margin: 12px 0 0;
  color: var(--muted);
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 26px 0;
}

.summary-list div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.summary-list dt {
  color: var(--muted-2);
}

.summary-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(81, 242, 167, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(81, 242, 167, 0.12), rgba(53, 230, 255, 0.08)), rgba(255, 255, 255, 0.04);
}

.summary-total span {
  color: var(--muted);
}

.summary-total strong {
  font-size: 34px;
}

.summary-submit {
  width: 100%;
}

.summary-note {
  font-size: 13px;
}

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

.benefit-item {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 242, 167, 0.36);
  background: linear-gradient(145deg, rgba(81, 242, 167, 0.08), rgba(255, 255, 255, 0.04)), var(--panel);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(53, 230, 255, 0.32);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(53, 230, 255, 0.08);
  font-weight: 900;
}

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

.benefit-item p {
  margin-top: 12px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 230, 255, 0.45), rgba(255, 209, 102, 0.36), transparent);
}

.step-item {
  position: relative;
  padding: 24px;
}

.step-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  border: 1px solid rgba(81, 242, 167, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  font-weight: 900;
}

.step-item h3 {
  font-size: 21px;
}

.step-item p {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--cyan);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 34px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

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

.footer-contact {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-contact a {
  color: var(--mint);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact small {
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: var(--muted);
  font-size: 14px;
}

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

.mobile-total-bar {
  position: fixed;
  left: 12px;
  right: auto;
  bottom: 12px;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(366px, calc(100% - 24px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 7, 0.88);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}

.mobile-total-bar span,
.mobile-total-bar strong {
  display: block;
}

.mobile-total-bar > div {
  min-width: 0;
}

.mobile-total-bar span {
  color: var(--muted);
  font-size: 12px;
}

.mobile-total-bar strong {
  margin-top: 3px;
}

.mobile-total-bar .btn {
  flex: 0 0 112px;
  min-height: 44px;
  padding: 10px 8px;
  white-space: nowrap;
}

.checkout-modal {
  width: min(520px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: transparent;
  box-shadow: var(--shadow);
}

.checkout-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(53, 230, 255, 0.1), transparent 34%),
    linear-gradient(225deg, rgba(255, 92, 122, 0.09), transparent 42%),
    var(--panel-strong);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
}

.modal-content h2 {
  margin-top: 18px;
  padding-right: 34px;
  font-size: 34px;
}

.modal-content p {
  color: var(--muted);
}

.modal-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(81, 242, 167, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.modal-summary strong {
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    font-size: 58px;
  }

  .hero-console {
    max-width: 720px;
  }

  .product-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  }

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

  .steps::before {
    display: none;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 270px;
  }

  .order-shell {
    grid-template-columns: 1fr;
  }

  .order-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .order-summary {
    position: static;
  }

  .mobile-total-bar {
    display: none;
  }

  .mobile-total-bar.is-visible {
    display: flex;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    margin-top: 8px;
  }

  .header-action {
    display: none;
  }

  .header-nav a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .hero {
    gap: 24px;
    padding-top: 38px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-actions .btn,
  .product-content .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .hero-lead {
    max-width: 330px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-row {
    display: none;
  }

  .console-products,
  .console-metrics,
  .benefit-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .console-metrics {
    display: none;
  }

  .console-product {
    min-height: 72px;
    padding: 12px;
  }

  .console-preview {
    min-height: 170px;
  }

  .product-content,
  .flow-panel,
  .order-main,
  .order-summary,
  .benefit-item,
  .step-item,
  .modal-content {
    padding: 22px;
  }

  .product-tabs {
    grid-template-columns: 1fr;
  }

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

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .summary-list dd {
    text-align: left;
  }

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

  .summary-total strong {
    font-size: 30px;
  }
}
