:root {
  color-scheme: dark;
  --page: #040606;
  --page-soft: #080d0d;
  --panel: #0d1313;
  --panel-strong: #141b1b;
  --panel-soft: #101616;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6fbfb;
  --muted: #b8c4c4;
  --soft: #859596;
  --accent: #23d8ca;
  --accent-strong: #10a69b;
  --cash: #20d15f;
  --gold: #f4c95d;
  --danger: #ff4d58;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --wide: 1380px;
  --content: 1160px;
  --page-gutter: max(20px, calc((100vw - var(--wide)) / 2 + 28px));
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(35, 216, 202, 0.05), transparent 380px),
    var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px var(--page-gutter);
  background: rgba(4, 6, 6, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.brand span {
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: #03110f;
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(35, 216, 202, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #03110f;
  background: #78f4ec;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 118px var(--page-gutter) 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    url("assets/fitzx-logo.png");
  background-position: center, center, right var(--page-gutter) top 112px;
  background-size: 46px 46px, 46px 46px, min(500px, 34vw);
  background-repeat: repeat, repeat, no-repeat;
  opacity: 0.2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 6, 6, 1) 0%, rgba(4, 6, 6, 0.88) 44%, rgba(4, 6, 6, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 6, 6, 0.35) 0%, rgba(4, 6, 6, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.hero-content {
  max-width: 680px;
}

.hero-logo-mark {
  width: 92px;
  height: 92px;
  object-fit: cover;
  margin: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.8vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 630px;
  color: #dce7e8;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: #03110f;
  background: var(--accent);
  box-shadow: 0 18px 46px rgba(35, 216, 202, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #76f4ec;
  box-shadow: 0 22px 54px rgba(35, 216, 202, 0.3);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-strong);
}

.button.cashapp {
  color: #03110a;
  background: var(--cash);
  box-shadow: 0 18px 42px rgba(32, 209, 95, 0.2);
}

.button.cashapp:hover,
.button.cashapp:focus-visible {
  background: #69ee95;
  box-shadow: 0 22px 52px rgba(32, 209, 95, 0.26);
}

.button.full {
  width: 100%;
}

.trust-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 27, 27, 0.98), rgba(8, 13, 13, 0.98));
  box-shadow: var(--shadow);
}

.hero-visual-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-bar i,
.hero-visual-bar i::before,
.hero-visual-bar i::after {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.hero-visual-bar i {
  position: relative;
  flex: 0 0 auto;
}

.hero-visual-bar i::before,
.hero-visual-bar i::after {
  content: "";
  position: absolute;
  top: 0;
}

.hero-visual-bar i::before {
  left: -14px;
  background: var(--gold);
}

.hero-visual-bar i::after {
  right: -14px;
  background: var(--cash);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-proof div {
  padding: 16px;
  background: rgba(8, 13, 13, 0.94);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.2;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 750;
}

section {
  padding: clamp(84px, 9vw, 132px) var(--page-gutter);
}

.intro-band,
.comparison-band,
.final-cta,
.fitzx-parent-brand {
  background: var(--panel);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 5.5vw, 86px);
  align-items: center;
  max-width: var(--wide);
  margin: 0 auto;
}

.section-grid p,
.section-heading p,
.feature-grid p,
.steps p,
.price-card p,
.faq-grid p,
.site-footer p,
.demo-grid p,
.fitzx-parent-brand p {
  color: var(--muted);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.product-section {
  background:
    linear-gradient(180deg, #050707 0%, #081010 100%);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.78fr);
  gap: 22px;
  max-width: var(--wide);
  margin: 0 auto;
  align-items: stretch;
}

.product-shot {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #090d0d;
  box-shadow: var(--shadow);
}

.product-shot:not(.large) img {
  object-position: center top;
}

.product-shot figcaption {
  margin-top: 14px;
  color: var(--soft);
  font-size: 0.92rem;
  text-align: center;
}

.feature-band {
  background: #070909;
}

.feature-grid,
.steps,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--wide);
  margin: 0 auto;
}

.feature-grid article,
.steps article,
.price-card,
.faq-grid details,
.demo-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-grid article {
  min-height: 232px;
  padding: 28px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #03110f;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
}

.setup-section {
  background:
    linear-gradient(180deg, #090b0b 0%, #050707 100%);
}

.steps article {
  padding: 30px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  border: 1px solid rgba(35, 216, 202, 0.38);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(35, 216, 202, 0.08);
  font-size: 1.08rem;
  font-weight: 950;
}

.demo-section {
  background:
    linear-gradient(135deg, rgba(35, 216, 202, 0.08), transparent 34%),
    linear-gradient(180deg, #050707 0%, #0a1010 100%);
}

.demo-panel {
  padding: 30px;
  border: 1px solid rgba(35, 216, 202, 0.4);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35, 216, 202, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 22px 70px rgba(35, 216, 202, 0.12);
}

.demo-panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.demo-label {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-grid {
  margin-top: 44px;
}

.demo-grid article {
  padding: 24px;
}

.comparison-list {
  display: grid;
  gap: 14px;
}

.comparison-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(244, 201, 93, 0.045), transparent 260px),
    #050707;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: var(--wide);
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.price-card.featured {
  border-color: rgba(35, 216, 202, 0.48);
  background:
    linear-gradient(180deg, rgba(35, 216, 202, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(35, 216, 202, 0.14);
}

.price-card.featured::before {
  background: var(--accent);
}

.price-card h3 {
  min-height: 2.8em;
}

.price {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: clamp(1.85rem, 2.4vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
}

.price-note {
  margin-bottom: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #dce7e8;
  font-size: 0.94rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(35, 216, 202, 0.1);
}

.order-form {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.order-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
}

.order-form input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(35, 216, 202, 0.18);
}

.order-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.payment-note {
  max-width: var(--wide);
  margin: 20px auto 0;
  padding: 17px 20px;
  border: 1px solid rgba(32, 209, 95, 0.32);
  border-radius: 8px;
  background: rgba(32, 209, 95, 0.08);
  color: #dce7e8;
}

.payment-note strong {
  color: var(--text);
}

.faq-section {
  background: var(--panel);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
}

.faq-grid details {
  padding: 22px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-grid summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.faq-grid p {
  margin: 14px 0 0;
}

.final-cta,
.fitzx-parent-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.final-cta {
  margin-top: 0;
}

.final-cta h2,
.fitzx-parent-brand h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.fitzx-parent-brand p:last-child {
  max-width: 820px;
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 24px;
  padding: 34px var(--page-gutter);
  background: #020303;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
  font-weight: 850;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  outline: none;
}

.copyright {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 900px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }

  .price-card h3 {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px var(--page-gutter) 18px;
    background: rgba(4, 6, 6, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-bg {
    background-position: center, center, right 20px top 92px;
    background-size: 46px 46px, 46px 46px, min(420px, 62vw);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 6, 6, 0.8) 0%, rgba(4, 6, 6, 0.98) 44%, rgba(4, 6, 6, 1) 100%);
  }

  .section-grid,
  .screenshot-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .product-shot img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 20px;
  }

  section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 64px;
  }

  .hero-logo-mark {
    width: 76px;
    height: 76px;
  }

  .hero-actions,
  .final-cta,
  .fitzx-parent-brand {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .demo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .feature-grid article,
  .steps article,
  .demo-grid article,
  .demo-panel,
  .faq-grid details {
    padding: 22px;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand span {
    display: none;
  }

  .hero-visual-bar {
    padding: 12px;
    font-size: 0.68rem;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .trust-list li {
    flex: 1 1 auto;
    text-align: center;
  }
}
