:root {
  --font-sans: Inter, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --fusion-bg: #0d1030;
  --fusion-bg-deep: #080a17;
  --fusion-panel: #151824;
  --fusion-panel-raised: #171b2b;
  --fusion-line: rgba(255, 255, 255, 0.13);
  --fusion-muted: #a8adbf;
  --fusion-orange: #ff6332;
  --fusion-blue: #7f99ff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fusion-bg-deep);
  color: #f5f6fb;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font-sans);
}

button,
input {
  font-size: inherit;
}

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 7px;
  background: #fff;
  color: #0d1030;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.fusion-site {
  min-height: 100vh;
  overflow-x: clip;
  background: var(--fusion-bg);
  color: #f5f6fb;
}

.fusion-site a:focus-visible,
.fusion-site button:focus-visible,
.fusion-site input:focus-visible,
.fusion-site summary:focus-visible {
  outline: 2px solid var(--fusion-blue);
  outline-offset: 4px;
}

.fusion-header {
  position: relative;
  z-index: 10;
  width: min(1500px, 100%);
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
  padding-inline: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #11143d;
}

.fusion-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #11143d;
}

.fusion-brand,
.footer-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.fusion-logo {
  position: relative;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--fusion-orange);
  border-radius: 50%;
}

.fusion-logo::before,
.fusion-logo::after,
.fusion-logo i {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.fusion-logo::before {
  width: 5px;
  height: 5px;
  left: 5px;
  top: 7px;
}

.fusion-logo::after {
  width: 5px;
  height: 5px;
  right: 5px;
  bottom: 6px;
}

.fusion-logo i {
  width: 4px;
  height: 4px;
}

.fusion-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #c2c5d3;
  font-size: 13px;
  font-weight: 550;
}

.fusion-nav a,
.fusion-login {
  transition: color 160ms ease;
}

.fusion-nav a:hover,
.fusion-login:hover {
  color: #fff;
}

.fusion-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #c2c5d3;
  font-size: 13px;
  font-weight: 620;
}

.fusion-register {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--fusion-orange);
  border-radius: 10px;
  background: var(--fusion-orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 83, 35, 0.16);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.fusion-register:hover {
  transform: translateY(-1px);
  border-color: #ff7a50;
  background: #ff7a50;
}

.fusion-page {
  min-height: calc(100vh - 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(88, 103, 255, 0.12), transparent 31%),
    linear-gradient(128deg, #11143d 0%, #0d1030 43%, #080a17 100%);
}

.fusion-shell {
  width: min(1500px, 100%);
  min-height: calc(100vh - 80px);
  margin-inline: auto;
  padding: 0 34px 30px;
}

.fusion-hero {
  min-height: calc(100vh - 162px);
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(550px, 1.1fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
  padding: clamp(62px, 7vh, 92px) clamp(8px, 2.5vw, 36px) 56px;
}

.fusion-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.fusion-eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9bdcf;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fusion-eyebrow {
  width: fit-content;
  margin-bottom: 27px;
}

.fusion-eyebrow > span,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--fusion-orange);
  box-shadow: 0 0 17px rgba(255, 99, 50, 0.55);
}

.fusion-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 5.5vw, 84px);
  font-weight: 580;
  line-height: 0.97;
  letter-spacing: -0.066em;
}

.fusion-copy h1 > span {
  display: block;
  margin-top: 8px;
  color: var(--fusion-blue);
}

.fusion-lead {
  max-width: 555px;
  margin: 29px 0 0;
  color: #aeb3c7;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.fusion-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.fusion-primary,
.fusion-secondary,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 660;
}

.fusion-primary {
  min-width: 195px;
  justify-content: space-between;
  border: 1px solid var(--fusion-orange);
  background: var(--fusion-orange);
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 83, 35, 0.17);
  transition: transform 160ms ease, background 160ms ease;
}

.fusion-primary:hover {
  transform: translateY(-2px);
  background: #ff7548;
}

.fusion-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #e9eaf0;
  transition: background 160ms ease, border-color 160ms ease;
}

.fusion-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
}

.fusion-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 39px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #c5c8d5;
  font-size: 11px;
  list-style: none;
}

.fusion-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fusion-facts li > span {
  color: #67d89b;
  font-size: 13px;
}

.hero-pricing-visual {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-inline: auto;
  padding: 45px 0 38px;
}

.orange-halo {
  position: absolute;
  z-index: -1;
  width: min(620px, 92%);
  height: 430px;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 58%,
    rgba(255, 107, 46, 0.95) 0%,
    rgba(255, 73, 18, 0.58) 27%,
    rgba(255, 73, 18, 0.14) 52%,
    transparent 71%
  );
  filter: blur(2px);
  opacity: 0.68;
}

.hero-price-module {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: var(--fusion-panel);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.43);
}

.hero-price-module::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 126, 73, 0.85), transparent);
}

.price-module-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 23px;
}

.price-module-header > div {
  display: grid;
  gap: 5px;
}

.price-module-header > div > span,
.currency-label {
  color: #808596;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-module-header h2 {
  margin: 0;
  color: #f7f7fb;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 15px 15px;
}

.product-tab {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: #10131d;
  color: #bdc1ce;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
}

.product-tab[data-active="true"] {
  border-color: var(--fusion-orange);
  background: var(--fusion-orange);
  color: #fff;
}

.product-tab > span:first-child {
  font-size: 12px;
  font-weight: 620;
}

.tab-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.tab-price strong {
  font-family: var(--font-mono);
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 520;
  line-height: 0.85;
  letter-spacing: -0.095em;
  font-variant-numeric: tabular-nums;
}

.tab-price small {
  color: currentColor;
  font-family: var(--font-mono);
  font-size: 9px;
  opacity: 0.72;
}

.module-calculator {
  padding: 22px 23px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #11141e;
}

.traffic-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.traffic-heading label,
.module-total > div > span {
  color: #9da2b2;
  font-size: 11px;
}

.traffic-heading output {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.06em;
}

.traffic-heading output > span:last-child {
  color: #8d92a2;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.traffic-control input[type="range"] {
  width: 100%;
  height: 21px;
  margin: 18px 0 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.traffic-control input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--fusion-orange) 0 var(--range-progress),
    #383c4b var(--range-progress) 100%
  );
}

.traffic-control input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -8px;
  appearance: none;
  border: 3px solid var(--fusion-panel);
  border-radius: 50%;
  background: #ff7042;
  box-shadow: 0 0 0 1px #ff7042;
}

.traffic-control input[type="range"]::-moz-range-track {
  height: 3px;
  border-radius: 99px;
  background: #383c4b;
}

.traffic-control input[type="range"]::-moz-range-progress {
  height: 3px;
  border-radius: 99px;
  background: var(--fusion-orange);
}

.traffic-control input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 3px solid var(--fusion-panel);
  border-radius: 50%;
  background: #ff7042;
}

.traffic-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  color: #696f80;
  font-family: var(--font-mono);
  font-size: 8px;
}

.module-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-total > div {
  display: grid;
  gap: 6px;
}

.module-total small {
  color: #6f7484;
  font-family: var(--font-mono);
  font-size: 8px;
}

.module-total > strong {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 39px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.08em;
  font-variant-numeric: tabular-nums;
}

.module-cta {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  color: #10121a;
  font-size: 12px;
  font-weight: 680;
  transition: background 160ms ease, transform 160ms ease;
}

.module-cta:hover {
  transform: translateY(-1px);
  background: #ffede7;
}

.module-footer {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777c8c;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-footer > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.module-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67d89b;
}

.fusion-ticker {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f94a8;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fusion-ticker i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--fusion-orange);
}

.content-sections {
  background:
    radial-gradient(circle at 84% 16%, rgba(88, 103, 255, 0.1), transparent 18%),
    radial-gradient(circle at 12% 54%, rgba(255, 99, 50, 0.045), transparent 18%),
    linear-gradient(180deg, var(--fusion-bg) 0%, #0b0e29 54%, var(--fusion-bg-deep) 100%);
}

.section-shell {
  width: min(1500px, 100%);
  margin-inline: auto;
  padding-inline: 34px;
}

.content-section {
  position: relative;
  padding-block: clamp(94px, 9vw, 138px);
  border-top: 1px solid var(--fusion-line);
}

.product-comparison.content-section {
  padding-top: clamp(80px, 7vw, 108px);
}

.section-kicker {
  margin: 0 0 28px;
  font-size: 9px;
}

.section-kicker::before {
  width: 7px;
  height: 7px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  column-gap: clamp(50px, 10vw, 160px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.coverage-copy h2,
.developer-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  color: #f5f6fb;
  font-size: clamp(40px, 4.25vw, 64px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.064em;
}

.section-heading > p:last-child,
.coverage-copy > p,
.developer-copy > p,
.faq-heading > p:last-child {
  margin: 0;
  color: var(--fusion-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.comparison-card,
.coverage-console,
.dashboard-preview {
  overflow: hidden;
  border: 1px solid var(--fusion-line);
  border-radius: 22px;
  background: var(--fusion-panel);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.23);
}

.comparison-card {
  position: relative;
  padding: clamp(30px, 4vw, 55px);
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--fusion-orange);
}

.comparison-card + .comparison-card::before {
  background: #718cff;
}

.comparison-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.comparison-card h3 {
  max-width: 250px;
  margin: 0;
  color: #f5f6fb;
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.055em;
}

.comparison-price {
  margin: 0;
  white-space: nowrap;
}

.comparison-price strong {
  color: #ff7045;
  font-family: var(--font-mono);
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.095em;
}

.comparison-card + .comparison-card .comparison-price strong {
  color: var(--fusion-blue);
}

.comparison-price span {
  color: #8990a4;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.comparison-card > p {
  max-width: 530px;
  min-height: 48px;
  margin: 41px 0;
  color: #8990a4;
  font-size: 13px;
  line-height: 1.6;
}

.comparison-details {
  margin: 0 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.comparison-details > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 22px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
  line-height: 1.45;
}

.comparison-details dt {
  color: #8990a4;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-details dd {
  margin: 0;
  color: #d7dae4;
}

.comparison-action {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #f5f6fb;
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.comparison-action::after {
  content: "↗";
}

.comparison-action:hover {
  border-color: var(--fusion-orange);
  background: rgba(255, 99, 50, 0.1);
}

.coverage-layout,
.developer-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.coverage-copy h2 {
  color: var(--fusion-blue);
  font-family: var(--font-mono);
  font-size: clamp(64px, 7.2vw, 104px);
  font-weight: 480;
  line-height: 0.96;
  letter-spacing: -0.105em;
}

.coverage-copy > p:last-child {
  max-width: 460px;
  margin-top: 30px;
}

.coverage-console-heading {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-console-heading > div {
  display: grid;
  gap: 5px;
}

.coverage-console-heading span,
.coverage-console-heading > span {
  color: #858ca0;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coverage-console-heading strong {
  color: #f5f6fb;
  font-size: 17px;
  font-weight: 630;
}

.coverage-fields {
  margin: 0;
}

.coverage-fields > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 23px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.coverage-fields dt {
  color: var(--fusion-blue);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-fields dd {
  margin: 0;
  color: #d6d9e3;
  font-size: 13px;
}

.coverage-console-note {
  margin: 0;
  padding: 17px 22px;
  color: #858ca0;
  font-size: 10px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item,
.code-example,
.use-case-card {
  border: 1px solid var(--fusion-line);
  border-radius: 16px;
  background: var(--fusion-panel);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.23);
}

.step-item {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px 26px 32px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 112, 69, 0.5);
  border-radius: 7px;
  color: #ff7045;
  font-family: var(--font-mono);
  font-size: 9px;
}

.step-item h3 {
  margin: 0 0 13px;
  color: #f5f6fb;
  font-size: 25px;
  font-weight: 610;
  letter-spacing: -0.045em;
}

.step-item p {
  margin: 0;
  color: #9299ac;
  font-size: 12px;
  line-height: 1.55;
}

.dashboard-preview-heading {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--fusion-panel-raised);
  color: #f5f6fb;
}

.dashboard-preview-heading > div {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.dashboard-preview-heading span,
.dashboard-preview-heading > span {
  color: #848b9f;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-preview-heading strong {
  font-size: 18px;
  font-weight: 620;
}

.dashboard-preview-nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-preview-nav span {
  flex: 1;
  padding: 15px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  color: #858ca0;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.dashboard-preview-nav span:last-child {
  border-right: 0;
}

.dashboard-preview-nav span[aria-current="page"] {
  background: var(--fusion-orange);
  color: #fff;
}

.dashboard-preview-content {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}

.dashboard-preview-content > section {
  padding: clamp(25px, 4vw, 50px);
}

.dashboard-preview-content > section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-preview-content h3 {
  margin: 0 0 32px;
  color: #f5f6fb;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.dashboard-network-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-network-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-network-row > div {
  display: grid;
  gap: 6px;
}

.dashboard-network-row strong {
  color: #f5f6fb;
  font-size: 13px;
}

.dashboard-network-row span,
.dashboard-network-row > span {
  color: #8e95a8;
  font-family: var(--font-mono);
  font-size: 9px;
}

.dashboard-access-summary dl {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-access-summary dl > div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-access-summary dt {
  margin-bottom: 7px;
  color: var(--fusion-blue);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-access-summary dd {
  margin: 0;
  color: #8e95a8;
  font-size: 11px;
}

.developer-copy > p:last-child {
  max-width: 500px;
  margin-top: 30px;
  color: #9299ac;
}

.code-example {
  margin: 0;
  overflow: hidden;
  background: #121622;
}

.code-example figcaption {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #81889b;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.code-example pre {
  min-height: 190px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 28px;
  overflow-x: auto;
  color: var(--fusion-blue);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1.7;
}

.code-example code {
  font: inherit;
}

.code-example > p {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #81889b;
  font-size: 10px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.use-case-card {
  min-height: 240px;
  padding: 29px 24px;
}

.use-case-card h3 {
  margin: 0 0 65px;
  color: #f5f6fb;
  font-size: 20px;
  font-weight: 610;
  letter-spacing: -0.04em;
}

.use-case-card p {
  margin: 0;
  color: #9299ac;
  font-size: 11px;
  line-height: 1.6;
}

.responsible-use-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 30px;
  margin-top: 36px;
  padding: 23px 25px;
  border: 1px solid rgba(255, 112, 69, 0.44);
  border-radius: 16px;
  background: rgba(255, 99, 50, 0.075);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.responsible-use-note strong {
  color: #ff7045;
  font-size: 15px;
}

.responsible-use-note p {
  max-width: 720px;
  margin: 0;
  color: #b8bdca;
  font-size: 12px;
  line-height: 1.55;
}

.faq-heading h2 {
  max-width: 590px;
}

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

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

.faq-item summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 3px;
  color: #f5f6fb;
  font-size: 14px;
  font-weight: 610;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #ff7045;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item > p {
  max-width: 650px;
  margin: -4px 0 28px;
  color: #9ba1b2;
  font-size: 12px;
  line-height: 1.65;
}

.final-cta {
  padding-block: clamp(78px, 8vw, 112px);
  border-top: 1px solid var(--fusion-line);
}

.final-cta-content {
  width: min(1432px, calc(100% - 68px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  padding: clamp(40px, 5vw, 72px);
  border: 1px solid var(--fusion-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 99, 50, 0.12), transparent 27%),
    var(--fusion-panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta-content > div:first-child > p:last-child {
  margin: 30px 0 0;
  color: #f5f6fb;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.final-cta-actions {
  min-width: 205px;
  display: grid;
  gap: 10px;
}

.final-cta .button {
  width: 100%;
  border: 1px solid var(--fusion-orange);
  background: var(--fusion-orange);
  color: #fff;
  transition: background 160ms ease, border-color 160ms ease;
}

.final-cta .button:hover {
  border-color: #ff7a50;
  background: #ff7a50;
}

.final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f6fb;
}

.final-cta .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 65px 0 25px;
  border-top: 1px solid var(--fusion-line);
  background: var(--fusion-bg-deep);
  color: #f5f6fb;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 70px;
}

.footer-summary {
  display: grid;
  gap: 17px;
}

.footer-brand .fusion-logo {
  width: 27px;
  height: 27px;
}

.footer-summary p {
  max-width: 330px;
  margin: 0;
  color: #7d8496;
  font-size: 11px;
}

.footer-navigation,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-navigation a:hover,
.footer-legal a:hover {
  color: var(--fusion-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--fusion-line);
  color: #7d8496;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auxiliary-site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(circle at 82% 30%, rgba(88, 103, 255, 0.12), transparent 30%),
    linear-gradient(128deg, #11143d 0%, #0d1030 45%, #080a17 100%);
}

.auxiliary-header,
.auxiliary-main,
.auxiliary-footer {
  width: min(1500px, 100%);
  margin-inline: auto;
  padding-inline: 34px;
}

.auxiliary-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--fusion-line);
}

.auxiliary-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c2c5d3;
  font-size: 13px;
  font-weight: 620;
}

.auxiliary-back:hover {
  color: #fff;
}

.auxiliary-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 135px);
}

.auxiliary-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #f5f6fb;
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 580;
  line-height: 0.97;
  letter-spacing: -0.066em;
}

.auxiliary-copy > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--fusion-muted);
  font-size: 15px;
  line-height: 1.7;
}

.auxiliary-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--fusion-line);
  border-radius: 18px;
  background: var(--fusion-panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.auth-preview {
  display: grid;
  gap: 18px;
}

.auth-preview label {
  display: grid;
  gap: 8px;
  color: var(--fusion-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-preview input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--fusion-line);
  border-radius: 10px;
  background: #10131d;
  color: #f5f6fb;
  font-size: 14px;
  opacity: 1;
}

.auth-preview input:disabled {
  color: #c7cad4;
  -webkit-text-fill-color: #c7cad4;
}

.auth-preview button,
.auxiliary-home-cta {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #8f94a8;
  font-size: 12px;
  font-weight: 650;
}

.auth-preview button:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.auth-preview button:not(:disabled) {
  border-color: var(--fusion-orange);
  background: var(--fusion-orange);
  color: #fff;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.auth-preview button:not(:disabled):hover {
  border-color: #ff7a50;
  background: #ff7a50;
  transform: translateY(-1px);
}

.auth-preview input[aria-invalid="true"] {
  border-color: #ff718b;
}

.auth-preview .auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8bdca;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.auth-preview .auth-checkbox input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--fusion-orange);
}

.auth-preview .form-error {
  color: #ff8aa0;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.auth-preview .form-alert {
  padding: 12px 14px;
  border: 1px solid rgba(255, 113, 139, 0.42);
  border-radius: 9px;
  background: rgba(255, 113, 139, 0.08);
  color: #ffb1bf;
  font-size: 11px;
}

.auth-preview .auth-switch {
  color: #9298aa;
  font-size: 11px;
  text-align: center;
}

.auth-switch a {
  color: #fff;
  font-weight: 650;
}

.auth-switch a:hover {
  color: var(--fusion-orange);
}

.register-stack {
  display: grid;
  gap: 28px;
}

.register-stack .auth-preview {
  padding-top: 26px;
  border-top: 1px solid var(--fusion-line);
}

.auth-preview p,
.auxiliary-note {
  margin: 0;
  color: #777d8f;
  font-size: 10px;
  line-height: 1.6;
}

.account-plan-list {
  display: grid;
  gap: 10px;
}

.account-plan-list article {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px;
  border: 1px solid var(--fusion-line);
  border-radius: 13px;
  background: #10131d;
}

.account-plan-list article:first-child {
  border-color: var(--fusion-orange);
}

.account-plan-list span {
  color: #d4d7e1;
  font-size: 13px;
  font-weight: 630;
}

.account-plan-list strong {
  color: #f5f6fb;
  font-family: var(--font-mono);
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 520;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.account-plan-list small {
  color: #858b9e;
  font-size: 9px;
  letter-spacing: 0;
}

.auxiliary-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auxiliary-home-cta {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-inline: 18px;
  border-color: var(--fusion-orange);
  background: var(--fusion-orange);
  color: #fff;
}

.admin-dashboard h2 {
  margin: 14px 0 0;
  color: #f5f6fb;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 580;
  letter-spacing: -0.04em;
}

.admin-dashboard > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--fusion-muted);
  font-size: 13px;
  line-height: 1.65;
}

.admin-dashboard strong {
  color: #f5f6fb;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.admin-metrics > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--fusion-line);
  border-radius: 11px;
  background: #10131d;
}

.admin-metrics dt {
  color: #858b9e;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-metrics dd {
  margin: 9px 0 0;
  overflow-wrap: anywhere;
  color: #f5f6fb;
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.05em;
}

.admin-metrics small {
  color: #858b9e;
  font-size: 8px;
  letter-spacing: 0;
}

.admin-dashboard .admin-privacy-note {
  color: #858b9e;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.admin-actions form,
.admin-actions button,
.admin-actions a {
  width: 100%;
}

.admin-actions button {
  min-height: 50px;
}

.policy-copy h2 {
  margin: 0 0 24px;
  color: #f5f6fb;
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.policy-copy p,
.policy-copy li {
  color: var(--fusion-muted);
  font-size: 13px;
  line-height: 1.75;
}

.policy-copy p {
  margin: 0;
}

.policy-copy p + p {
  margin-top: 18px;
}

.policy-copy ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
}

.auxiliary-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--fusion-line);
  color: #73798a;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

  .fusion-nav {
    display: none;
  }

  .fusion-hero {
    grid-template-columns: 1fr;
    max-width: 850px;
    margin-inline: auto;
  }

  .fusion-copy {
    max-width: 740px;
  }

  .hero-pricing-visual {
    width: 100%;
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .section-heading,
  .coverage-layout,
  .developer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .coverage-layout,
  .developer-layout,
  .faq-layout {
    gap: 55px;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    margin-top: 25px;
  }

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

  .final-cta-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta-actions {
    width: min(100%, 420px);
  }
}

@media (max-width: 860px) {
  .auxiliary-main {
    grid-template-columns: 1fr;
  }

  .auxiliary-panel {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    padding-inline: 16px;
  }

  .content-section {
    padding-block: 78px;
  }

  .comparison-grid,
  .steps-list,
  .use-case-grid,
  .dashboard-preview-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .comparison-card > p {
    min-height: auto;
  }

  .comparison-card-heading {
    display: grid;
  }

  .comparison-price {
    margin-top: 20px;
  }

  .coverage-layout,
  .developer-layout,
  .faq-layout {
    gap: 43px;
  }

  .dashboard-preview-content > section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .dashboard-preview-nav {
    overflow-x: auto;
  }

  .dashboard-preview-nav span {
    min-width: 100px;
  }

  .use-case-card {
    min-height: 185px;
  }

  .use-case-card h3 {
    margin-bottom: 42px;
  }

  .responsible-use-note {
    grid-template-columns: 1fr;
  }

  .final-cta-content {
    width: calc(100% - 32px);
    padding: 30px 22px;
  }

  .footer-content {
    gap: 42px;
    padding-bottom: 55px;
  }

  .footer-bottom {
    display: grid;
    gap: 9px;
  }
}

@media (max-width: 640px) {
  .fusion-header,
  .fusion-shell {
    padding-inline: 15px;
  }

  .fusion-header {
    height: 70px;
  }

  .fusion-login {
    display: none;
  }

  .fusion-register {
    min-height: 39px;
    padding: 0 14px;
  }

  .fusion-shell {
    padding-bottom: 20px;
  }

  .fusion-hero {
    min-height: auto;
    gap: 43px;
    padding: 50px 0 44px;
  }

  .fusion-eyebrow {
    font-size: 8px;
  }

  .fusion-copy h1 {
    font-size: clamp(49px, 14.5vw, 65px);
  }

  .fusion-lead {
    font-size: 15px;
  }

  .fusion-actions {
    display: grid;
  }

  .fusion-primary,
  .fusion-secondary {
    width: 100%;
  }

  .fusion-facts {
    display: grid;
  }

  .hero-pricing-visual {
    padding-top: 28px;
  }

  .orange-halo {
    height: 330px;
  }

  .hero-price-module {
    border-radius: 17px;
  }

  .price-module-header {
    min-height: 76px;
    padding: 15px 17px;
  }

  .product-tabs {
    gap: 6px;
    padding: 0 9px 9px;
  }

  .product-tab {
    min-height: 105px;
    padding: 14px 12px;
    border-radius: 10px;
  }

  .tab-price {
    display: grid;
    gap: 5px;
  }

  .tab-price strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .module-calculator {
    padding: 19px 17px 17px;
  }

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

  .module-footer {
    min-height: 60px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-inline: 17px;
  }

  .fusion-ticker {
    justify-content: flex-start;
  }

  .auxiliary-header,
  .auxiliary-main,
  .auxiliary-footer {
    padding-inline: 16px;
  }

  .auxiliary-header {
    min-height: 70px;
  }

  .auxiliary-back {
    font-size: 0;
  }

  .auxiliary-back span {
    font-size: 18px;
  }

  .auxiliary-main {
    padding-block: 62px;
  }

  .auxiliary-copy h1 {
    font-size: clamp(45px, 15vw, 64px);
  }

  .auxiliary-panel {
    padding: 22px;
  }

  .account-plan-list article,
  .auxiliary-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .auxiliary-footer {
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 480px) {
  .coverage-fields > div,
  .comparison-details > div {
    grid-template-columns: 90px 1fr;
  }

  .admin-actions {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-preview-heading,
  .dashboard-network-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .currency-label {
    display: none;
  }

  .product-tab > span:first-child {
    font-size: 10px;
  }

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

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

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