:root {
  --platform-brand-red: #d81f2a;
  --platform-brand-orange: #ff5a1f;
  --platform-brand-green: #0b6b3a;
  --platform-brand-green-soft: #48a163;
  --platform-brand-cream: #f7fbf4;
  --platform-brand-ink: #102018;
  --platform-brand-muted: #637568;
  --platform-brand-dark: #0e1d15;
}

.platform-site-shell {
  background:
    linear-gradient(125deg, rgba(216, 31, 42, 0.08) 0%, transparent 22%),
    linear-gradient(245deg, rgba(11, 107, 58, 0.12) 0%, transparent 28%),
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 48%, #f4f8f1 100%);
}

.platform-site {
  color: var(--platform-brand-ink);
}

.platform-hero-ribbon {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  color: rgba(235, 242, 252, 0.84);
  font-size: 0.88rem;
}

.platform-hero-ribbon span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
}

.platform-hero-ribbon strong {
  font-weight: 600;
}

.platform-hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.25rem 6rem;
  color: #f8fbff;
  background:
    linear-gradient(115deg, rgba(216, 31, 42, 0.3) 0%, transparent 26%),
    linear-gradient(245deg, rgba(255, 90, 31, 0.28) 0%, transparent 32%),
    linear-gradient(145deg, #092117 0%, #123b27 48%, #0e1d15 100%);
}

.platform-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
  pointer-events: none;
}

.platform-topbar,
.platform-hero-wrap,
.platform-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.platform-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 0 2rem;
}

.platform-topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 14%, rgba(255, 255, 255, 0.12) 86%, transparent 100%);
  pointer-events: none;
}

.platform-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: white;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.platform-brand-logo {
  width: 10rem;
  height: 4rem;
  object-fit: contain;
}

.platform-nav {
  display: inline-flex;
  gap: 1.5rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.platform-nav a,
.platform-link-secondary {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.platform-top-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.platform-button:hover {
  transform: translateY(-1px);
}

.platform-button-primary {
  color: white;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 48%, var(--platform-brand-red) 100%);
  box-shadow: 0 20px 40px rgba(216, 31, 42, 0.24);
}

.platform-button-light {
  color: var(--platform-brand-ink);
  background: white;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.platform-button-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.platform-button-ghost-dark {
  color: var(--platform-brand-ink);
  border: 1px solid rgba(19, 33, 23, 0.12);
  background: white;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.platform-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
  padding-top: 1.5rem;
}

.platform-hero-content h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: white;
}

.platform-hero-content p {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.14rem;
  line-height: 1.8;
  color: rgba(234, 242, 252, 0.82);
}

.platform-hero-offer {
  display: grid;
  gap: 0.35rem;
  max-width: 33rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 100%);
  box-shadow: 0 22px 50px rgba(0, 8, 24, 0.18);
  backdrop-filter: blur(16px);
}

.platform-hero-offer strong {
  color: #fff2c7;
  font-size: 1.2rem;
  font-weight: 900;
}

.platform-hero-offer span {
  color: rgba(237, 244, 252, 0.78);
  line-height: 1.55;
  font-size: 0.94rem;
  font-weight: 650;
}

.platform-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.platform-hero-microcopy {
  margin-top: 0.95rem;
  color: rgba(228, 237, 249, 0.66);
  font-size: 0.92rem;
  font-weight: 600;
}

.platform-hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  margin-top: 1.15rem;
}

.platform-hero-proofline span {
  position: relative;
  color: rgba(232, 240, 250, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-hero-proofline span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.72rem;
  top: 0.52rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(79, 143, 104, 0.95);
}

.platform-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.platform-hero-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(237, 244, 252, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.platform-social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.platform-social-proof div {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  text-align: center;
}

.platform-social-proof strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: white;
}

.platform-social-proof span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: rgba(228, 237, 249, 0.72);
}

.platform-benchmark-band {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
  padding: 0 1.25rem 1rem;
}

.platform-benchmark-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.platform-benchmark-band article {
  padding: 1.15rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(16, 32, 24, 0.1);
  backdrop-filter: blur(14px);
}

.platform-benchmark-band strong {
  display: block;
  color: var(--platform-brand-ink);
  font-weight: 900;
}

.platform-benchmark-band span {
  display: block;
  margin-top: 0.45rem;
  color: #66758b;
  line-height: 1.65;
}
.platform-benchmark-band article span > span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--platform-brand-red);
    font-weight: 700;
}
.platform-hero-visual {
  position: relative;
  min-height: 34rem;
}

.platform-dashboard-card {
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 24, 17, 0.88);
  box-shadow: 0 40px 100px rgba(0, 10, 7, 0.42);
  backdrop-filter: blur(18px);
}

.platform-dashboard-main {
  transform: rotate(-4deg);
  overflow: hidden;
}

.platform-window-bar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
}

.platform-window-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.platform-dashboard-body {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  min-height: 31rem;
}

.platform-dashboard-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  padding: 1.25rem 1rem;
}

.platform-dashboard-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 46%, var(--platform-brand-green) 100%);
  font-weight: 900;
  color: white;
}

.platform-sidebar-lines {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.platform-sidebar-lines span {
  display: block;
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.platform-dashboard-content {
  padding: 1.4rem;
}

.platform-dashboard-hero {
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(216, 31, 42, 0.46) 0%, rgba(255, 90, 31, 0.28) 46%, rgba(72, 161, 99, 0.28) 100%);
}

.platform-dashboard-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
}

.platform-dashboard-hero h3 {
  margin-top: 1rem;
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 900;
  color: white;
}

.platform-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.platform-dashboard-metrics article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.platform-dashboard-metrics strong {
  display: block;
  color: white;
  font-size: 1.02rem;
  font-weight: 900;
}

.platform-dashboard-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(231, 240, 250, 0.68);
  line-height: 1.5;
}

.platform-dashboard-panels {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-dashboard-panels article {
  padding: 1.2rem 1.25rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.045);
}

.platform-dashboard-panels strong {
  display: block;
  font-weight: 800;
  color: white;
}

.platform-dashboard-panels span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(231, 240, 250, 0.68);
}

.platform-floating-card {
  position: absolute;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 44px rgba(1, 7, 19, 0.28);
}

.platform-floating-card strong {
  display: block;
  color: white;
  font-size: 0.96rem;
  font-weight: 800;
}

.platform-floating-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(228, 237, 249, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.platform-floating-card-left {
  left: -1rem;
  bottom: 4rem;
}

.platform-floating-card-right {
  right: -1rem;
  top: 6rem;
}

.platform-section {
  padding: 5.5rem 1.25rem;
}

.platform-section-highlight {
  margin-top: -1.8rem;
}

.platform-section-density {
  padding-top: 2.8rem;
  padding-bottom: 2.2rem;
}

.platform-section-density .platform-section-inner {
  padding: 2.4rem 2.2rem 2.2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f8ef 100%);
  box-shadow: 0 24px 70px rgba(16, 32, 24, 0.08);
}

.platform-section-dark {
  background: linear-gradient(180deg, #0e1d15 0%, #164b2d 100%);
}

.platform-section-quote {
  padding-top: 1rem;
}

.platform-section-heading {
  max-width: 52rem;
}

.platform-section-heading p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--platform-brand-red);
}

.platform-section-heading h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--platform-brand-ink);
}

.platform-section-heading span {
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--platform-brand-muted);
}

.platform-section-heading.light h2,
.platform-section-heading.light span {
  color: white;
}

.platform-section-heading.light span {
  color: rgba(225, 236, 248, 0.72);
}

.platform-value-grid,
.platform-usecase-grid,
.platform-home-builder-strip,
.platform-template-grid,
.platform-feature-grid,
.platform-faq-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

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

.platform-usecase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.platform-value-grid article,
.platform-usecase-grid article,
.platform-home-builder-strip article,
.platform-template-card,
.platform-faq-grid article {
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: white;
  box-shadow: 0 18px 50px rgba(16, 32, 24, 0.07);
}

.platform-value-grid strong,
.platform-home-builder-strip strong,
.platform-template-card h3,
.platform-faq-grid h3,
.platform-feature-grid h3,
.platform-steps h3 {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--platform-brand-ink);
}

.platform-template-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(12, 23, 42, 0.12);
}

.platform-value-grid p,
.platform-usecase-grid p,
.platform-home-builder-strip span,
.platform-template-card p,
.platform-faq-grid p,
.platform-steps p {
  margin-top: 0.8rem;
  color: #66758b;
  line-height: 1.75;
}

.platform-usecase-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(214, 28, 44, 0.08);
  color: var(--platform-brand-red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.platform-usecase-grid h3 {
  margin: 1rem 0 0;
  font-size: 1.24rem;
  line-height: 1.22;
  font-weight: 900;
  color: var(--platform-brand-ink);
}

.platform-saas-perspective {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ee 100%);
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.05);
}

.platform-saas-perspective-copy p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--platform-brand-red);
}

.platform-saas-perspective-copy h3 {
  margin: 0.8rem 0 0;
  font-size: 1.9rem;
  line-height: 1.12;
  font-weight: 900;
  color: var(--platform-brand-ink);
}

.platform-saas-perspective-copy span {
  display: block;
  margin-top: 0.9rem;
  color: #66758b;
  line-height: 1.8;
}

.platform-saas-perspective-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-saas-perspective-cards article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.platform-saas-perspective-cards strong {
  display: block;
  color: var(--platform-brand-ink);
  font-weight: 900;
}

.platform-saas-perspective-cards span {
  display: block;
  margin-top: 0.55rem;
  color: #66758b;
  line-height: 1.6;
}

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

#variants {
  background:
    linear-gradient(120deg, rgba(216, 31, 42, 0.045) 0%, transparent 30%),
    linear-gradient(250deg, rgba(11, 107, 58, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, #fbfdf8 0%, #edf6ec 100%);
}

.platform-home-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.6rem;
  align-items: stretch;
  margin-top: 2.4rem;
}

.platform-home-blueprint,
.platform-home-builder-copy {
  border-radius: 1.8rem;
  background: white;
  box-shadow: 0 18px 50px rgba(16, 32, 24, 0.08);
}

.platform-home-blueprint {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(16, 32, 24, 0.06);
}

.platform-home-blueprint-header,
.platform-home-blueprint-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
}

.platform-home-blueprint-header {
  color: white;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 48%, var(--platform-brand-green) 100%);
}

.platform-home-blueprint-footer {
  color: white;
  background: linear-gradient(135deg, #0e1d15 0%, #164b2d 100%);
}

.platform-home-blueprint-header span,
.platform-home-blueprint-footer span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.platform-home-blueprint-header strong,
.platform-home-blueprint-footer strong {
  font-size: 1rem;
  font-weight: 900;
  text-align: right;
}

.platform-home-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-home-blueprint-grid span {
  display: block;
  min-height: 5.6rem;
  border-radius: 1.1rem;
  background: #eef4ef;
  box-shadow: inset 0 0 0 1px rgba(16, 32, 24, 0.04);
}

.platform-home-blueprint-grid .wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(216, 31, 42, 0.12) 0%, rgba(72, 161, 99, 0.14) 100%);
}

.platform-home-builder-copy {
  padding: 1.8rem;
}

.platform-home-builder-copy h3 {
  margin: 0;
  color: var(--platform-brand-ink);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.platform-home-builder-copy p {
  margin-top: 1rem;
  color: #66758b;
  line-height: 1.75;
}

.platform-home-builder-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.platform-home-builder-copy li {
  position: relative;
  padding-left: 1.35rem;
  color: #43536d;
  line-height: 1.65;
}

.platform-home-builder-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 50%, var(--platform-brand-green) 100%);
}

.platform-home-builder-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-home-builder-strip strong,
.platform-home-builder-strip span {
  display: block;
}

.platform-home-builder-strip span {
  margin-top: 0.65rem;
}

.platform-template-preview {
  padding: 1rem;
  border-radius: 1.3rem;
  background: #eef6f0;
}

.platform-template-preview-default {
  background: linear-gradient(135deg, #f8fff4 0%, #ffffff 100%);
}

.platform-template-preview-arena {
  background: linear-gradient(135deg, #0c2116 0%, #133b27 100%);
}

.platform-template-preview-district {
  background: linear-gradient(135deg, #e8f6e8 0%, #fff3ea 100%);
}

.platform-preview-shell {
  padding: 0.85rem;
  border-radius: 1rem;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.platform-preview-shell.dark {
  background: #0d1628;
}

.platform-preview-shell.warm {
  background: white;
}

.platform-preview-navbar,
.platform-preview-hero,
.platform-preview-grid span {
  display: block;
  border-radius: 999px;
}

.platform-preview-navbar {
  height: 0.75rem;
  width: 52%;
  background: rgba(216, 31, 42, 0.26);
}

.platform-preview-hero {
  height: 6.75rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(216, 31, 42, 0.82) 0%, rgba(255, 90, 31, 0.72) 48%, rgba(11, 107, 58, 0.62) 100%);
}

.platform-preview-hero.accent {
  background: linear-gradient(135deg, rgba(216, 31, 42, 0.48) 0%, rgba(255, 90, 31, 0.52) 56%, rgba(72, 161, 99, 0.22) 100%);
}

.platform-preview-hero.soft {
  background: linear-gradient(135deg, rgba(72, 161, 99, 0.5) 0%, rgba(255, 210, 184, 0.64) 100%);
}

.platform-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.platform-template-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.platform-preview-grid span {
  height: 5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.08);
}

.platform-template-subgrid span {
  display: block;
  height: 3.2rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.08);
}

.platform-preview-shell.dark .platform-preview-grid span {
  background: rgba(255, 255, 255, 0.08);
}

.platform-preview-shell.dark .platform-template-subgrid span {
  background: rgba(255, 255, 255, 0.08);
}

.platform-template-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-template-tag {
  flex-shrink: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(214, 28, 44, 0.08);
  color: var(--platform-brand-red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-template-meta {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: #f5f8fc;
}

.platform-template-meta span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a8aa3;
}

.platform-template-meta strong {
  display: block;
  margin-top: 0.35rem;
  color: #0f172a;
  font-weight: 900;
}

.platform-template-points {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.platform-template-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #5c6b83;
  line-height: 1.6;
}

.platform-template-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 50%, var(--platform-brand-green) 100%);
}

.platform-template-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.3rem;
}
.platform-template-actions a {
    color: var(--platform-brand-green);
    font-weight: 700;
    border-radius: 300rem;
    padding: 0.45rem 1.5rem;
    border: 1px solid var(--platform-brand-green);
}
.platform-template-actions a:hover {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: var(--platform-brand-green);
}

.platform-template-system {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #0e1d15 0%, #164b2d 58%, #203b2b 100%);
  box-shadow: 0 26px 70px rgba(16, 32, 24, 0.14);
}

.platform-template-system p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(195, 218, 248, 0.72);
}

.platform-template-system h3 {
  margin: 0.85rem 0 0;
  color: white;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 900;
}

.platform-template-system ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-template-system li {
  position: relative;
  padding: 1rem 1rem 1rem 2.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(227, 237, 248, 0.84);
  line-height: 1.6;
}

.platform-template-system li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 50%, var(--platform-brand-green) 100%);
}

.platform-button-demo,
.platform-link-inline {
  font-weight: 800;
}

.platform-button-demo {
  color: var(--platform-brand-ink);
  background: #fff9f4;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.platform-link-inline {
  color: var(--platform-brand-green);
}

.platform-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-feature-grid article {
  padding: 1.5rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.platform-feature-grid h3 {
  color: white;
}

.platform-feature-grid p {
  margin-top: 0.8rem;
  line-height: 1.7;
  color: rgba(225, 236, 248, 0.7);
}

.platform-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.4rem;
}

.platform-steps article {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.platform-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 40%, var(--platform-brand-red) 100%);
  color: white;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.platform-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.platform-pricing-billing-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  width: min(25rem, 100%);
  margin: 2rem auto 0;
  padding: 0.35rem;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.platform-pricing-billing-switch button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font: inherit;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.platform-pricing-billing-switch button:hover {
  color: #0f172a;
}

.platform-pricing-billing-switch button.is-active {
  color: #0f172a;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

.platform-pricing-billing-switch span {
  font-size: 0.9rem;
  font-weight: 950;
}

.platform-pricing-billing-switch small {
  font-size: 0.72rem;
  font-weight: 850;
  color: var(--platform-brand-green);
}

.platform-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border-radius: 1.8rem;
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.07);
}

.platform-pricing-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
}

.platform-pricing-card p {
  margin-top: 0.85rem;
  color: #66758b;
  line-height: 1.75;
}

.platform-pricing-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.platform-pricing-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #43536d;
  line-height: 1.65;
}

.platform-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 50%, var(--platform-brand-green) 100%);
}

.platform-pricing-highlight {
  color: var(--platform-brand-green);
  font-weight: 900;
}

.platform-pricing-card-featured .platform-pricing-highlight {
  color: #fff2c7;
}

.platform-pricing-card-muted {
  background: white;
}

.platform-pricing-card-featured {
  overflow: visible;
  color: white;
  background: linear-gradient(145deg, #17130d 0%, #4b1f13 42%, #1b5b32 100%);
  transform: translateY(-0.4rem);
  box-shadow: 0 32px 80px rgba(12, 23, 42, 0.18);
}

.platform-pricing-card-featured h3,
.platform-pricing-card-featured p,
.platform-pricing-card-featured li {
  color: white;
}

.platform-pricing-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--platform-brand-red);
}

.platform-pricing-card-featured .platform-pricing-eyebrow {
  color: rgba(197, 223, 255, 0.72);
}

.platform-pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-pricing-price {
  margin-top: 1rem;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.platform-pricing-note {
  margin-top: 0.5rem;
  color: #526174;
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-pricing-card-featured .platform-pricing-note {
  color: rgba(225, 236, 248, 0.78);
}

.platform-pricing-yearly-note {
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 184, 116, 0.12);
  color: var(--platform-brand-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.platform-pricing-card-featured .platform-pricing-yearly-note {
  background: rgba(255, 255, 255, 0.14);
  color: #fff2c7;
}

.platform-pricing-action {
  width: 100%;
  margin-top: 1.5rem;
}

.platform-pricing-card ul + .platform-pricing-action {
  margin-top: auto;
}

.platform-pricing-info,
.platform-domain-info {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 0.3rem;
}

.platform-pricing-info-button,
.platform-domain-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 107, 56, 0.12);
  color: var(--platform-brand-green);
  font-size: 0.75rem;
  font-weight: 900;
  cursor: help;
}

.platform-pricing-card-featured .platform-pricing-info-button,
.platform-pricing-card-featured .platform-domain-info-button {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.platform-pricing-info-popover,
.platform-domain-info-popover {
  position: absolute;
  bottom: calc(100% + 0.65rem);
  left: 50%;
  z-index: 4;
  width: min(17rem, 76vw);
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: #101812;
  color: white;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.platform-pricing-info-popover::after,
.platform-domain-info-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  background: #101812;
  transform: translate(-50%, -50%) rotate(45deg);
}

.platform-pricing-info:hover .platform-pricing-info-popover,
.platform-pricing-info:focus-within .platform-pricing-info-popover,
.platform-domain-info:hover .platform-domain-info-popover,
.platform-domain-info:focus-within .platform-domain-info-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.platform-onboarding-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #fff9f4 0%, #fff2e7 100%);
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.05);
}

.platform-onboarding-copy p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--platform-brand-red);
}

.platform-onboarding-copy h3 {
  margin: 0.8rem 0 0;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--platform-brand-ink);
}

.platform-onboarding-copy span {
  display: block;
  margin-top: 0.9rem;
  color: #66758b;
  line-height: 1.8;
}

.platform-onboarding-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-onboarding-track article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.platform-onboarding-track strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-green) 0%, var(--platform-brand-green-soft) 45%, var(--platform-brand-green) 100%);
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
}

.platform-onboarding-track span {
  display: block;
  margin-top: 0.85rem;
  color: #42526a;
  font-weight: 700;
  line-height: 1.5;
}

.platform-onboarding-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.platform-onboarding-checklist article {
  padding: 1.35rem;
  border-radius: 1.4rem;
  background: white;
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.05);
}

.platform-onboarding-checklist strong {
  display: block;
  color: var(--platform-brand-ink);
  font-weight: 900;
}

.platform-onboarding-checklist ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.platform-onboarding-checklist li {
  position: relative;
  padding-left: 1.3rem;
  color: #66758b;
  line-height: 1.65;
}

.platform-onboarding-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 50%, var(--platform-brand-green) 100%);
}

.platform-demo-hero {
  padding: 1.5rem 1.25rem 4.8rem;
  color: white;
}

.platform-demo-theme-default {
  background: linear-gradient(180deg, #12100b 0%, #26422f 62%, #fff7f1 62%);
}

.platform-demo-theme-arena {
  background: linear-gradient(180deg, #140d0a 0%, #4d2313 62%, #fff7f1 62%);
}

.platform-demo-theme-district {
  background: linear-gradient(180deg, #102016 0%, #2f6a3f 62%, #fff8f0 62%);
}

.platform-topbar-dark {
  padding-bottom: 1.5rem;
}

.platform-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.platform-demo-kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(215, 231, 252, 0.7);
}

.platform-demo-copy h1 {
  margin: 0.9rem 0 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: white;
}

.platform-demo-copy p {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(233, 242, 252, 0.78);
}

.platform-demo-tone {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 700;
}

.platform-demo-fit {
  margin-top: 1rem;
}

.platform-demo-fit span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(215, 231, 252, 0.58);
}

.platform-demo-fit strong {
  display: block;
  margin-top: 0.35rem;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.platform-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.platform-demo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.platform-demo-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(233, 242, 252, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
}

.platform-demo-browser {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 14, 28, 0.76);
  box-shadow: 0 36px 100px rgba(0, 8, 24, 0.34);
  backdrop-filter: blur(18px);
}

.platform-demo-browser-body {
  padding: 1.35rem;
}

.platform-demo-nav-row,
.platform-demo-columns,
.platform-demo-score-strip {
  display: grid;
  gap: 0.8rem;
}

.platform-demo-nav-row {
  grid-template-columns: 120px repeat(3, 1fr);
}

.platform-demo-nav-row span,
.platform-demo-main-hero,
.platform-demo-columns article,
.platform-demo-score-strip span {
  display: block;
  border-radius: 1rem;
}

.platform-demo-nav-row span {
  height: 0.9rem;
  background: rgba(255, 255, 255, 0.09);
}

.platform-demo-nav-row .brand {
  background: linear-gradient(135deg, rgba(214, 28, 44, 0.74) 0%, rgba(240, 90, 26, 0.68) 50%, rgba(13, 107, 56, 0.62) 100%);
}

.platform-demo-main-hero {
  height: 12rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(214, 28, 44, 0.38) 0%, rgba(240, 90, 26, 0.26) 48%, rgba(13, 107, 56, 0.22) 100%);
}

.platform-demo-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.platform-demo-columns article {
  height: 7rem;
  background: rgba(255, 255, 255, 0.07);
}

.platform-demo-score-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.platform-demo-score-strip span {
  height: 4rem;
  background: rgba(255, 255, 255, 0.07);
}

.platform-demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.platform-demo-metrics article {
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.platform-demo-metrics strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
}

.platform-demo-metrics span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(225, 236, 248, 0.7);
  font-size: 0.9rem;
}

.platform-detail-grid,
.platform-compare-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

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

.platform-demo-blueprint {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
  margin-top: 1.8rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #fff9f4 0%, #fff2e7 100%);
}

.platform-demo-blueprint-copy p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--platform-brand-red);
}

.platform-demo-blueprint-copy h3 {
  margin: 0.75rem 0 0;
  font-size: 1.8rem;
  line-height: 1.14;
  font-weight: 900;
  color: var(--platform-brand-ink);
}

.platform-demo-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-demo-blueprint-grid article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.platform-demo-blueprint-grid strong {
  display: block;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.platform-demo-blueprint-grid span {
  display: block;
  margin-top: 0.55rem;
  color: #5f6e86;
  line-height: 1.6;
}

.platform-detail-grid article,
.platform-compare-grid article {
  padding: 1.5rem;
  border-radius: 1.6rem;
}

.platform-detail-grid article {
  background: white;
  box-shadow: 0 18px 50px rgba(12, 23, 42, 0.07);
}

.platform-detail-grid h3,
.platform-compare-grid h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.platform-detail-grid p,
.platform-compare-grid p {
  margin-top: 0.8rem;
  line-height: 1.75;
}

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

.platform-compare-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.platform-compare-grid article.active {
  background: linear-gradient(135deg, rgba(214, 28, 44, 0.18) 0%, rgba(13, 107, 56, 0.14) 100%);
  box-shadow: inset 0 0 0 1px rgba(240, 90, 26, 0.28);
}

.platform-compare-grid article h3 {
  color: white;
}

.platform-compare-grid article p,
.platform-compare-grid article a,
.platform-compare-label {
  color: rgba(225, 236, 248, 0.72);
}

.platform-compare-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.platform-compare-grid article a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
}

.platform-section-quote blockquote {
  margin: 0;
  padding: 2.6rem 3rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #17120d 0%, #173021 52%, #2c6f45 100%);
  color: white;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 28px 80px rgba(12, 23, 42, 0.18);
}

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

.platform-final-cta {
  padding: 1rem 1.25rem 5.5rem;
}

.platform-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.3rem 2.4rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #17120d 0%, #4d2113 48%, #1d5e35 100%);
  box-shadow: 0 28px 80px rgba(12, 23, 42, 0.18);
}

.platform-final-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(225, 236, 248, 0.6);
}

.platform-final-card h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
}

.platform-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.platform-footer {
  padding: 3.5rem 1.25rem 1.5rem;
  background: #101812;
  color: rgba(245, 249, 255, 0.84);
}

.platform-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 2rem;
}

.platform-footer-brand {
  display: inline-flex;
}

.platform-footer-brand img {
  width: 9rem;
  height: auto;
  object-fit: contain;
}

.platform-footer p {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(235, 242, 252, 0.68);
  line-height: 1.75;
}

.platform-footer strong {
  display: block;
  margin-bottom: 0.8rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.platform-footer a:not(.platform-footer-brand) {
  display: block;
  width: fit-content;
  padding: 0.28rem 0;
  color: rgba(235, 242, 252, 0.74);
  font-weight: 700;
}

.platform-footer a:hover {
  color: white;
}

.platform-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(235, 242, 252, 0.56);
  font-size: 0.86rem;
}

.platform-page-hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.25rem 6rem;
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 28, 44, 0.22), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(13, 107, 56, 0.18), transparent 30%),
    linear-gradient(115deg, #45180f 0%, #21150e 46%, #101812 100%);
  color: white;
}

.platform-page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 5rem;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0) 0%, #fffbf7 100%);
  pointer-events: none;
}

.platform-page-heading {
  max-width: 58rem;
  padding-top: 2.4rem;
  padding-bottom: 1.5rem;
}

.platform-page-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.platform-page-heading h1 {
  margin-top: 0.85rem;
  color: white;
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.platform-page-heading span {
  display: block;
  margin-top: 1rem;
  color: rgba(235, 242, 252, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.platform-page-content-section {
  padding: 3.5rem 1.25rem 4rem;
  background: #fffbf7;
}

.platform-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  align-items: start;
}

.platform-contact-aside,
.platform-contact-card,
.platform-legal-content {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1.2rem;
  background: white;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

.platform-contact-aside {
  padding: 1.4rem;
  background: linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
}

.platform-contact-aside h2 {
  color: #132117;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
}

.platform-contact-aside p {
  margin-top: 0.8rem;
  color: #64748b;
  line-height: 1.7;
}

.platform-contact-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.platform-contact-points span {
  display: flex;
  gap: 0.55rem;
  color: #334155;
  font-weight: 800;
}

.platform-contact-points i {
  margin-top: 0.25rem;
  color: var(--platform-brand-red);
  font-size: 0.8rem;
}

.platform-contact-card {
  padding: 1.4rem;
}

.platform-contact-card form {
  display: grid;
  gap: 1rem;
}

.platform-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.platform-contact-card label {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-weight: 900;
}

.platform-contact-card input:not([type="hidden"]),
.platform-contact-card textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: #0f172a;
  background: #fff;
}

.platform-contact-card textarea {
  min-height: 10rem;
}

.platform-contact-card input:focus,
.platform-contact-card textarea:focus {
  border-color: rgba(214, 28, 44, 0.58);
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 28, 44, 0.12);
}

.platform-contact-card button[type="submit"] {
  border-radius: 0.9rem !important;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 100%) !important;
}

.platform-captcha-row {
  overflow: hidden;
}

.platform-alert {
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  font-weight: 800;
}

.platform-alert-success {
  border: 1px solid rgba(13, 107, 56, 0.18);
  background: #f0fdf4;
  color: #166534;
}

.platform-alert-danger {
  border: 1px solid rgba(214, 28, 44, 0.18);
  background: #fff1f2;
  color: #b42318;
}

.platform-legal-content {
  max-width: 56rem;
  padding: 2rem;
}

.platform-legal-content h2 {
  margin-top: 1.7rem;
  color: #132117;
  font-size: 1.35rem;
  font-weight: 900;
}

.platform-legal-content h2:first-child {
  margin-top: 0;
}

.platform-legal-content p {
  margin-top: 0.7rem;
  color: #475569;
  line-height: 1.85;
}

.platform-legal-content a {
  color: var(--platform-brand-red);
  font-weight: 900;
}

.platform-onboarding-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 1.5rem 1.25rem 4.5rem;
  color: #f8fbff;
}

.platform-launch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

.platform-launch-copy h1 {
  margin: 1rem 0 0;
  font-size: 3.4rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  color: white;
}

.platform-launch-copy {
  padding: 1.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 16, 11, 0.88) 0%, rgba(23, 48, 33, 0.82) 100%);
  box-shadow: 0 24px 70px rgba(7, 14, 28, 0.22);
  backdrop-filter: blur(12px);
}

.platform-launch-copy p {
  margin-top: 1.2rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(233, 242, 252, 0.8);
}

.platform-launch-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.platform-launch-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 250, 255, 0.9);
  font-size: 0.83rem;
  font-weight: 800;
}

.platform-launch-preview {
  overflow: hidden;
  margin-top: 1.6rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(2, 8, 20, 0.22);
}

.platform-launch-preview-bar {
  display: flex;
  gap: 0.42rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.07);
}

.platform-launch-preview-bar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.platform-launch-preview-hero {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(214, 28, 44, 0.34) 0%, rgba(240, 90, 26, 0.22) 46%, rgba(13, 107, 56, 0.28) 100%);
}

.platform-launch-preview-hero strong {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
}

.platform-launch-preview-hero span {
  color: rgba(238, 246, 255, 0.84);
  line-height: 1.6;
}

.platform-launch-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.platform-launch-preview-grid span {
  min-height: 3rem;
  padding: 0.8rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(241, 247, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.platform-launch-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.platform-launch-steps article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.platform-launch-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 45%, var(--platform-brand-green) 100%);
  color: white;
  font-weight: 900;
}

.platform-launch-steps strong i {
  font-size: 1.05rem;
}

.platform-launch-steps span {
  color: rgba(231, 240, 250, 0.84);
  line-height: 1.6;
}

.platform-launch-user {
  margin-top: 1.35rem;
  color: rgba(220, 233, 249, 0.76);
  font-size: 0.95rem;
}

.platform-launch-user strong {
  color: white;
}

.platform-launch-card {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  border-radius: 2rem;
  background: white;
  box-shadow: 0 30px 90px rgba(10, 17, 33, 0.24);
}

.platform-launch-form-heading {
  padding-bottom: 0.35rem;
}

.platform-launch-form-heading span {
  display: block;
  color: var(--platform-brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.platform-launch-form-heading h2 {
  margin-top: 0.45rem;
  color: #0f172a;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.platform-launch-form-heading p {
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.platform-launch-card label {
  color: #0f172a;
}

.platform-launch-card .form-error-message,
.platform-launch-card ul {
  margin-top: 0.45rem;
  color: #b42318;
  font-size: 0.88rem;
}

.platform-launch-form-section {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.platform-launch-form-section + .platform-launch-form-section {
  margin-top: 1rem;
}

.platform-launch-form-section-plan {
  border-color: rgba(214, 28, 44, 0.18);
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.platform-launch-section-heading {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.platform-launch-section-heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 100%);
  color: white;
  box-shadow: 0 10px 22px rgba(214, 28, 44, 0.14);
}

.platform-launch-section-heading i {
  font-size: 0.9rem;
}

.platform-launch-section-heading strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
}

.platform-launch-section-heading p {
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.platform-launch-section-body {
  display: grid;
  gap: 1rem;
}

.platform-plan-choice-grid,
.platform-setup-choice-grid {
  display: grid;
  gap: 0.9rem;
}

.platform-plan-choice,
.platform-setup-choice {
  display: block;
  cursor: pointer;
  border-radius: 1rem;
  border: 1px solid #dbe3ef;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.platform-plan-choice:hover,
.platform-setup-choice:hover {
  border-color: rgba(214, 28, 44, 0.28);
  box-shadow: 0 22px 50px rgba(214, 28, 44, 0.1);
  transform: translateY(-1px);
}

.platform-plan-choice-featured {
  border-color: rgba(214, 28, 44, 0.36);
  background: linear-gradient(180deg, #fff9f4 0%, #ffffff 52%, #fff4ed 100%);
  box-shadow: 0 24px 58px rgba(214, 28, 44, 0.13);
}

.platform-plan-choice-inner {
  display: flex;
  gap: 0.9rem;
  padding: 1.05rem;
}

.platform-plan-radio {
  margin-top: 0.35rem;
  width: 1.08rem;
  height: 1.08rem;
  border-color: #94a3b8;
  color: var(--tenant-primary);
}

.platform-plan-content {
  display: block;
  min-width: 0;
  flex: 1;
}

.platform-plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.platform-plan-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.platform-plan-title {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.platform-plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 7.8rem;
  width: 7.8rem;
  min-height: 2.15rem;
  padding: 0.42rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f4f6f9;
  color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.platform-plan-choice-premium .platform-plan-badge {
  border-color: rgba(214, 28, 44, 0.2);
  background: #fff1e8;
  color: #b42318;
}

.platform-plan-choice-gold .platform-plan-badge {
  border-color: rgba(240, 90, 26, 0.22);
  background: #fff6dd;
  color: #915200;
}

.platform-plan-subtitle {
  display: block;
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.platform-plan-price {
  display: block;
  margin-top: 0.4rem;
  color: #0f4c81;
  font-size: 1rem;
  font-weight: 900;
}

.platform-plan-trial {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(240, 90, 26, 0.24);
  background:
    linear-gradient(135deg, rgba(214, 28, 44, 0.08) 0%, rgba(240, 90, 26, 0.1) 52%, rgba(255, 246, 239, 0.95) 100%),
    #fffaf6;
  box-shadow: inset 4px 0 0 rgba(214, 28, 44, 0.72);
}

.platform-plan-trial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  background: linear-gradient(135deg, var(--platform-brand-red) 0%, var(--platform-brand-orange) 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(214, 28, 44, 0.18);
}

.platform-plan-trial-icon i {
  font-size: 0.9rem;
}

.platform-plan-trial span span {
  display: block;
  color: #b42318;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.platform-plan-trial strong {
  display: block;
  margin-top: 0.22rem;
  color: #32120f;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 850;
}

.platform-plan-trial em {
  padding: 0.45rem 0.7rem;
  border-radius: 0.7rem;
  background: #111827;
  color: white;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.platform-plan-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.9rem;
  margin-top: 0.9rem;
}

.platform-plan-highlights span {
  display: flex;
  gap: 0.45rem;
  min-width: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.45;
}

.platform-plan-highlights i {
  margin-top: 0.2rem;
  color: #0d6b38;
  font-size: 0.72rem;
}

.platform-setup-choice {
  padding: 1rem;
}

.platform-launch-submit-note {
  margin-top: -0.35rem;
  color: #64748b;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .platform-topbar,
  .platform-hero-wrap,
  .platform-benchmark-band-inner,
  .platform-value-grid,
  .platform-usecase-grid,
  .platform-saas-perspective,
  .platform-saas-perspective-cards,
  .platform-home-builder-layout,
  .platform-home-builder-strip,
  .platform-template-grid,
  .platform-template-system,
  .platform-feature-grid,
  .platform-pricing-grid,
  .platform-steps,
  .platform-onboarding-panel,
  .platform-onboarding-checklist,
  .platform-detail-grid,
  .platform-demo-blueprint,
  .platform-demo-blueprint-grid,
  .platform-compare-grid,
  .platform-demo-layout,
  .platform-demo-metrics,
  .platform-faq-grid,
  .platform-final-card,
  .platform-footer-grid,
  .platform-contact-layout,
  .platform-launch-layout {
    grid-template-columns: 1fr;
  }

  .platform-topbar {
    flex-wrap: wrap;
  }

  .platform-hero-ribbon {
    justify-content: flex-start;
    border-radius: 1.2rem;
  }

  .platform-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .platform-hero-wrap {
    gap: 2rem;
  }

  .platform-dashboard-main {
    transform: none;
  }

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

  .platform-floating-card-left,
  .platform-floating-card-right {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .platform-hero-visual {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .platform-hero {
    padding-bottom: 4rem;
  }

  .platform-benchmark-band {
    margin-top: -1rem;
  }

  .platform-topbar {
    align-items: flex-start;
  }

  .platform-nav {
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.75rem 0.95rem;
  }

  .platform-top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .platform-hero-copy h1 {
    font-size: 2.8rem;
  }

  .platform-hero-content h1 {
    margin-top: 1rem;
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .platform-hero-content p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .platform-hero-offer {
    margin-top: 1rem;
    padding: 0.85rem 0.9rem;
  }

  .platform-hero-offer strong {
    font-size: 1.05rem;
  }

  .platform-pricing-info-popover,
  .platform-domain-info-popover {
    position: fixed;
    left: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 30;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    transform: translateY(0.35rem);
  }

  .platform-pricing-info-popover::after,
  .platform-domain-info-popover::after {
    display: none;
  }

  .platform-pricing-info:hover .platform-pricing-info-popover,
  .platform-pricing-info:focus-within .platform-pricing-info-popover,
  .platform-domain-info:hover .platform-domain-info-popover,
  .platform-domain-info:focus-within .platform-domain-info-popover {
    transform: translateY(0);
  }

  .platform-hero-actions,
  .platform-hero-proofline,
  .platform-hero-chips,
  .platform-social-proof {
    width: 100%;
  }

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

  .platform-onboarding-page {
    padding-bottom: 3rem;
  }

  .platform-launch-copy h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .platform-launch-card {
    padding: 1.25rem;
  }

  .platform-page-heading h1 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .platform-form-grid {
    grid-template-columns: 1fr;
  }

  .platform-contact-card,
  .platform-contact-aside,
  .platform-legal-content {
    padding: 1.2rem;
  }

  .platform-plan-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-plan-badge {
    flex: 0 0 auto;
  }

  .platform-plan-trial {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .platform-plan-trial em {
    grid-column: 2;
    width: fit-content;
  }

  .platform-plan-highlights,
  .platform-launch-preview-grid {
    grid-template-columns: 1fr;
  }

  .platform-dashboard-body {
    grid-template-columns: 1fr;
  }

  .platform-dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .platform-section {
    padding: 4rem 1rem;
  }

  .platform-section-quote blockquote,
  .platform-final-card {
    padding: 1.6rem;
  }

  .platform-demo-nav-row,
  .platform-demo-columns,
  .platform-demo-score-strip,
  .platform-onboarding-track,
  .platform-saas-perspective-cards {
    grid-template-columns: 1fr;
  }

  .platform-template-header,
  .platform-template-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fz-home {
  --fz-ink: #07130b;
  --fz-text: #1f2937;
  --fz-muted: #64748b;
  --fz-green: #006e2f;
  --fz-green-dark: #052e16;
  --fz-green-soft: #dcfce7;
  --fz-lime: #22c55e;
  --fz-slate: #f7f9fb;
  --fz-line: #dfe5df;
  --fz-card-line: #cbd5e1;
  --fz-footer: #e3e8eb;
  min-height: 100vh;
  color: var(--fz-text);
  background: var(--fz-slate);
  font-family: Inter, var(--tenant-body-font), Arial, sans-serif;
}

.fz-home *,
.fz-home *::before,
.fz-home *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.fz-home a {
  color: inherit;
  text-decoration: none;
}

.fz-container {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
}

.fz-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(193, 200, 191, 0.55);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
}

.fz-header-inner {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  padding: 0.75rem 0;
}

.fz-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: var(--fz-green-dark);
  font-weight: 800;
}

.fz-brand-mark {
  width: 10rem;
  height: 2rem;
  object-fit: contain;
}

.fz-nav {
  display: none;
}

.fz-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.fz-link {
  display: none;
  color: var(--fz-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.fz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.fz-button:hover {
  transform: translateY(-1px);
}

.fz-home .fz-button-primary {
  color: #ffffff;
  background: var(--fz-green);
  box-shadow: 0 12px 24px rgba(0, 110, 47, 0.18);
}

.fz-home .fz-button-ghost {
  color: var(--fz-green-dark);
  border-color: #9ca3af;
  background: #ffffff;
}

.fz-home .fz-button-dark-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.fz-main {
  overflow: hidden;
}

.fz-hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  border-bottom: 1px solid rgba(193, 200, 191, 0.26);
  background: radial-gradient(circle at 50% 45%, #f0fdf4 0%, #f7f9fb 72%);
}

.fz-hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.fz-hero-copy {
  text-align: center;
}

.fz-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--fz-green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fz-hero h1,
.fz-section-heading h2,
.fz-final-cta h2 {
  margin: 0;
  color: var(--fz-ink);
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-weight: 850;
}

.fz-hero h1 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: 1.06;
}

.fz-hero p {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--fz-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.fz-hero-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.fz-hero-actions .fz-button {
  width: 100%;
}

.fz-hero-visual {
  display: flex;
  justify-content: center;
}

.fz-laptop-card {
  position: relative;
  width: min(100%, 34rem);
  padding: 0.55rem;
  border: 1px solid rgba(193, 200, 191, 0.75);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fafc, #ffffff 48%, #e2e8f0);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  transform: rotate(1.5deg);
}

.fz-laptop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 10px solid #202a25;
  border-radius: 12px;
  background: #f8fafc;
}

.fz-laptop-base {
  width: 74%;
  height: 1rem;
  margin: 0.15rem auto 0;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #d1d5db, #94a3b8);
}

.fz-dashboard {
  min-height: 100%;
  padding: 0.9rem;
  background: #f8fafc;
}

.fz-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.15rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  color: #ffffff;
  background: var(--fz-green-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.fz-dashboard-top strong {
  color: #bbf7d0;
}

.fz-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.7rem;
  margin-top: 0.8rem;
  padding: 0.9rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #075c2a, #073d22);
}

.fz-dashboard-hero span,
.fz-dashboard-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
}

.fz-dashboard-hero strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.4rem;
}

.fz-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  align-items: end;
  min-height: 4.2rem;
}

.fz-chart span {
  display: block;
  border-radius: 999px 999px 3px 3px;
  background: #86efac;
}

.fz-chart span:nth-child(1) {
  height: 40%;
}

.fz-chart span:nth-child(2) {
  height: 70%;
}

.fz-chart span:nth-child(3) {
  height: 52%;
}

.fz-chart span:nth-child(4) {
  height: 85%;
}

.fz-chart span:nth-child(5) {
  height: 62%;
}

.fz-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.fz-dashboard-grid article {
  min-height: 4.1rem;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.fz-dashboard-grid article.is-wide {
  grid-column: 1 / -1;
}

.fz-dashboard-grid span {
  color: var(--fz-muted);
}

.fz-dashboard-grid strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--fz-green-dark);
  font-size: 1rem;
}

.fz-section {
  padding: 4rem 0;
  background: var(--fz-slate);
}

.fz-section-white {
  background: #ffffff;
}

.fz-section-heading {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.fz-section-heading h2 {
  font-size: clamp(1.65rem, 8vw, 2.35rem);
  line-height: 1.16;
}

.fz-section-heading p {
  margin: 0.55rem 0 0;
  color: var(--fz-muted);
  line-height: 1.6;
}

.fz-benefits-grid,
.fz-pricing-grid,
.fz-testimonials-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.fz-benefits-grid article,
.fz-pricing-card,
.fz-testimonials-grid article,
.fz-faq-list details {
  border: 1px solid var(--fz-card-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.fz-benefits-grid article {
  padding: 1.25rem;
}

.fz-benefits-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  color: var(--fz-green);
  background: var(--fz-green-soft);
}

.fz-benefits-grid h3 {
  margin: 1rem 0 0;
  color: var(--fz-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.fz-benefits-grid p {
  margin: 0.4rem 0 0;
  color: var(--fz-muted);
  line-height: 1.55;
}

.fz-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.fz-modules-grid article {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.fz-modules-grid img {
  width: 6rem;
  height: 6rem;
  padding: 0.15rem;
  border-radius: 4px;
  object-fit: cover;
  background: #eaf2ec;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.fz-modules-grid span {
  color: var(--fz-ink);
  font-weight: 750;
}

.fz-compare-section {
  padding-top: 3rem;
}

.fz-compare-card {
  padding: 1.25rem;
  border: 1px solid var(--fz-card-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.fz-compare-table {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: 8px;
}

.fz-compare-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(8.5rem, 1fr) minmax(7rem, 0.8fr) minmax(8rem, 0.9fr);
  min-width: 34rem;
  border-bottom: 1px solid #e5e7eb;
}

.fz-compare-table [role="row"]:last-child {
  border-bottom: 0;
}

.fz-compare-table span,
.fz-compare-table strong {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem;
  font-size: 0.88rem;
}

.fz-compare-table strong {
  justify-content: center;
  color: var(--fz-green-dark);
  background: rgba(220, 252, 231, 0.55);
  font-weight: 850;
  text-align: center;
}

.fz-compare-table span:last-child {
  justify-content: center;
  color: var(--fz-muted);
  text-align: center;
}

.fz-pricing-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  width: min(100%, 21rem);
  margin: 1.5rem auto 0;
  padding: 0.25rem;
  border: 1px solid var(--fz-card-line);
  border-radius: 8px;
  background: #f8fafc;
}

.fz-pricing-switch button {
  min-height: 2.8rem;
  border: 0;
  border-radius: 6px;
  color: var(--fz-muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.fz-pricing-switch button.is-active {
  color: var(--fz-green-dark);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.fz-pricing-switch small {
  display: block;
  color: var(--fz-green);
  font-size: 0.72rem;
}

.fz-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
}

.fz-pricing-card.is-featured {
  border-color: var(--fz-green);
  box-shadow: 0 18px 40px rgba(0, 110, 47, 0.13);
}

.fz-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.35rem 0.8rem;
  border-radius: 0 0 8px 8px;
  color: #ffffff;
  background: var(--fz-green);
  font-size: 0.72rem;
  font-weight: 850;
  transform: translateX(-50%);
  white-space: nowrap;
}

.fz-pricing-card h3 {
  margin: 0.35rem 0 0;
  color: var(--fz-ink);
  font-size: 1.15rem;
  font-weight: 850;
}

.fz-price {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

.fz-price strong {
  color: var(--fz-ink);
  font-size: 1.75rem;
  line-height: 1;
}

.fz-price span {
  color: var(--fz-muted);
  font-size: 0.85rem;
  font-style: normal;
}

.fz-pricing-card em {
  width: fit-content;
  margin-top: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--fz-green);
  background: var(--fz-green-soft);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.fz-pricing-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.fz-pricing-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--fz-muted);
  line-height: 1.45;
}

.fz-pricing-card li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0.08rem;
  color: var(--fz-green);
  font-family: "Font Awesome 6 Free";
  font-size: 0.85rem;
  font-weight: 900;
}

.fz-pricing-card li strong {
  color: var(--fz-green-dark);
}

.fz-pricing-card .fz-button {
  width: 100%;
  margin-top: auto;
}

.fz-testimonials-grid article {
  position: relative;
  padding: 1.25rem;
}

.fz-testimonials-grid article > span {
  display: block;
  height: 1.5rem;
  color: #86efac;
  font-size: 2.5rem;
  line-height: 0.8;
}

.fz-testimonials-grid p {
  margin: 0.7rem 0 1.2rem;
  color: #475569;
  font-style: italic;
  line-height: 1.6;
}

.fz-testimonials-grid strong,
.fz-testimonials-grid small {
  display: block;
}

.fz-testimonials-grid strong {
  color: var(--fz-ink);
  font-weight: 850;
}

.fz-testimonials-grid small {
  margin-top: 0.2rem;
  color: var(--fz-muted);
}

.fz-faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.fz-faq-list details {
  overflow: hidden;
}

.fz-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 1rem;
  color: var(--fz-text);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.fz-faq-list summary::after {
  content: "\f078";
  flex: 0 0 auto;
  color: var(--fz-muted);
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 900;
}

.fz-faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.fz-faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--fz-muted);
  line-height: 1.6;
}

.fz-final-cta {
  padding: 3.5rem 0;
  color: #ffffff;
  background: #002109;
  text-align: center;
}

.fz-final-cta h2 {
  max-width: 54rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.9rem, 9vw, 3rem);
  line-height: 1.14;
}

.fz-final-cta div div {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.fz-final-cta p {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.fz-footer {
  padding: 2.5rem 0 1.25rem;
  color: #1f2937;
  background: var(--fz-footer);
}

.fz-footer-grid {
  display: grid;
  gap: 1.75rem;
}

.fz-footer p {
  max-width: 19rem;
  margin: 1rem 0 0;
  color: #64748b;
  line-height: 1.55;
}

.fz-footer nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.fz-footer nav strong {
  color: var(--fz-ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.fz-footer nav a {
  color: #64748b;
  font-size: 0.9rem;
}

.fz-footer-bottom {
  display: grid;
  gap: 0.5rem;
  width: min(100% - 2rem, 1120px);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(100, 116, 139, 0.22);
  color: #64748b;
  font-size: 0.82rem;
  text-align: center;
}

@media (min-width: 560px) {
  .fz-link {
    display: inline-flex;
  }

  .fz-hero-actions,
  .fz-final-cta div div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fz-hero-actions .fz-button {
    width: auto;
  }

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

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

@media (min-width: 760px) {
  .fz-header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 4.25rem;
  }

  .fz-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
  }

  .fz-nav a {
    color: #424942;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .fz-hero {
    padding: 5rem 0 5.5rem;
  }

  .fz-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3rem;
  }

  .fz-hero-copy {
    text-align: left;
  }

  .fz-hero h1 {
    font-size: clamp(3rem, 5vw, 3.75rem);
  }

  .fz-hero p {
    margin-left: 0;
  }

  .fz-hero-actions {
    justify-content: flex-start;
  }

  .fz-laptop-card {
    transform: rotate(3deg);
  }

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

  .fz-modules-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fz-compare-card {
    padding: 2rem;
  }

  .fz-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }

  .fz-pricing-card.is-featured {
    transform: translateY(-0.75rem);
  }

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

  .fz-footer-grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 0.7fr));
  }

  .fz-footer-bottom {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .fz-footer-bottom span:last-child {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .fz-container {
    width: min(100% - 6rem, 1120px);
  }

  .fz-section {
    padding: 5rem 0;
  }
}

.fz-auth {
  --fz-auth-ink: #07130b;
  --fz-auth-text: #1f2937;
  --fz-auth-muted: #64748b;
  --fz-auth-green: #006e2f;
  --fz-auth-green-dark: #052e16;
  --fz-auth-soft: #f7f9fb;
  --fz-auth-line: #dbe4dd;
  min-height: 100vh;
  padding: 1rem;
  color: var(--fz-auth-text);
  background:
    radial-gradient(circle at 16% 12%, rgba(34, 197, 94, 0.13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(5, 46, 22, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  font-family: Inter, var(--tenant-body-font), Arial, sans-serif;
}

.fz-auth *,
.fz-auth *::before,
.fz-auth *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.fz-auth a {
  color: inherit;
  text-decoration: none;
}

.fz-auth-shell {
  display: grid;
  gap: 1rem;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.fz-auth-panel,
.fz-auth-card {
  border: 1px solid var(--fz-auth-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.fz-auth-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.35rem;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 33, 9, 0.94), rgba(0, 110, 47, 0.9)),
    var(--fz-auth-green-dark);
}

.fz-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  color: #ffffff;
  font-weight: 850;
  flex-direction: column;

}

.fz-auth-brand img {
  width: 14rem;
  height: 3rem;
  object-fit: cover;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.2));
}

.fz-auth-kicker {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fz-auth-panel h1,
.fz-auth-card-heading h2 {
  margin: 0;
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-weight: 900;
  line-height: 1.08;
}

.fz-auth-panel h1 {
  max-width: 28rem;
  font-size: clamp(2.1rem, 10vw, 3.25rem);
  color: #ffffff;
}

.fz-auth-panel p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.fz-auth-proof {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.fz-auth-proof span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 750;
}

.fz-auth-proof i {
  color: #86efac;
}

.fz-auth-card {
  padding: 1.25rem;
}

.fz-auth-card-heading {
  margin-bottom: 1.25rem;
}

.fz-auth-card-heading span {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--fz-auth-green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fz-auth-card-heading h2 {
  margin-top: 0.85rem;
  color: var(--fz-auth-ink);
  font-size: clamp(1.8rem, 8vw, 2.35rem);
}

.fz-auth-card-heading p {
  margin: 0.55rem 0 0;
  color: var(--fz-auth-muted);
  line-height: 1.6;
}

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

.fz-auth-field {
  display: grid;
  gap: 0.45rem;
}

.fz-auth-field label {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
}

.fz-auth-field input {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: var(--fz-auth-ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fz-auth-field input:focus {
  border-color: var(--fz-auth-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.fz-auth-field small {
  color: var(--fz-auth-muted);
  font-size: 0.82rem;
}

.fz-auth-submit,
.fz-auth-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fz-auth-submit {
  min-height: 3.2rem;
  border: 0;
  color: #ffffff;
  background: var(--fz-auth-green);
  box-shadow: 0 16px 30px rgba(0, 110, 47, 0.18);
}

.fz-auth-submit:hover,
.fz-auth-secondary-action:hover {
  transform: translateY(-1px);
}

.fz-auth-secondary-action {
  width: fit-content;
  margin-top: 0.85rem;
  min-height: 2.45rem;
  border: 1px solid rgba(3, 105, 161, 0.25);
  color: #075985;
  background: #ffffff;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.fz-auth-alert,
.fz-auth-note,
.fz-auth-subsection,
.fz-auth-check {
  border: 1px solid var(--fz-auth-line);
  border-radius: 8px;
}

.fz-auth-alert {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  line-height: 1.5;
}

.fz-auth-alert strong {
  color: inherit;
}

.fz-auth-alert span {
  display: block;
}

.fz-auth-alert-danger {
  border-color: #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.fz-auth-alert-success {
  border-color: #bbf7d0;
  color: #166534;
  background: #f0fdf4;
}

.fz-auth-alert-warning {
  border-color: #fed7aa;
  color: #9a3412;
  background: #fff7ed;
}

.fz-auth-alert-info {
  border-color: #bae6fd;
  color: #075985;
  background: #f0f9ff;
}

.fz-auth-note {
  padding: 0.9rem 1rem;
  color: #475569;
  background: #f8fafc;
  line-height: 1.6;
}

.fz-auth-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem;
  color: #475569;
  background: #f8fafc;
  line-height: 1.5;
}

.fz-auth-check input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--fz-auth-green);
}

.fz-auth-check a,
.fz-auth-links a,
.fz-auth-bottom-link a {
  color: var(--fz-auth-green);
  font-weight: 850;
}

.fz-auth-subsection {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
}

.fz-auth-subsection strong {
  display: block;
  color: var(--fz-auth-ink);
  font-weight: 900;
}

.fz-auth-subsection p {
  margin: 0.35rem 0 0;
  color: var(--fz-auth-muted);
  line-height: 1.55;
}

.fz-auth-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
  color: #475569;
  font-size: 0.95rem;
}

.fz-auth-bottom-link {
  margin: 0.15rem 0 0;
  color: #475569;
}

.fz-auth .hidden {
  display: none !important;
}

@media (min-width: 760px) {
  .fz-auth {
    display: grid;
    align-items: center;
    padding: 2rem;
  }

  .fz-auth-shell {
    grid-template-columns: minmax(0, 0.94fr) minmax(25rem, 0.76fr);
    align-items: stretch;
    gap: 1.25rem;
  }

  .fz-auth-panel,
  .fz-auth-card {
    padding: 2rem;
  }

  .fz-auth-panel {
    min-height: 39rem;
  }

  .fz-auth-proof {
    margin-top: auto;
  }

  .fz-auth-links {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .fz-auth-panel,
  .fz-auth-card {
    padding: 2.5rem;
  }
}

.fz-page {
  --fz-page-ink: #07130b;
  --fz-page-text: #1f2937;
  --fz-page-muted: #64748b;
  --fz-page-green: #006e2f;
  --fz-page-green-dark: #052e16;
  --fz-page-soft: #f7f9fb;
  --fz-page-line: #dbe4dd;
  min-height: 100vh;
  color: var(--fz-page-text);
  background: var(--fz-page-soft);
  font-family: Inter, var(--tenant-body-font), Arial, sans-serif;
}

.fz-page *,
.fz-page *::before,
.fz-page *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.fz-page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(193, 200, 191, 0.32);
  background:
    radial-gradient(circle at 18% 20%, rgba(34, 197, 94, 0.14), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(5, 46, 22, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.fz-page-heading {
  max-width: 52rem;
}

.fz-page-heading span {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--fz-page-green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fz-page-heading h1 {
  margin: 1rem 0 0;
  color: var(--fz-page-ink);
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-size: clamp(2.2rem, 10vw, 4.25rem);
  font-weight: 900;
  line-height: 1.04;
}

.fz-page-heading p {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--fz-page-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.fz-page-content {
  padding: 3rem 0 4rem;
  background: var(--fz-page-soft);
}

.fz-page .platform-contact-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.fz-page .platform-contact-aside,
.fz-page .platform-contact-card,
.fz-page .platform-legal-content {
  border: 1px solid var(--fz-page-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.fz-page .platform-contact-aside {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 33, 9, 0.94), rgba(0, 110, 47, 0.9)),
    var(--fz-page-green-dark);
}

.fz-page .platform-contact-aside h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 8vw, 2.55rem);
  font-weight: 900;
  line-height: 1.1;
}

.fz-page .platform-contact-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.fz-page .platform-contact-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.fz-page .platform-contact-points span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.fz-page .platform-contact-points i {
  margin: 0;
  color: #86efac;
}

.fz-page .platform-contact-card {
  padding: 1.25rem;
}

.fz-page .platform-contact-card form {
  display: grid;
  gap: 1rem;
}

.fz-page .platform-form-grid {
  display: grid;
  gap: 1rem;
}

.fz-page .platform-contact-card label {
  display: block;
  margin-bottom: 0.45rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 850;
}

.fz-page .platform-contact-card input:not([type="hidden"]),
.fz-page .platform-contact-card textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  color: var(--fz-page-ink);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.fz-page .platform-contact-card textarea {
  min-height: 11rem;
  resize: vertical;
}

.fz-page .platform-contact-card input:focus,
.fz-page .platform-contact-card textarea:focus {
  border-color: var(--fz-page-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.fz-page .platform-contact-card button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border: 0;
  border-radius: 8px !important;
  color: #ffffff;
  background: var(--fz-page-green) !important;
  box-shadow: 0 16px 30px rgba(0, 110, 47, 0.18);
  font: inherit;
  font-weight: 850;
}

.fz-page .platform-captcha-row {
  max-width: 100%;
  overflow: hidden;
}

.fz-page .platform-alert {
  border-radius: 8px;
  padding: 0.9rem 1rem;
  line-height: 1.5;
  font-weight: 800;
}

.fz-page .platform-alert-success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.fz-page .platform-alert-danger {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.fz-page .platform-legal-content {
  max-width: 58rem;
  padding: 1.25rem;
}

.fz-page .platform-legal-content h2 {
  margin: 1.8rem 0 0;
  color: var(--fz-page-ink);
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
  font-weight: 900;
  line-height: 1.2;
}

.fz-page .platform-legal-content h2:first-child {
  margin-top: 0;
}

.fz-page .platform-legal-content p {
  margin: 0.75rem 0 0;
  color: #475569;
  line-height: 1.85;
}

.fz-page .platform-legal-content a {
  color: var(--fz-page-green);
  font-weight: 850;
}

@media (min-width: 720px) {
  .fz-page-hero {
    padding: 5rem 0 4rem;
  }

  .fz-page .platform-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fz-page .platform-contact-card,
  .fz-page .platform-legal-content {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .fz-page .platform-contact-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.25rem;
  }

  .fz-page .platform-contact-aside {
    position: sticky;
    top: 5.5rem;
    padding: 2rem;
  }
}

.fz-club-launch {
  background:
    radial-gradient(circle at 18% 4%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 46%, #eef4f0 100%);
}

.fz-club-launch-main {
  overflow: hidden;
}

.fz-club-launch-hero {
  padding: 2rem 0 4rem;
}

.fz-club-launch-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.fz-club-launch-copy,
.fz-club-launch-card {
  border: 1px solid var(--fz-line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.fz-club-launch-copy {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 33, 9, 0.96), rgba(0, 110, 47, 0.9)),
    var(--fz-green-dark);
}

.fz-club-launch-copy .fz-chip {
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.11);
}

.fz-club-launch-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-size: clamp(2.05rem, 10vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
}

.fz-club-launch-copy p {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.fz-club-launch-proofline,
.fz-club-launch-steps {
  display: grid;
  gap: 0.75rem;
}

.fz-club-launch-proofline span,
.fz-club-launch-steps article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.fz-club-launch-proofline span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.fz-club-launch-proofline i,
.fz-club-launch-steps i {
  color: #86efac;
}

.fz-club-launch-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.fz-club-launch-preview-top {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fz-club-launch-preview-top span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.fz-club-launch-preview-hero {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(187, 247, 208, 0.18), rgba(255, 255, 255, 0.06));
}

.fz-club-launch-preview-hero strong {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
}

.fz-club-launch-preview-hero span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.fz-club-launch-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.75rem;
}

.fz-club-launch-preview-grid span {
  min-height: 2.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.fz-club-launch-steps article {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem;
}

.fz-club-launch-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.fz-club-launch-steps span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.fz-club-launch-user {
  padding-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.fz-club-launch-user strong {
  color: #ffffff;
}

.fz-club-launch-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
}

.fz-club-launch-form,
.fz-club-section-body {
  display: grid;
  gap: 1rem;
}

.fz-club-launch-heading {
  display: grid;
  gap: 0.55rem;
}

.fz-club-launch-heading span,
.fz-club-promo {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--fz-green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fz-club-launch-heading h2 {
  margin: 0;
  color: var(--fz-ink);
  font-family: Inter, var(--tenant-heading-font), Arial, sans-serif;
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.fz-club-launch-heading p,
.fz-club-submit-note {
  margin: 0;
  color: var(--fz-muted);
  line-height: 1.6;
}

.fz-club-form-section {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--fz-card-line);
  border-radius: 8px;
  background: #ffffff;
}

.fz-club-form-section-plan {
  border-color: rgba(0, 110, 47, 0.28);
  background: linear-gradient(180deg, #f7fff9 0%, #ffffff 100%);
}

.fz-club-section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e5e7eb;
}

.fz-club-section-heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  color: var(--fz-green);
  background: var(--fz-green-soft);
}

.fz-club-section-heading strong,
.fz-club-choice-title {
  display: block;
  color: var(--fz-ink);
  font-weight: 900;
}

.fz-club-section-heading p,
.fz-club-choice-text {
  display: block;
  margin: 0.25rem 0 0;
  color: var(--fz-muted);
  line-height: 1.5;
}

.fz-club-field {
  display: grid;
  gap: 0.45rem;
}

.fz-club-field label,
.fz-club-launch-card label {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
}

.fz-club-field input:not([type="radio"]):not([type="color"]),
.fz-club-field textarea,
.fz-club-file-input {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  color: var(--fz-ink);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fz-club-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.fz-club-field input:not([type="radio"]):not([type="color"]):focus,
.fz-club-field textarea:focus,
.fz-club-file-input:focus {
  border-color: var(--fz-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.fz-club-field small {
  color: var(--fz-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.fz-club-two-columns {
  display: grid;
  gap: 1rem;
}

.fz-club-alert {
  border-radius: 8px;
  padding: 0.9rem 1rem;
  line-height: 1.5;
}

.fz-club-alert-danger {
  border: 1px solid #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.fz-club-launch-card .form-error-message,
.fz-club-launch-card ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: #b42318;
  font-size: 0.88rem;
}

.fz-club-launch .platform-plan-choice-grid,
.fz-club-launch .platform-setup-choice-grid {
  gap: 0.75rem;
}

.fz-club-launch .platform-plan-choice,
.fz-club-launch .platform-setup-choice {
  border-radius: 8px;
  border-color: var(--fz-card-line);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.fz-club-launch .platform-plan-choice:hover,
.fz-club-launch .platform-setup-choice:hover,
.fz-club-launch .platform-plan-choice:has(input:checked),
.fz-club-launch .platform-setup-choice:has(input:checked) {
  border-color: var(--fz-green);
  box-shadow: 0 14px 30px rgba(0, 110, 47, 0.12);
}

.fz-club-launch .platform-plan-choice-featured {
  border-color: rgba(0, 110, 47, 0.42);
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 54%);
}

.fz-club-launch .platform-plan-choice-inner {
  padding: 1rem;
}

.fz-club-launch .platform-plan-radio,
.fz-club-radio {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  accent-color: var(--fz-green);
}

.fz-club-launch .platform-plan-title {
  color: var(--fz-ink);
  font-size: 1.08rem;
}

.fz-club-launch .platform-plan-price {
  color: var(--fz-green-dark);
}

.fz-club-launch .platform-plan-badge,
.fz-club-launch .platform-plan-choice-premium .platform-plan-badge,
.fz-club-launch .platform-plan-choice-gold .platform-plan-badge {
  border-color: rgba(0, 110, 47, 0.18);
  color: var(--fz-green);
  background: var(--fz-green-soft);
}

.fz-club-launch .platform-plan-trial {
  grid-template-columns: 2.25rem minmax(0, 1fr);
  border-color: #bbf7d0;
  background: #f0fdf4;
  box-shadow: inset 4px 0 0 var(--fz-green);
}

.fz-club-launch .platform-plan-trial-icon {
  background: var(--fz-green);
  box-shadow: none;
}

.fz-club-launch .platform-plan-trial span span {
  color: var(--fz-green);
}

.fz-club-launch .platform-plan-trial strong {
  color: var(--fz-green-dark);
}

.fz-club-launch .platform-plan-trial em {
  display: none;
}

.fz-club-launch .platform-plan-highlights {
  grid-template-columns: 1fr;
}

.fz-club-launch .platform-plan-highlights i {
  color: var(--fz-green);
}

.fz-club-promo {
  margin-top: 0.65rem;
}

.fz-club-launch .platform-setup-choice {
  padding: 0.95rem;
}

.fz-club-choice-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.fz-club-file-input::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: #334155;
  background: #e2e8f0;
  font: inherit;
  font-weight: 800;
}

.fz-club-color-input {
  width: 100%;
  height: 3.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.35rem;
  background: #ffffff;
}

.fz-club-logo-preview {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.fz-club-logo-preview > span {
  color: var(--fz-muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fz-club-logo-preview div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  border-radius: 8px;
  background: #ffffff;
}

.fz-club-logo-preview img {
  max-width: 100%;
  max-height: 6rem;
  object-fit: contain;
}

.fz-club-logo-preview strong {
  color: #94a3b8;
  font-size: 0.92rem;
  text-align: center;
}

.fz-club-logo-preview p {
  margin: 0;
  color: #166534;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

.fz-club-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--fz-green);
  box-shadow: 0 16px 30px rgba(0, 110, 47, 0.18);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fz-club-submit:hover {
  transform: translateY(-1px);
}

.fz-club-submit-note {
  text-align: center;
  font-size: 0.88rem;
}

.fz-club-launch .hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .fz-club-launch-proofline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .fz-club-launch .platform-plan-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .fz-club-launch-hero {
    padding: 3rem 0 5rem;
  }

  .fz-club-launch-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
  }

  .fz-club-launch-copy {
    position: sticky;
    top: 5.5rem;
    padding: 2rem;
  }

  .fz-club-launch-card {
    padding: 2rem;
  }

  .fz-club-form-section {
    padding: 1.25rem;
  }
}
