:root {
  --ink: #2b123d;
  --muted: #6d6072;
  --soft: #fff4eb;
  --cream: #fffaf4;
  --rose-50: #fff0f3;
  --rose-100: #ffe3db;
  --rose-200: #ffc1ba;
  --accent: #c2185b;
  --accent-dark: #8d0d48;
  --coral: #ff6b3d;
  --plum: #2b123d;
  --white: #ffffff;
  --peach: #ffb26b;
  --blush: #ffebe4;
  --line: rgba(194, 24, 91, 0.16);
  --line-dark: rgba(43, 18, 61, 0.12);
  --brand-gradient: linear-gradient(135deg, #2b123d 0%, #8d0d48 38%, #ef3c4c 68%, #ffb26b 100%);
  --accent-gradient: linear-gradient(135deg, #c2185b 0%, #ef3c4c 48%, #ffb26b 100%);
  --shadow: 0 28px 76px rgba(43, 18, 61, 0.13);
  --soft-shadow: 0 18px 46px rgba(43, 18, 61, 0.075);
  --display: "Fraunces", Georgia, serif;
  --brand: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(233, 30, 99, 0.07), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(255, 111, 97, 0.08), transparent 32rem),
    linear-gradient(180deg, var(--soft) 0%, var(--cream) 46%, #fffaf8 100%);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

section,
main {
  scroll-margin-top: 92px;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(233, 30, 99, 0.28);
  outline-offset: 3px;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.45vw, 5.35rem);
  line-height: 0.96;
}

h1 span {
  display: inline-block;
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 16px 38px rgba(233, 30, 99, 0.16);
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.09);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(22px) saturate(1.08);
  box-shadow: 0 10px 30px rgba(36, 21, 30, 0.035);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.96;
}

.brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.78rem;
  font-weight: 700;
  line-height: 1;
}

.brand-name span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  margin-left: auto;
  color: rgba(36, 21, 30, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--coral));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button,
.compare-button,
.modal-close,
.price-card a,
.demo-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.header-cta,
.primary-button,
.compare-button,
.price-card a,
.demo-form button {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(233, 30, 99, 0.25);
}

.header-cta {
  padding: 0 22px;
}

.primary-button {
  min-height: 54px;
  padding: 0 28px;
}

.secondary-button {
  min-height: 54px;
  border: 1px solid rgba(233, 30, 99, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  padding: 0 24px;
  box-shadow: 0 12px 30px rgba(36, 21, 30, 0.05);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.compare-button:hover,
.price-card a:hover,
.demo-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(233, 30, 99, 0.27);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  min-height: min(780px, calc(100vh - 74px));
  padding: clamp(54px, 6vw, 84px) clamp(18px, 6vw, 88px) clamp(50px, 6vw, 78px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: -18rem -8rem auto auto;
  z-index: -1;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.16), rgba(255, 111, 97, 0.1) 42%, transparent 68%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 11rem;
  background: linear-gradient(180deg, transparent, rgba(255, 247, 248, 0.18) 62%, transparent);
  content: "";
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-subtext,
.how-copy > p,
.workflow-copy p,
.demo-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-text {
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.trust-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: rgba(80, 69, 93, 0.68);
}

.trust-lock::before {
  position: absolute;
  right: 4px;
  bottom: 2px;
  left: 4px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.trust-lock::after {
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.trust-mobile::before {
  position: absolute;
  inset: 2px 5px;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.trust-mobile::after {
  position: absolute;
  right: 9px;
  bottom: 4px;
  width: 4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.trust-clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.trust-clock::before,
.trust-clock::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.trust-clock::after {
  top: 10px;
  left: 10px;
  width: 6px;
  height: 2px;
}

.trust-heart::before {
  position: absolute;
  inset: 4px 2px 2px;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  border-radius: 4px;
  content: "";
  transform: rotate(45deg);
}

.trust-heart::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  perspective: 1100px;
}

.dashboard-mockup {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px 1fr;
  width: min(100%, 820px);
  margin: 0 auto;
  border: 1px solid rgba(233, 30, 99, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 250, 0.92));
  box-shadow: 0 34px 92px rgba(188, 18, 77, 0.15);
  overflow: hidden;
  transform: rotateX(1deg) rotateY(-2deg);
  animation: floatCard 7s ease-in-out infinite;
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 244, 0.88));
  border-right: 1px solid var(--line);
}

.mockup-sidebar span {
  display: flex;
  align-items: center;
  min-height: 32px;
  border-radius: 12px;
  color: rgba(36, 21, 30, 0.54);
  padding: 0 10px;
  font-size: 0.65rem;
  font-weight: 800;
}

.mockup-sidebar .sidebar-logo {
  width: 36px;
  min-height: 36px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  box-shadow: 0 14px 26px rgba(233, 30, 99, 0.2);
}

.mockup-sidebar span.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(36, 21, 30, 0.04);
}

.mockup-main {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

.mockup-main.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.mockup-topbar,
.product-top,
.chart-head,
.student-row,
.class-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tiny-label,
.metric-row span,
.product-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mockup-topbar strong,
.product-top strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.status-pill {
  min-width: max-content;
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--accent-dark);
  padding: 9px 12px;
  font-size: 0.76rem;
  font-weight: 800;
}

.metric-row,
.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-row div,
.product-metrics div,
.chart-card,
.registrations-card,
.upcoming-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(36, 21, 30, 0.045);
}

.metric-row div,
.product-metrics div {
  padding: 16px;
}

.metric-row strong,
.product-metrics strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
}

.mockup-content,
.dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.9fr);
  gap: 14px;
}

.chart-card,
.registrations-card,
.upcoming-card {
  padding: 18px;
}

.chart-head span,
.mini-title {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.chart-head strong {
  color: var(--accent);
}

.chart-line {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 142px;
  margin-top: 18px;
  padding-top: 12px;
}

.chart-line span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.74), rgba(255, 111, 97, 0.2));
}

.chart-line span:nth-child(1) { height: 34%; }
.chart-line span:nth-child(2) { height: 48%; }
.chart-line span:nth-child(3) { height: 42%; }
.chart-line span:nth-child(4) { height: 68%; }
.chart-line span:nth-child(5) { height: 84%; }
.chart-line span:nth-child(6) { height: 72%; }

.student-row,
.class-row {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.78);
  padding: 10px 12px;
}

.student-row span,
.class-row span {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--rose-100);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.student-row p,
.class-row p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.student-row strong,
.class-row strong {
  color: var(--accent);
  font-size: 0.74rem;
}

.section-shell,
.feature-strip,
.how-section,
.product-section,
.pricing-section,
.demo-section {
  padding: clamp(48px, 5.4vw, 76px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.center-heading {
  justify-items: center;
  text-align: center;
}

.center-heading .section-subtext {
  margin-left: auto;
  margin-right: auto;
}

.feature-strip {
  background: transparent;
}

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

.workflow-card,
.feature-card,
.price-card,
.demo-form,
.product-dashboard,
.dance-visual {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.workflow-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 198px;
  padding: 22px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.workflow-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.09), transparent 68%);
  content: "";
}

.workflow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.24);
  box-shadow: 0 24px 60px rgba(188, 18, 77, 0.11);
}

.workflow-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 228, 235, 0.76));
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(233, 30, 99, 0.1), 0 10px 22px rgba(233, 30, 99, 0.08);
}

.strip-grid p,
.feature-card p,
.price-card p,
.price-card li,
.check-list li {
  color: var(--muted);
  line-height: 1.65;
}

.strip-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.workflow-icon span,
.registration-icon span,
.analytics-icon span {
  display: block;
  border-radius: 999px;
  background: var(--accent);
}

.registration-icon {
  align-content: center;
  gap: 4px;
}

.registration-icon span {
  width: 19px;
  height: 3px;
}

.registration-icon span:nth-child(2) {
  width: 24px;
  opacity: 0.55;
}

.registration-icon span:nth-child(3) {
  width: 14px;
  opacity: 0.35;
}

.payment-icon span,
.message-icon span,
.marketing-icon span {
  width: 22px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 7px;
}

.payment-icon span {
  background: linear-gradient(90deg, transparent 48%, rgba(233, 30, 99, 0.16) 48%);
}

.roster-icon {
  grid-template-columns: repeat(2, 10px);
  gap: 5px;
}

.roster-icon span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.message-icon span {
  position: relative;
  height: 18px;
  border-radius: 10px;
}

.message-icon span::after {
  position: absolute;
  right: 3px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--rose-100);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
}

.analytics-icon {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.analytics-icon span {
  width: 5px;
}

.analytics-icon span:nth-child(1) { height: 14px; }
.analytics-icon span:nth-child(2) { height: 22px; }
.analytics-icon span:nth-child(3) { height: 18px; }

.marketing-icon span {
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent) 0 4px, transparent 5px);
}

.mini-form,
.mini-payment,
.mini-roster-lines,
.mini-message,
.mini-trend,
.mini-campaign {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.78);
  padding: 13px;
}

.mini-form {
  display: grid;
  gap: 8px;
}

.mini-form span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(36, 21, 30, 0.1);
}

.mini-form span:nth-child(2) {
  width: 62%;
}

.mini-form strong,
.mini-payment span,
.mini-campaign span {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-payment strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.mini-roster-lines,
.mini-trend {
  display: flex;
  align-items: end;
  gap: 8px;
}

.mini-roster-lines span {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.14);
}

.mini-roster-lines span:nth-child(2) {
  flex: 0.72;
}

.mini-roster-lines span:nth-child(3) {
  flex: 0.44;
}

.mini-message {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-trend span {
  flex: 1;
  border-radius: 999px 999px 7px 7px;
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.62), rgba(233, 30, 99, 0.12));
}

.mini-trend span:nth-child(1) { height: 28px; }
.mini-trend span:nth-child(2) { height: 44px; }
.mini-trend span:nth-child(3) { height: 34px; }

.mini-trend strong,
.mini-campaign strong {
  color: var(--accent);
  font-size: 0.9rem;
  margin-left: auto;
}

.mini-campaign {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-section {
  display: block;
  background: transparent;
  overflow: hidden;
}

.how-section .section-heading,
.product-section .section-heading {
  justify-items: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.how-section .section-heading h2,
.product-section .section-heading h2,
.how-section .section-heading > p:not(.eyebrow),
.product-section .section-heading > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
}

.how-copy > p {
  max-width: 620px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.steps-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(36, 21, 30, 0.05);
}

.steps-grid span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dance-visual {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.12), transparent 18rem),
    #fff;
  overflow: hidden;
}

.dance-visual::before {
  position: absolute;
  inset: 12% -10% auto auto;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(233, 30, 99, 0.22);
  border-radius: 50%;
  content: "";
}

.dance-visual img {
  position: absolute;
  right: -18px;
  bottom: -12px;
  width: min(112%, 620px);
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dance-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 210px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: var(--shadow);
}

.dance-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.55rem;
}

.section-shell {
  background: transparent;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-showcase {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.feature-card,
.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card {
  grid-column: span 2;
  display: grid;
  align-content: start;
  min-height: 300px;
}

.feature-card-large {
  grid-column: span 3;
  min-height: 380px;
}

.feature-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.25);
  box-shadow: 0 24px 64px rgba(188, 18, 77, 0.14);
}

.feature-card p {
  margin-bottom: 20px;
  max-width: 560px;
}

.feature-icon {
  width: max-content;
  height: auto;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(233, 30, 99, 0.08);
  box-shadow: none;
  text-transform: uppercase;
}

.card-preview,
.feature-chip-row,
.feature-roster,
.message-preview,
.mini-bars {
  margin-top: auto;
}

.card-preview {
  position: relative;
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(233, 30, 99, 0.12), transparent 10rem),
    rgba(255, 250, 245, 0.82);
  padding: 20px;
  overflow: hidden;
}

.page-preview {
  min-height: 180px;
}

.page-preview span {
  display: block;
  width: 76px;
  height: 12px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.24);
}

.page-preview strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.page-preview p {
  width: max-content;
  margin: 12px 0 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--accent);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.page-preview i {
  position: absolute;
  right: -26px;
  bottom: -38px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 50%;
}

.form-preview {
  display: grid;
  gap: 12px;
  min-height: 180px;
}

.form-preview span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(36, 21, 30, 0.1);
}

.form-preview span:nth-child(2) {
  width: 72%;
}

.form-preview span:nth-child(3) {
  width: 52%;
}

.form-preview strong {
  width: max-content;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.1);
  color: var(--accent-dark);
  padding: 9px 12px;
  font-size: 0.82rem;
}

.feature-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-chip-row span,
.feature-roster strong {
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--accent-dark);
  padding: 9px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-roster {
  display: flex;
  align-items: center;
}

.feature-roster span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-right: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-roster strong {
  margin-left: 16px;
}

.message-preview {
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 20px 20px 20px 6px;
  background: var(--cream);
  color: var(--accent-dark);
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 72px;
}

.mini-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(233, 30, 99, 0.72), rgba(255, 111, 97, 0.18));
}

.mini-bars span:nth-child(1) { height: 38%; }
.mini-bars span:nth-child(2) { height: 58%; }
.mini-bars span:nth-child(3) { height: 82%; }
.mini-bars span:nth-child(4) { height: 66%; }

.product-section {
  display: block;
  background: transparent;
}

.workflow-copy {
  max-width: 620px;
}

.product-tabs {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 54px);
}

.product-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 850;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-tabs button::after {
  color: rgba(233, 30, 99, 0.7);
  content: "→";
}

.product-tabs button:hover,
.product-tabs button[aria-selected="true"] {
  border-color: rgba(233, 30, 99, 0.22);
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: 0 16px 36px rgba(36, 21, 30, 0.055);
  transform: translateX(4px);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  content: "";
}

.product-platform {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.86));
  box-shadow: 0 28px 86px rgba(188, 18, 77, 0.12);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
}

.product-panel {
  height: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.builder-preview,
.portal-preview,
.admin-preview,
.payments-preview,
.marketing-preview,
.analytics-preview {
  display: grid;
  gap: 16px;
  min-height: 430px;
}

.builder-preview {
  grid-template-columns: 0.58fr 1fr;
  align-items: stretch;
}

.preview-sidebar-card,
.builder-canvas,
.campaign-card,
.qr-card,
.preview-topbar,
.portal-grid div,
.payment-footer,
.insight-row {
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: 24px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(36, 21, 30, 0.045);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.preview-topbar strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.builder-preview strong,
.campaign-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.builder-preview p,
.campaign-card p {
  color: var(--muted);
  line-height: 1.6;
}

.builder-canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(233, 30, 99, 0.12), transparent 13rem),
    var(--cream);
}

.builder-canvas span {
  display: block;
  width: 82px;
  height: 12px;
  margin-bottom: 92px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.22);
}

.builder-canvas strong {
  display: block;
  max-width: 330px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.builder-canvas i {
  display: inline-block;
  width: 124px;
  height: 44px;
  margin: 28px 10px 0 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(233, 30, 99, 0.1);
}

.builder-canvas i:first-of-type {
  background: linear-gradient(135deg, var(--accent), var(--coral));
}

.builder-fields {
  display: flex;
  flex-wrap: wrap;
}

.builder-tools {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.builder-tools span,
.payment-footer span,
.insight-row span,
.portal-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.builder-tools span {
  border-radius: 14px;
  background: rgba(255, 240, 244, 0.82);
  color: var(--accent-dark);
  padding: 10px 12px;
  text-transform: none;
}

.preview-progress {
  height: 10px;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.11);
  overflow: hidden;
}

.preview-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--coral));
}

.portal-preview,
.admin-preview,
.payments-preview,
.analytics-preview {
  align-content: start;
}

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

.portal-grid strong,
.payment-footer strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.payment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.insight-row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.marketing-preview {
  grid-template-columns: 1fr 180px;
  align-content: start;
}

.marketing-preview .class-row {
  grid-column: 1 / -1;
}

.qr-card {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
  background:
    linear-gradient(90deg, rgba(233, 30, 99, 0.12) 12px, transparent 12px) 0 0 / 32px 32px,
    linear-gradient(rgba(233, 30, 99, 0.12) 12px, transparent 12px) 0 0 / 32px 32px,
    var(--white);
}

.product-metrics {
  margin: 0 0 16px;
}

.pricing-section {
  background: transparent;
}

.compare-button {
  margin-top: 12px;
  padding: 0 22px;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
}

.tier-kicker {
  width: max-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-kicker {
  border: 1px solid rgba(233, 30, 99, 0.16);
  background: var(--rose-50);
  color: var(--accent-dark);
}

.popular-badge {
  width: max-content;
  margin: -8px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(233, 30, 99, 0.2);
}

.pricing-note {
  margin: 0 0 16px;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 10px 0 20px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.1rem);
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1rem;
}

.price-card ul,
.tier-details {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.tier-highlights {
  min-height: 170px;
}

.price-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
}

.tier-details {
  margin-top: -4px;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.tier-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
}

.detail-list span {
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.08);
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.price-card a {
  margin-top: auto;
  padding: 0 18px;
}

.price-growth,
.price-scale {
  color: var(--white);
}

.price-growth {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 111, 97, 0.16), transparent 15rem),
    linear-gradient(160deg, #4b183d, #7a254f);
}

.price-scale {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 0%, rgba(233, 30, 99, 0.2), transparent 15rem),
    linear-gradient(160deg, #2f1029, #4a173e);
}

.price-growth p,
.price-growth li,
.price-growth .pricing-note,
.price-growth strong span,
.price-scale p,
.price-scale li,
.price-scale .pricing-note,
.price-scale strong span {
  color: rgba(255, 255, 255, 0.78);
}

.price-growth li,
.price-growth .tier-details,
.price-scale li,
.price-scale .tier-details {
  border-color: rgba(255, 255, 255, 0.16);
}

.price-growth .tier-kicker,
.price-scale .tier-kicker {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.price-growth .tier-details summary,
.price-scale .tier-details summary {
  color: #ffd8e2;
}

.price-growth .detail-list span,
.price-scale .detail-list span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.price-growth a,
.price-scale a {
  background: var(--white);
  color: var(--accent);
  box-shadow: none;
}

.comparison-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(12px, 3vw, 38px);
  overflow: auto;
}

.comparison-modal.is-open {
  display: grid;
  place-items: center;
}

.comparison-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 30, 0.48);
  backdrop-filter: blur(12px);
}

.comparison-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px;
  width: min(1080px, 100%);
  max-height: min(820px, 90vh);
  border: 1px solid rgba(233, 30, 99, 0.16);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 34px 96px rgba(36, 21, 30, 0.28);
  overflow: hidden;
}

.comparison-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 28px 0;
}

.comparison-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.5vw, 3.7rem);
}

.modal-close {
  min-width: 86px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 18px;
}

.comparison-table-wrap {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 0 28px 28px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 13px 14px;
  text-align: center;
  vertical-align: middle;
}

.comparison-table td:first-child,
.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--plum);
  color: var(--white);
}

.comparison-table thead span {
  color: #ffd8e2;
  font-size: 0.75rem;
}

.comparison-table tbody td:not(:first-child) {
  color: var(--accent);
  font-weight: 900;
}

.comparison-table tbody td:first-child {
  color: var(--muted);
  font-weight: 700;
}

.compare-group th {
  background: var(--rose-50);
  color: var(--ink);
  font-size: 0.8rem;
  text-align: left;
  text-transform: uppercase;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 0%, rgba(233, 30, 99, 0.08), transparent 22rem),
    transparent;
}

.demo-copy {
  max-width: 680px;
}

.demo-note {
  width: fit-content;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  padding: 16px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: rgba(36, 21, 30, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(36, 21, 30, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(233, 30, 99, 0.14);
}

.demo-form button {
  min-height: 54px;
  margin-top: 4px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--plum);
  color: var(--white);
}

.site-footer .brand-name,
.site-footer p {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

.dance-visual.reveal,
.dance-visual.reveal.is-visible {
  transform: none;
}

.feature-card:nth-child(2),
.price-card:nth-child(2),
.strip-grid article:nth-child(2),
.steps-grid article:nth-child(2) {
  transition-delay: 70ms;
}

.feature-card:nth-child(3),
.price-card:nth-child(3),
.strip-grid article:nth-child(3),
.steps-grid article:nth-child(3) {
  transition-delay: 140ms;
}

.feature-card:nth-child(4),
.strip-grid article:nth-child(4),
.steps-grid article:nth-child(4) {
  transition-delay: 210ms;
}

.feature-card:nth-child(5),
.strip-grid article:nth-child(5) {
  transition-delay: 280ms;
}

.feature-card:nth-child(6),
.strip-grid article:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(0);
  }
  50% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: 820px;
  }

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

  .dashboard-mockup {
    margin: 0 auto;
  }

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

  .feature-card,
  .feature-card-large {
    grid-column: span 3;
  }

  .product-platform {
    min-height: auto;
  }

  .dance-visual {
    min-height: 460px;
  }
}

@media (max-width: 920px) {
  .site-header {
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .demo-section {
    grid-template-columns: 1fr;
  }

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

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    grid-column: auto;
  }

  .price-growth,
  .price-scale {
    transform: none;
  }

  .tier-highlights {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .site-nav {
    inset: 68px 14px auto;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .hero-actions,
  .primary-button,
  .secondary-button,
  .compare-button {
    width: 100%;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
    border-radius: 24px;
    transform: none;
    animation: none;
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-topbar,
  .product-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-row,
  .product-metrics,
  .mockup-content,
  .dashboard-lower,
  .steps-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .chart-line {
    height: 110px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
  }

  .hero-visual .mockup-content {
    display: none;
  }

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

  .builder-preview,
  .marketing-preview {
    grid-template-columns: 1fr;
  }

  .builder-preview,
  .portal-preview,
  .admin-preview,
  .payments-preview,
  .marketing-preview,
  .analytics-preview {
    min-height: auto;
  }

  .dance-visual {
    min-height: 390px;
  }

  .dance-visual img {
    right: -58px;
    width: 125%;
  }

  .dance-card {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
  }

  .feature-card,
  .price-card,
  .demo-form,
  .product-dashboard,
  .product-platform,
  .steps-grid article,
  .workflow-card {
    border-radius: 20px;
    padding: 22px;
  }

  .workflow-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .card-preview {
    border-radius: 20px;
  }

  .comparison-modal {
    padding: 10px;
  }

  .comparison-panel {
    border-radius: 22px;
  }

  .comparison-header {
    display: grid;
    padding: 20px 20px 0;
  }

  .modal-close {
    width: 100%;
  }

  .comparison-table-wrap {
    padding: 0 20px 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .hero-proof span {
    width: 100%;
  }

  .section-shell,
  .feature-strip,
  .how-section,
  .product-section,
  .pricing-section,
  .demo-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Brand-theme pass inspired by the BeyondEight identity board. */
body {
  background:
    linear-gradient(90deg, rgba(43, 18, 61, 0.035) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(43, 18, 61, 0.026) 1px, transparent 1px) 0 0 / 86px 86px,
    radial-gradient(circle at 84% 8%, rgba(255, 178, 107, 0.22), transparent 24rem),
    radial-gradient(circle at 10% 14%, rgba(194, 24, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffaf4 0%, #fff4eb 42%, #fffaf4 100%);
}

h1,
h2 {
  color: var(--plum);
}

h1 {
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  line-height: 0.95;
}

h1 span,
.brand-name span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.site-header {
  border-bottom: 1px solid rgba(43, 18, 61, 0.08);
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(22px);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 16px;
  background: #fffaf4;
  box-shadow: 0 12px 26px rgba(43, 18, 61, 0.08);
}

.brand-name {
  font-family: var(--display);
  font-weight: 800;
}

.site-nav a,
.header-cta,
.eyebrow,
.tiny-label,
.demo-form label,
.pricing-note {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(43, 18, 61, 0.68);
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.header-cta {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 16px 34px rgba(194, 24, 91, 0.18);
}

.hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(30px, 4vw, 58px);
  min-height: auto;
  padding-top: clamp(34px, 4.2vw, 48px);
  padding-bottom: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.88) 47%, rgba(255, 244, 235, 0.34) 100%),
    url("assets/dancer-hero.png") right center / auto 100% no-repeat;
}

.hero::before {
  inset: 6% auto auto 6%;
  width: 5.4rem;
  height: 2px;
  border-radius: 0;
  background: var(--accent-gradient);
}

.hero::after {
  inset: auto 0 0;
  height: 1px;
  background: rgba(43, 18, 61, 0.11);
}

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

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

.hero-proof {
  gap: 10px 14px;
  margin-top: 18px;
}

.hero-proof span {
  min-height: 34px;
  padding: 4px 8px 4px 2px;
  font-size: 0.78rem;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 18px;
  background: var(--accent-gradient);
}

.center-heading .eyebrow::after {
  margin-right: auto;
  margin-left: auto;
}

.hero-text,
.section-subtext,
.section-heading > p:not(.eyebrow),
.demo-copy p {
  color: rgba(43, 18, 61, 0.72);
}

.primary-button,
.compare-button,
.price-card a,
.demo-form button,
.mockup-sidebar .sidebar-logo,
.product-preview-icon,
.price-card .popular-badge,
.featured-badge {
  background: var(--accent-gradient);
}

.primary-button,
.compare-button,
.price-card a,
.demo-form button {
  box-shadow: 0 18px 38px rgba(194, 24, 91, 0.24);
}

.secondary-button,
.hero-proof span,
.workflow-card,
.feature-card,
.price-card,
.demo-form,
.comparison-modal-content,
.dashboard-mockup,
.product-platform,
.card-preview,
.preview-sidebar-card,
.campaign-card,
.qr-card,
.payment-footer,
.steps-grid article,
.demo-note {
  border-color: rgba(43, 18, 61, 0.1);
  background: rgba(255, 250, 244, 0.88);
  box-shadow: var(--soft-shadow);
}

.hero-visual {
  align-self: stretch;
}

.dashboard-mockup {
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 7%, rgba(255, 178, 107, 0.24), transparent 15rem),
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(255, 236, 228, 0.92));
}

.dashboard-mockup::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(43, 18, 61, 0.72), rgba(43, 18, 61, 0.72)),
    url("assets/Logo.png") center / cover no-repeat;
  box-shadow: 0 20px 46px rgba(43, 18, 61, 0.22);
}

.mockup-sidebar {
  background: linear-gradient(180deg, #2b123d, #1c0829);
  border-right: 0;
}

.mockup-sidebar span {
  color: rgba(255, 250, 244, 0.62);
}

.mockup-sidebar span.is-active {
  background: rgba(255, 255, 255, 0.11);
  color: #fffaf4;
}

.mockup-topbar,
.metric-row div,
.chart-card,
.registrations-card,
.upcoming-card {
  background: rgba(255, 255, 255, 0.78);
}

.status-pill,
.mini-message,
.mini-campaign,
.payment-status,
.tag,
.pricing-note {
  background: rgba(255, 227, 219, 0.82);
  color: var(--accent-dark);
}

.chart-line span,
.preview-bars span,
.payment-progress span,
.registration-icon span,
.payment-icon span,
.analytics-icon span,
.chart-preview span {
  background: var(--accent-gradient);
}

.feature-strip,
.section-shell,
.how-section,
.product-section,
.pricing-section,
.demo-section {
  border-top: 1px solid rgba(43, 18, 61, 0.08);
}

.workflow-card::after {
  background: radial-gradient(circle, rgba(255, 178, 107, 0.18), transparent 70%);
}

.workflow-icon {
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(255, 227, 219, 0.78));
  color: var(--accent-dark);
}

.how-section,
.product-section {
  background:
    linear-gradient(180deg, rgba(43, 18, 61, 0.035), transparent 34%),
    transparent;
}

.dance-visual {
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 178, 107, 0.18), transparent 18rem),
    linear-gradient(145deg, #fffaf4, #ffebe4);
}

.dance-visual::before {
  border-color: rgba(194, 24, 91, 0.22);
}

.dance-card {
  background: rgba(255, 250, 244, 0.9);
}

.product-tabs button {
  border-color: rgba(43, 18, 61, 0.1);
  background: rgba(255, 250, 244, 0.7);
}

.product-tabs button:hover,
.product-tabs button[aria-selected="true"] {
  border-color: rgba(194, 24, 91, 0.26);
  background: #fffaf4;
  color: var(--accent-dark);
}

.price-growth,
.price-scale {
  color: #fffaf4;
}

.price-growth {
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 178, 107, 0.22), transparent 15rem),
    linear-gradient(160deg, #4a103a, #8d0d48);
}

.price-scale {
  background:
    radial-gradient(circle at 88% 0%, rgba(239, 60, 76, 0.24), transparent 15rem),
    linear-gradient(160deg, #210a32, #40113d);
}

.comparison-table thead {
  background: var(--plum);
}

.demo-section {
  background:
    linear-gradient(90deg, rgba(43, 18, 61, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    radial-gradient(circle at 80% 0%, rgba(255, 178, 107, 0.18), transparent 24rem);
}

.demo-form input,
.demo-form select {
  background: rgba(255, 255, 255, 0.86);
}

.site-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 178, 107, 0.18), transparent 20rem),
    linear-gradient(120deg, #210a32, #2b123d 46%, #8d0d48 100%);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 244, 235, 0.88)),
      url("assets/dancer-hero.png") right top / auto 62vh no-repeat;
  }

  .dashboard-mockup::before {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 244, 235, 0.9)),
      url("assets/dancer-hero.png") 64% top / auto 52vh no-repeat;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding-top: 2rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 12vw, 4.1rem);
  }

  .hero-visual {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }
}

/* Theme correction: keep the original message while using the new palette. */
.brand {
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.75) translateY(-9%);
  transform-origin: 50% 20%;
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 4.15vw, 4.25rem);
  line-height: 1;
}

h2 {
  max-width: 1320px;
  font-size: clamp(2.35rem, 3.4vw, 3.75rem);
  line-height: 1.04;
}

.center-heading h2,
.section-heading h2 {
  text-wrap: balance;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  padding-top: clamp(38px, 4.4vw, 54px);
  padding-bottom: clamp(28px, 3.4vw, 42px);
}

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

.eyebrow {
  margin-bottom: 10px;
}

.eyebrow::after {
  width: 58px;
  margin-top: 14px;
}

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

.dashboard-mockup::before {
  content: none;
}

.mockup-topbar {
  padding-right: 0;
}

.section-heading {
  max-width: 1180px;
}

.center-heading {
  max-width: 1180px;
}

.center-heading .section-subtext {
  max-width: 860px;
}

@media (min-width: 1120px) {
  .center-heading h2 {
    max-width: 1320px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  h1 {
    font-size: clamp(2.75rem, 10vw, 3.45rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 7.6vw, 2.8rem);
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 30px;
  }
}

/* Header and hero polish requested after theme pass. */
.brand-mark {
  width: 58px;
  height: 70px;
  overflow: hidden;
}

.brand-mark img {
  width: 115px;
  height: 115px;
  max-width: none;
  object-fit: contain;
  object-position: 0 0;
  mix-blend-mode: multiply;
  transform: translate(-28px, -2px);
}

.eyebrow {
  margin-bottom: 18px;
}

.eyebrow::after,
.hero::before {
  display: none;
}

h1 {
  overflow: visible;
  padding-bottom: 0.08em;
  line-height: 1.08;
}

.hero-emphasis {
  display: inline-block;
  padding-right: 0.04em;
  padding-bottom: 0.08em;
  font-style: italic;
  line-height: 1.06;
}

@media (max-width: 640px) {
  .brand-mark {
    width: 46px;
    height: 56px;
  }

  .brand-mark img {
    width: 92px;
    height: 92px;
    transform: translate(-23px, -2px);
  }

  .eyebrow {
    margin-bottom: 14px;
  }
}

/* Mockup-inspired lower page system. Hero stays intact; sections below become lighter and more editorial. */
.feature-strip {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(36px, 5vw, 64px);
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}

.feature-strip .center-heading {
  margin-bottom: 24px;
}

.feature-strip .center-heading .eyebrow,
.feature-strip .center-heading .section-subtext {
  display: none;
}

.feature-strip h2,
.themes-section h2,
.pricing-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.feature-strip h2::after,
.pricing-section h2::after,
.themes-section h2::after {
  content: "";
  display: inline-block;
  width: 0;
}

.feature-strip h2 {
  max-width: none;
  text-align: center;
}

.feature-strip h2::first-letter {
  color: inherit;
}

.strip-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1180px;
  margin-inline: auto;
  padding: 26px 28px;
  border: 1px solid rgba(43, 18, 61, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 70px rgba(43, 18, 61, 0.07);
}

.workflow-card {
  min-height: 0;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  text-align: center;
}

.workflow-card:last-child {
  border-right: 0;
}

.workflow-card::after,
.workflow-card > div:last-child {
  display: none;
}

.workflow-icon {
  width: 54px;
  height: 54px;
  margin-inline: auto;
  border-radius: 50%;
  background: #fff0f3;
  box-shadow: none;
}

.workflow-card h3 {
  margin-top: 12px;
  font-size: 0.95rem;
}

.workflow-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.how-section {
  padding-top: clamp(50px, 7vw, 88px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.how-section .section-heading {
  margin-bottom: 28px;
}

.how-section .section-heading .eyebrow,
.product-section .section-heading .eyebrow {
  display: none;
}

.how-section .section-heading h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 3.3vw, 3.35rem);
}

.steps-grid {
  position: relative;
  gap: 18px;
}

.steps-grid article {
  min-height: 190px;
  padding: 24px 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf4, #fff0f3);
  box-shadow: 0 18px 42px rgba(43, 18, 61, 0.06);
}

.steps-grid article span {
  width: 30px;
  height: 30px;
  background: var(--accent);
  font-size: 0.8rem;
}

.dance-visual {
  min-height: 430px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.dance-visual img {
  object-position: center bottom;
}

.product-section {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.product-layout {
  max-width: 1180px;
  margin-inline: auto;
}

.pricing-section {
  padding-top: clamp(48px, 7vw, 86px);
  background: #fff;
}

.pricing-grid {
  max-width: 1120px;
  align-items: stretch;
}

.price-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.price-growth {
  color: var(--ink);
  border-color: rgba(194, 24, 91, 0.4);
  background: linear-gradient(180deg, rgba(255, 240, 243, 0.9), rgba(255, 255, 255, 0.96));
}

.price-scale {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.price-growth .pricing-note,
.price-growth li,
.price-growth .tier-details summary,
.price-scale .pricing-note,
.price-scale li,
.price-scale .tier-details summary {
  color: var(--muted);
}

.price-growth h3,
.price-growth strong,
.price-scale h3,
.price-scale strong {
  color: var(--ink);
}

.price-growth a,
.price-scale a {
  background: var(--accent-gradient);
  color: #fff;
}

.themes-section {
  padding: clamp(46px, 7vw, 86px) clamp(18px, 6vw, 88px);
  background: linear-gradient(180deg, #fffaf4, #fff);
}

.themes-section h2 span {
  color: var(--accent);
  font-style: italic;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 32px auto 0;
}

.theme-card {
  text-align: center;
}

.theme-preview {
  display: grid;
  min-height: 126px;
  place-items: end start;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(43, 18, 61, 0.12);
}

.theme-preview span {
  max-width: 150px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.05;
  text-align: left;
}

.theme-card h3 {
  margin: 16px 0 6px;
  font-size: 0.98rem;
}

.theme-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.theme-elegant .theme-preview {
  background: linear-gradient(135deg, #2b123d, #c2185b 62%, #ff6b3d);
}

.theme-bold .theme-preview {
  background: linear-gradient(135deg, #0d0d0f, #272229);
}

.theme-soft .theme-preview {
  background: linear-gradient(135deg, #c9a69b, #f6d5ca);
}

.theme-vibrant .theme-preview {
  background: linear-gradient(135deg, #8d0d48, #ef3c4c 55%, #ffb26b);
}

.theme-minimal .theme-preview {
  background: linear-gradient(135deg, #111, #2b123d);
}

.launch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto clamp(42px, 6vw, 76px);
  padding: clamp(30px, 5vw, 54px) clamp(28px, 5vw, 64px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 30%, rgba(255, 178, 107, 0.2), transparent 20rem),
    linear-gradient(110deg, #2b123d, #8d0d48 48%, #d9165f);
  color: #fff;
  overflow: hidden;
}

.launch-cta h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.launch-cta p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.launch-cta .primary-button {
  flex: 0 0 auto;
  background: var(--accent-gradient);
}

.setup-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.setup-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.setup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 18, 61, 0.5);
}

.setup-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 178, 107, 0.18), transparent 15rem),
    #fffaf4;
  box-shadow: 0 34px 96px rgba(43, 18, 61, 0.28);
}

.setup-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.setup-progress {
  height: 8px;
  margin: 12px 78px 28px 0;
  border-radius: 999px;
  background: rgba(43, 18, 61, 0.08);
  overflow: hidden;
}

.setup-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-gradient);
  transition: width 220ms ease;
}

.setup-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.setup-step.is-active {
  display: block;
}

.setup-step h2 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.setup-options,
.setup-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.setup-options label,
.setup-fields label {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(43, 18, 61, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 800;
}

.setup-options label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.setup-fields input {
  width: 100%;
  border: 1px solid rgba(43, 18, 61, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
}

.setup-note,
.setup-message {
  color: var(--muted);
}

.setup-actions {
  position: sticky;
  z-index: 4;
  bottom: -22px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 28px -22px -22px;
  padding: 16px 22px;
  border-top: 1px solid rgba(43, 18, 61, 0.08);
  background: rgba(255, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.setup-actions button {
  min-width: 132px;
}

.setup-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .strip-grid,
  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-card {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 18, 61, 0.1);
  }

  .workflow-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .launch-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .strip-grid,
  .theme-grid,
  .setup-options,
  .setup-fields {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    border-bottom: 1px solid rgba(43, 18, 61, 0.1);
  }

  .workflow-card:last-child {
    border-bottom: 0;
  }

  .theme-preview {
    min-height: 150px;
  }

  .setup-actions {
    flex-direction: column;
  }

  .setup-actions button {
    width: 100%;
  }
}

/* Full website setup flow inspired by the supplied onboarding mockup. */
.website-setup-panel {
  width: min(1180px, calc(100vw - 28px));
  max-height: min(820px, calc(100vh - 28px));
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fffaf7, #fff5f7);
}

.setup-shell-heading {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.setup-step {
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(43, 18, 61, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(43, 18, 61, 0.07);
}

.setup-step-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.setup-step-header h2 {
  margin: 0 0 4px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.setup-step-header p {
  margin: 0;
  color: var(--muted);
}

.setup-number {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.setup-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  align-items: center;
  margin: 22px 0 28px;
  color: rgba(43, 18, 61, 0.45);
}

.setup-dots span {
  position: relative;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(43, 18, 61, 0.25);
  border-radius: 50%;
  background: #fff;
  font-size: 0.58rem;
}

.setup-dots span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc((min(1180px, 100vw - 72px) - 150px) / 8);
  height: 1px;
  background: rgba(43, 18, 61, 0.16);
  content: "";
}

.setup-dots span.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.setup-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
}

.setup-stack {
  display: grid;
  gap: 14px;
}

.setup-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.setup-fields label,
.setup-stack label {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.setup-fields input,
.setup-fields select,
.setup-fields textarea,
.setup-stack input,
.setup-stack select,
.setup-stack textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(43, 18, 61, 0.13);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.setup-stack textarea {
  min-height: 106px;
  resize: vertical;
}

.setup-chip-grid,
.setup-card-options,
.setup-theme-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.setup-chip-grid label,
.setup-card-options label {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(43, 18, 61, 0.13);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.setup-chip-grid input,
.setup-card-options input,
.setup-theme-picker input {
  position: absolute;
  opacity: 0;
}

.setup-chip-grid label:has(input:checked),
.setup-card-options label:has(input:checked),
.setup-theme-picker label:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), 0 12px 28px rgba(194, 24, 91, 0.1);
}

.setup-brand-preview {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff4f0, #fff);
  overflow: hidden;
}

.setup-brand-preview img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.setup-brand-preview blockquote {
  margin: 20px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.setup-brand-preview span,
.setup-ai-preview span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
}

.setup-brand-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.setup-logo-upload {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 20px !important;
  border: 1px solid rgba(43, 18, 61, 0.12) !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.setup-logo-upload span {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 0.9;
}

.setup-logo-upload button,
.setup-ai-preview button {
  border: 1px solid rgba(194, 24, 91, 0.35);
  border-radius: 8px;
  padding: 10px 18px;
  background: #fff;
  color: var(--accent);
  font-weight: 800;
}

.setup-swatches {
  display: flex;
  gap: 10px;
}

.setup-swatches span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 8px;
}

.setup-swatches span:nth-child(1) { background: #2b123d; }
.setup-swatches span:nth-child(2) { background: #c2185b; }
.setup-swatches span:nth-child(3) { background: #ffc1ba; }
.setup-swatches span:nth-child(4) { background: #f2e9e5; }
.setup-swatches span:nth-child(5) { background: #fff; }

.setup-ai-preview,
.setup-site-map,
.setup-summary {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff0f3, #fffaf4);
}

.setup-ai-preview h3,
.setup-preview-site h3,
.ready-phone h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.setup-pages-layout {
  grid-template-columns: minmax(0, 1fr) 220px;
}

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

.setup-pages label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 8px;
  background: #fff;
}

.setup-site-map {
  display: grid;
  gap: 10px;
  align-content: start;
  background: #fff;
}

.setup-site-map strong {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 0.9;
}

.setup-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.setup-toggle-grid label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 10px;
  background: #fff;
}

.setup-toggle-grid small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.setup-toggle-grid input {
  accent-color: var(--accent);
}

.setup-theme-picker {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.setup-theme-picker label {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.setup-theme-picker .theme-preview {
  min-height: 190px;
}

.setup-theme-picker small {
  color: var(--muted);
  line-height: 1.35;
}

.setup-upload-box {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(43, 18, 61, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

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

.setup-image-grid img {
  aspect-ratio: 1.2 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.setup-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
}

.setup-device-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.setup-device-tabs span {
  border: 1px solid rgba(194, 24, 91, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--accent);
  font-weight: 800;
}

.setup-preview-site {
  position: relative;
  min-height: 360px;
  padding: 40px;
  border: 1px solid rgba(43, 18, 61, 0.1);
  border-radius: 12px;
  background: #fffaf4;
  overflow: hidden;
}

.setup-preview-site img {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 54%;
}

.setup-preview-site button {
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  background: var(--plum);
  color: #fff;
}

.setup-ready {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  min-height: 520px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 20%, rgba(194, 24, 91, 0.35), transparent 20rem),
    linear-gradient(135deg, #210a32, #3b0e44);
  color: #fff;
}

.setup-ready[hidden] {
  display: none;
}

.setup-ready h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.ready-check {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
}

.ready-domain {
  display: inline-flex;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
}

.ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ready-preview-link {
  width: fit-content;
  margin: 10px 0 22px;
}

.ready-publish-card {
  display: grid;
  gap: 14px;
  max-width: 460px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.ready-publish-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ready-publish-card input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.ready-publish-card .auth-divider::before,
.ready-publish-card .auth-divider::after {
  background: rgba(255, 255, 255, 0.18);
}

.ready-publish-card .auth-divider span {
  color: rgba(255, 255, 255, 0.72);
}

.ready-google {
  background: rgba(255, 255, 255, 0.94);
}

.ready-phone {
  position: relative;
  align-self: center;
  min-height: 420px;
  padding: 34px 20px;
  border: 10px solid #171019;
  border-radius: 38px;
  background: #fffaf4;
  color: var(--ink);
  overflow: hidden;
}

.ready-phone img {
  position: absolute;
  right: -52px;
  bottom: -20px;
  width: 120%;
}

.setup-ready:not([hidden]) ~ .setup-actions {
  display: none;
}

.setup-ready[hidden] ~ .setup-actions {
  display: flex;
}

@media (max-width: 980px) {
  .setup-two-column,
  .setup-brand-grid,
  .setup-pages-layout,
  .setup-review-layout,
  .setup-ready {
    grid-template-columns: 1fr;
  }

  .setup-theme-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .website-setup-panel {
    padding: 14px;
  }

  .setup-step {
    padding: 18px;
  }

  .setup-chip-grid,
  .setup-card-options,
  .setup-pages,
  .setup-toggle-grid,
  .setup-theme-picker,
  .setup-image-grid {
    grid-template-columns: 1fr;
  }

  .setup-dots {
    overflow: hidden;
  }

  .setup-preview-site img {
    opacity: 0.24;
  }
}

/* Creative typography pass. */
.brand-name {
  font-family: var(--brand);
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.brand-name span {
  letter-spacing: -0.055em;
}

h1,
h2,
.setup-step-header h2,
.setup-ready h2,
.setup-ai-preview h3,
.setup-preview-site h3,
.ready-phone h3,
.theme-preview span {
  font-family: var(--display);
  font-variation-settings: "SOFT" 35, "WONK" 1;
}

h1 {
  max-width: 840px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h2 {
  font-weight: 650;
  letter-spacing: -0.035em;
}

h3,
.workflow-card h3,
.theme-card h3,
.tier-kicker,
.site-nav a,
.header-cta,
.eyebrow,
.setup-shell-heading,
.setup-label {
  font-family: var(--sans);
}

.hero-emphasis,
.themes-section h2 span {
  font-family: var(--display);
  font-variation-settings: "SOFT" 80, "WONK" 1;
  font-weight: 650;
  letter-spacing: -0.055em;
}

.hero-emphasis {
  transform: rotate(-1deg);
  transform-origin: left 70%;
}

.hero-text,
.section-subtext,
.workflow-card p,
.theme-card p,
.price-card li,
.demo-copy p,
.setup-step-header p,
.setup-note,
.setup-message {
  font-family: var(--sans);
  letter-spacing: -0.01em;
}

.feature-strip h2,
.themes-section h2,
.pricing-section h2 {
  font-size: clamp(2.1rem, 3.25vw, 3.35rem);
}

.launch-cta h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
  letter-spacing: -0.05em;
}

.setup-step-header h2 {
  letter-spacing: -0.035em;
}

.setup-logo-upload span,
.setup-site-map strong,
.setup-preview-site strong,
.ready-phone strong {
  font-family: var(--brand);
  letter-spacing: -0.055em;
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.65rem;
  }

  h1 {
    font-size: clamp(2.9rem, 10.4vw, 3.7rem);
    line-height: 0.98;
  }

  .hero-emphasis {
    transform: none;
  }
}

/* Layout corrections after visual review. */
[hidden] {
  display: none !important;
}

.site-header {
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 58px;
}

.brand-mark img {
  width: 96px;
  height: 96px;
  transform: translate(-23px, -1px);
}

.brand-name {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.section-heading,
.center-heading,
.how-section .section-heading,
.product-section .section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.center-heading h2,
.feature-strip h2,
.how-section .section-heading h2,
.product-section .section-heading h2,
.pricing-section h2,
.themes-section h2 {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  color: var(--plum);
  font-family: var(--brand);
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
}

.section-heading h2 span,
.center-heading h2 span,
.launch-cta h2 span {
  color: var(--accent);
  font-style: italic;
}

.section-subtext,
.section-heading > p:not(.eyebrow),
.center-heading .section-subtext {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(43, 18, 61, 0.68);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: center;
}

.feature-strip {
  overflow: hidden;
}

.strip-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100vw - 64px));
  max-width: 1180px;
  padding: 24px 18px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 14px 16px;
}

.workflow-card h3,
.workflow-card p {
  max-width: 150px;
  text-align: center;
}

.workflow-card h3 {
  font-size: 0.9rem;
  line-height: 1.15;
}

.workflow-card p {
  font-size: 0.78rem;
  line-height: 1.4;
}

.workflow-icon {
  width: 48px;
  height: 48px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  align-items: stretch;
  width: min(1120px, calc(100vw - 64px));
  margin-right: auto;
  margin-left: auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 640px;
  border-width: 1px;
}

.price-card a {
  margin-top: auto;
}

.price-card:nth-child(1) {
  border-color: rgba(43, 18, 61, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.96)),
    linear-gradient(90deg, #2b123d, #8d0d48);
}

.price-card:nth-child(2) {
  border-color: rgba(194, 24, 91, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 107, 61, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 240, 243, 0.96), rgba(255, 255, 255, 0.98));
}

.price-card:nth-child(3) {
  border-color: rgba(255, 178, 107, 0.34);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 178, 107, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 255, 255, 0.98));
}

.price-card:nth-child(1) .tier-kicker {
  background: rgba(43, 18, 61, 0.08);
  color: var(--plum);
}

.price-card:nth-child(2) .tier-kicker {
  background: rgba(194, 24, 91, 0.1);
  color: var(--accent);
}

.price-card:nth-child(3) .tier-kicker {
  background: rgba(255, 178, 107, 0.22);
  color: #9b3d1d;
}

.themes-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(36px, 5vw, 60px);
}

.theme-grid {
  gap: 18px;
}

.theme-card {
  display: grid;
  gap: 8px;
}

.theme-preview {
  position: relative;
  min-height: 150px;
  place-items: start;
  padding: 14px;
}

.theme-preview span {
  position: relative;
  z-index: 2;
  font-family: var(--brand);
  font-size: 1rem;
}

.theme-preview::before {
  position: absolute;
  inset: 14px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.7) 0 24%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0 18%, transparent 18%),
    rgba(255,255,255,0.22);
  content: "";
}

.theme-preview::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42%;
  height: 42%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55)),
    radial-gradient(circle at 24% 30%, currentColor 0 5px, transparent 6px);
  box-shadow: -42px -34px 0 -26px rgba(255,255,255,0.82), -78px -2px 0 -29px rgba(255,255,255,0.64);
  content: "";
}

.theme-card h3 {
  margin-top: 8px;
}

.theme-card p {
  max-width: 240px;
  margin-inline: auto;
}

.launch-cta {
  min-height: auto;
  margin-bottom: clamp(32px, 5vw, 54px);
  padding: clamp(24px, 3.2vw, 36px) clamp(30px, 4.5vw, 52px);
}

.launch-cta h2 {
  max-width: 760px;
  font-family: var(--brand);
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1;
}

.launch-cta p {
  max-width: 680px;
}

.setup-step[data-setup-step="0"] .setup-two-column {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 24px;
}

.setup-step[data-setup-step="0"] .setup-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.setup-step[data-setup-step="0"] .setup-stack > div {
  grid-column: span 2;
}

.setup-step[data-setup-step="0"] .setup-stack > label:first-child,
.setup-step[data-setup-step="0"] .setup-slug-field {
  grid-column: span 2;
}

.setup-step[data-setup-step="0"] .setup-fields input,
.setup-step[data-setup-step="0"] .setup-fields select {
  min-height: 54px;
  font-size: 0.94rem;
}

.setup-slug-field small,
.specialty-field small,
.setup-step[data-setup-step="0"] label small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.slug-builder {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin-top: 8px;
  border: 1px solid rgba(36, 18, 48, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.slug-builder span {
  flex: 0 0 auto;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.slug-builder input {
  min-height: 52px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 2px !important;
}

.specialty-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid rgba(36, 18, 48, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.specialty-tags {
  display: contents;
}

.specialty-tag,
.specialty-suggestions button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  background: rgba(208, 24, 92, 0.1);
  color: var(--accent);
}

.specialty-tag strong {
  font-size: 1rem;
  line-height: 1;
}

.specialty-control input {
  flex: 1 1 180px;
  min-width: 160px;
  min-height: 40px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 8px !important;
}

.specialty-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.specialty-suggestions button {
  padding: 8px 11px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(36, 18, 48, 0.11);
}

.setup-home-preview .preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.setup-home-preview .preview-nav strong {
  color: var(--ink);
  font-family: var(--brand);
  font-size: 1.08rem;
}

.setup-home-preview small[data-live-specialties] {
  display: block;
  margin: 10px 0 14px;
  color: var(--accent);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 900;
}

.setup-home-preview small[data-live-specialties][hidden] {
  display: none;
}

.setup-home-preview button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.setup-step[data-setup-step="0"] .setup-brand-preview {
  min-height: 0;
  padding: 20px;
}

.setup-step[data-setup-step="0"] .setup-brand-preview img {
  max-height: 150px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 10px;
}

.setup-step[data-setup-step="0"] .setup-brand-preview blockquote {
  font-size: 1.2rem;
}

.setup-step[data-setup-step="0"] .setup-chip-grid {
  grid-template-columns: repeat(4, minmax(96px, 1fr));
}

.setup-step[data-setup-step="0"] .setup-chip-grid label {
  min-height: 46px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .strip-grid,
  .pricing-grid {
    width: min(100%, calc(100vw - 36px));
  }

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

  .workflow-card:nth-child(3) {
    border-right: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .workflow-card:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 18, 61, 0.1);
  }

  .workflow-card:last-child {
    border-bottom: 0;
  }

  .setup-step[data-setup-step="0"] .setup-two-column,
  .setup-step[data-setup-step="0"] .setup-stack {
    grid-template-columns: 1fr;
  }

  .setup-step[data-setup-step="0"] .setup-stack > div {
    grid-column: auto;
  }
}

/* Final SaaS polish pass: clean typography, cohesive surfaces, responsive product-grade layout. */
:root {
  --display: "Source Serif 4", Georgia, serif;
  --brand: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ink: #22102f;
  --muted: #675c70;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --hairline: rgba(34, 16, 47, 0.1);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 750;
  letter-spacing: -0.035em;
}

h3,
p,
a,
button,
input,
select,
textarea,
label,
summary {
  font-family: var(--sans);
}

.site-header {
  min-height: 84px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 1px 0 var(--hairline), 0 12px 34px rgba(34, 16, 47, 0.05);
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: visible;
}

.brand-mark img {
  width: 54px;
  height: 54px;
  max-width: 54px;
  object-fit: contain;
  transform: none;
  mix-blend-mode: multiply;
}

.brand-name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
}

.site-nav a,
.header-cta,
.eyebrow,
.tiny-label,
.tier-kicker,
.setup-shell-heading,
.setup-label {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.primary-button,
.secondary-button,
.compare-button,
.price-card a,
.demo-form button,
.setup-actions button {
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.98), rgba(255, 245, 240, 0.8) 52%, rgba(255, 239, 234, 0.3)),
    url("assets/dancer-hero.png") right center / auto 100% no-repeat;
}

.hero-text {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-proof {
  gap: 10px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(194, 24, 91, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,240,243,0.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 14px 34px rgba(34, 16, 47, 0.06);
}

.hero-proof span {
  min-height: 38px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(34, 16, 47, 0.72);
  font-size: 0.8rem;
}

.dashboard-mockup {
  border: 1px solid rgba(194, 24, 91, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,245,240,0.82)),
    radial-gradient(circle at 100% 0%, rgba(255, 178, 107, 0.22), transparent 18rem);
  box-shadow: 0 34px 90px rgba(34, 16, 47, 0.12);
}

.mockup-sidebar {
  background: linear-gradient(180deg, #271034, #180821);
}

.mockup-topbar,
.metric-row div,
.chart-card,
.registrations-card,
.upcoming-card {
  border-color: rgba(34, 16, 47, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.mockup-topbar {
  border-radius: 20px;
  padding: 16px 18px;
}

.status-pill {
  background: rgba(255, 240, 243, 0.86);
}

.section-heading h2,
.center-heading h2,
.feature-strip h2,
.how-section .section-heading h2,
.product-section .section-heading h2,
.pricing-section h2,
.themes-section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.section-heading h2 span,
.center-heading h2 span,
.hero-emphasis,
.launch-cta h2 span {
  color: var(--accent);
  font-style: italic;
}

.strip-grid,
.product-platform,
.price-card,
.setup-step,
.theme-card {
  border-color: var(--hairline);
}

.workflow-card h3 {
  font-size: 0.92rem;
}

.workflow-card p {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
}

.price-card {
  min-height: 620px;
  padding: 34px 32px;
  border-radius: 18px;
}

.price-card h3 {
  min-height: 58px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.price-card strong {
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5vw, 4.4rem);
}

.price-card li {
  color: var(--muted);
  font-size: 0.96rem;
}

.themes-section {
  background: linear-gradient(180deg, #fff, #fffaf5);
}

.theme-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
}

.theme-card {
  padding: 0;
  text-align: center;
}

.theme-preview {
  position: relative;
  min-height: 172px;
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 14px;
  isolation: isolate;
  overflow: hidden;
}

.theme-preview span {
  max-width: 130px;
  font-family: var(--display);
  font-size: 0.96rem;
  line-height: 1.08;
}

.theme-preview::before {
  inset: 12px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0 28%, transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.95) 0 18%, transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.1));
}

.theme-preview::after {
  width: 44%;
  height: 38%;
  border: 1px solid rgba(255,255,255,0.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.76)),
    linear-gradient(90deg, currentColor 0 32%, transparent 32%);
}

.theme-card h3 {
  margin: 14px 0 4px;
  color: var(--ink);
  font-size: 1rem;
}

.theme-card p {
  font-size: 0.88rem;
}

.launch-cta {
  width: min(1120px, calc(100vw - 48px));
  border-radius: 22px;
}

.launch-cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.website-setup-panel {
  background: #fffaf7;
}

.setup-step-header h2,
.setup-ready h2,
.setup-ai-preview h3,
.setup-preview-site h3,
.ready-phone h3 {
  font-family: var(--display);
  font-weight: 750;
}

.setup-step[data-setup-step="0"] .setup-two-column {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.setup-ai-preview {
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.setup-ai-preview.is-updating {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(194, 24, 91, 0.12);
}

@media (max-width: 1100px) {
  .pricing-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
  }

  .brand-mark,
  .brand-mark img {
    width: 44px;
    height: 44px;
    max-width: 44px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .hero-proof {
    display: grid;
  }

  .setup-step[data-setup-step="0"] .setup-two-column {
    grid-template-columns: 1fr;
  }
}

/* Seamless investor-ready polish pass */
html,
body {
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 228, 221, 0.72), transparent 25rem),
    radial-gradient(circle at 92% 14%, rgba(255, 114, 77, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffaf7 0%, #fffdfb 36%, #fff9f5 70%, #fffdfb 100%) !important;
}

main,
.feature-strip,
.how-section,
.product-section,
.pricing-section,
.themes-section,
.demo-section {
  background: transparent !important;
}

.feature-strip,
.how-section,
.product-section,
.pricing-section,
.themes-section,
.demo-section {
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding-block: clamp(64px, 8vw, 118px);
}

.site-header {
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(18px);
}

.hero-proof {
  width: min(740px, 100%);
  margin-top: 24px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-proof span {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(34, 16, 47, 0.08) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(14px);
}

.dashboard-mockup {
  background:
    radial-gradient(circle at 90% 6%, rgba(255, 132, 88, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 243, 0.8)) !important;
  backdrop-filter: blur(20px);
}

.mockup-main {
  transition: opacity 220ms ease, transform 220ms ease;
}

.mockup-main.is-changing {
  opacity: 0.42;
  transform: translateY(6px);
}

.feature-strip .center-heading {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.strip-grid {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(34, 16, 47, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 26px 80px rgba(34, 16, 47, 0.06);
  backdrop-filter: blur(16px);
}

.workflow-card {
  min-width: 0;
}

.workflow-card h3,
.workflow-card p {
  max-width: 16ch;
  margin-inline: auto;
}

.pricing-note,
.price-growth .pricing-note,
.price-scale .pricing-note {
  display: block;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(34, 16, 47, 0.58) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.11em !important;
}

.themes-section {
  padding-top: clamp(70px, 9vw, 124px);
}

.theme-grid {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  align-items: stretch;
}

.theme-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-preview {
  min-height: 214px !important;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 22px 60px rgba(34, 16, 47, 0.08);
}

.theme-preview::before,
.theme-preview::after {
  content: none !important;
}

.theme-preview > span {
  display: none;
}

.mini-site-preview {
  display: grid;
  grid-template-rows: auto minmax(82px, 1fr) auto auto;
  height: 100%;
  min-height: 194px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mini-ink, #271034) 10%, transparent);
  border-radius: 13px;
  background: var(--mini-bg, #fff7f3);
  color: var(--mini-ink, #271034);
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  background: color-mix(in srgb, var(--mini-panel, #fff) 82%, transparent);
}

.mini-nav i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mini-accent, #d0185c), var(--mini-coral, #ff704d));
}

.mini-nav span {
  display: block;
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mini-ink, #271034) 22%, transparent);
}

.mini-nav span:first-of-type {
  margin-left: auto;
}

.mini-hero {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 9px;
  padding: 14px;
  background:
    radial-gradient(circle at 78% 22%, color-mix(in srgb, var(--mini-coral, #ff704d) 34%, transparent), transparent 4.4rem),
    linear-gradient(135deg, color-mix(in srgb, var(--mini-accent, #d0185c) 14%, transparent), transparent 66%);
}

.mini-hero strong {
  max-width: 12ch;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.mini-hero button {
  min-height: 0;
  border: 0;
  border-radius: 999px;
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--mini-accent, #d0185c), var(--mini-coral, #ff704d));
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
}

.mini-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7px;
  padding: 10px;
}

.mini-content span {
  display: block;
  min-height: 30px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--mini-panel, #fff) 78%, var(--mini-accent, #d0185c) 8%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mini-ink, #271034) 8%, transparent);
}

.mini-content span:first-child {
  grid-row: span 2;
  min-height: 67px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--mini-accent, #d0185c) 18%, var(--mini-panel, #fff)), var(--mini-panel, #fff));
}

.mini-palette {
  display: flex;
  gap: 6px;
  padding: 0 10px 10px;
}

.mini-palette i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(34, 16, 47, 0.08);
}

.mini-palette i:nth-child(1) { background: var(--mini-accent, #d0185c); }
.mini-palette i:nth-child(2) { background: var(--mini-coral, #ff704d); }
.mini-palette i:nth-child(3) { background: var(--mini-panel, #fff); }

.theme-elegant {
  --mini-bg: #fff7f3;
  --mini-panel: #fff;
  --mini-ink: #271034;
  --mini-accent: #d0185c;
  --mini-coral: #ff704d;
}

.theme-bold {
  --mini-bg: #111015;
  --mini-panel: #1b1920;
  --mini-ink: #fff8f4;
  --mini-accent: #ff345f;
  --mini-coral: #ffb25f;
}

.theme-soft {
  --mini-bg: #fff3ef;
  --mini-panel: #fffaf7;
  --mini-ink: #4a2533;
  --mini-accent: #bd7b89;
  --mini-coral: #dfb7a8;
}

.theme-vibrant {
  --mini-bg: #fff7ed;
  --mini-panel: #fff;
  --mini-ink: #2b1238;
  --mini-accent: #d0185c;
  --mini-coral: #ff8a32;
}

.theme-minimal {
  --mini-bg: #0d0912;
  --mini-panel: #19131f;
  --mini-ink: #fffaf4;
  --mini-accent: #ffffff;
  --mini-coral: #8f8196;
}

@media (max-width: 980px) {
  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    justify-content: flex-start;
  }

  .strip-grid {
    width: min(100% - 28px, 560px);
    grid-template-columns: 1fr;
  }

  .workflow-card h3,
  .workflow-card p {
    max-width: 28ch;
  }

  .theme-grid {
    width: min(100% - 28px, 520px);
  }
}

/* Final premium alignment and preview refinements */
::selection {
  background: rgba(208, 24, 92, 0.16);
  color: var(--ink);
}

.feature-strip {
  overflow: clip;
}

.feature-strip .center-heading h2,
.themes-section .center-heading h2,
.demo-copy h2 {
  background: transparent !important;
  box-shadow: none !important;
}

.feature-strip .center-heading h2 span,
.themes-section .center-heading h2 span,
.demo-copy h2 span {
  background: transparent !important;
}

.strip-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: min(1540px, calc(100% - 72px)) !important;
  max-width: 1540px !important;
  padding: 32px 24px !important;
  align-items: stretch;
}

.workflow-card {
  display: grid !important;
  grid-template-rows: 76px 54px 96px;
  justify-items: center;
  align-items: start;
  min-height: 238px;
  height: 100%;
  padding: 16px 22px !important;
  text-align: center;
  border-right: 1px solid rgba(34, 16, 47, 0.1);
}

.workflow-card:last-child {
  border-right: 0;
}

.workflow-card > div:not(.workflow-icon) {
  display: contents;
}

.workflow-card .workflow-icon {
  grid-row: 1;
  display: grid;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
}

.workflow-card h3 {
  grid-row: 2;
  display: grid;
  align-items: start;
  width: 100%;
  min-height: 48px;
  margin: 0 !important;
  font-size: clamp(0.92rem, 1vw, 1.04rem) !important;
  line-height: 1.15 !important;
}

.workflow-card p {
  grid-row: 3;
  width: 100%;
  max-width: 18ch !important;
  min-height: 88px;
  margin: 0 auto !important;
  color: rgba(34, 16, 47, 0.65);
  font-size: clamp(0.84rem, 0.95vw, 0.94rem) !important;
  line-height: 1.42 !important;
}

.workflow-card .mini-form,
.workflow-card .mini-payment,
.workflow-card .mini-roster-lines,
.workflow-card .mini-message,
.workflow-card .mini-trend,
.workflow-card .mini-campaign {
  display: none !important;
}

.theme-grid {
  grid-template-columns: repeat(5, minmax(250px, 1fr)) !important;
  width: min(1500px, calc(100% - 64px)) !important;
  max-width: 1500px !important;
  gap: 24px !important;
}

.theme-card {
  min-width: 0;
}

.theme-preview-button {
  width: 100%;
  min-height: 310px !important;
  padding: 0 !important;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.theme-preview-button:hover,
.theme-preview-button:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(34, 16, 47, 0.16);
  outline: none;
}

.theme-preview-button:hover .mini-hero img,
.theme-preview-button:focus-visible .mini-hero img {
  transform: scale(1.05) translateY(-2px);
}

.mini-site-preview {
  grid-template-rows: 42px minmax(126px, 1.05fr) minmax(112px, auto) 34px !important;
  min-height: 310px !important;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mini-ink, #271034) 10%, transparent);
}

.mini-nav {
  gap: 9px;
  padding: 10px 12px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mini-nav strong {
  margin-right: auto;
  color: var(--mini-ink, #271034);
  font-family: var(--display);
  font-size: 0.74rem;
  line-height: 1;
}

.mini-nav span,
.mini-nav span:first-of-type {
  width: auto;
  height: auto;
  margin-left: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--mini-ink, #271034) 70%, transparent);
}

.mini-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(76px, 0.72fr);
  align-items: stretch;
  gap: 10px;
  padding: 14px;
}

.mini-hero > div {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.mini-hero strong {
  max-width: 10ch;
  color: var(--mini-ink, #271034);
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
}

.mini-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: linear-gradient(135deg, var(--mini-accent, #d0185c), var(--mini-coral, #ff704d));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

.mini-hero img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  transition: transform 260ms ease;
}

.theme-bold .mini-hero img,
.theme-minimal .mini-hero img {
  filter: contrast(1.18) saturate(0.9) brightness(0.74);
}

.theme-soft .mini-hero img {
  filter: saturate(0.82) brightness(1.06);
}

.theme-vibrant .mini-hero img {
  filter: saturate(1.18) contrast(1.04);
}

.mini-content {
  grid-template-columns: 1fr 1fr !important;
  gap: 8px;
  padding: 10px 12px 8px;
}

.mini-content article,
.mini-content aside {
  display: grid;
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--mini-ink, #271034) 9%, transparent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--mini-panel, #fff) 82%, transparent);
  color: var(--mini-ink, #271034);
}

.mini-content article {
  align-content: center;
  gap: 2px;
  padding: 9px;
}

.mini-content b {
  font-size: 0.62rem;
  line-height: 1.1;
}

.mini-content small {
  color: color-mix(in srgb, var(--mini-ink, #271034) 60%, transparent);
  font-size: 0.54rem;
}

.mini-content aside {
  grid-column: 1 / -1;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 7px;
}

.mini-content aside img {
  width: 44px;
  height: 40px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
}

.mini-content aside span {
  display: block;
  color: color-mix(in srgb, var(--mini-ink, #271034) 74%, transparent);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.25;
}

.mini-palette {
  align-items: center;
  padding: 0 12px 12px;
}

.mini-palette i:nth-child(4) {
  background: var(--mini-bg, #fff7f3);
}

.theme-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.theme-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.theme-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 26, 0.42);
  backdrop-filter: blur(14px);
}

.theme-modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 32px));
  max-height: min(820px, calc(100vh - 32px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 250, 247, 0.96);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 40px 120px rgba(34, 16, 47, 0.24);
}

.theme-modal-panel .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.theme-modal-panel h2 {
  max-width: 760px;
  margin: 4px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

.theme-modal-preview .mini-site-preview {
  min-height: min(560px, 70vh) !important;
  transform: none;
}

.launch-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(208, 24, 92, 0.14);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 112, 77, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 239, 0.92)) !important;
  color: var(--ink) !important;
  box-shadow: 0 26px 80px rgba(34, 16, 47, 0.08);
}

.launch-cta h2,
.launch-cta p {
  color: var(--ink) !important;
}

.launch-cta h2 span {
  color: var(--accent) !important;
}

.launch-cta .primary-button {
  box-shadow: 0 18px 42px rgba(208, 24, 92, 0.2);
}

.demo-section {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
  align-items: start;
}

.demo-copy {
  max-width: none;
}

.demo-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.demo-copy > p {
  max-width: 760px;
  margin-bottom: 28px;
}

.demo-note {
  display: none !important;
}

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

.demo-benefit-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 40px rgba(34, 16, 47, 0.04);
}

.demo-benefit-grid article span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(208, 24, 92, 0.1);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
}

.demo-benefit-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
}

.demo-benefit-grid p {
  margin: 0;
  color: rgba(34, 16, 47, 0.62);
  font-size: 0.84rem;
  line-height: 1.42;
}

.demo-form {
  position: sticky;
  top: 110px;
  width: 100%;
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 112, 77, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 28px 90px rgba(34, 16, 47, 0.1);
  backdrop-filter: blur(16px);
}

.demo-form-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}

.demo-form-heading span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-form-heading strong {
  max-width: 28ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

@media (max-width: 1240px) {
  .strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .workflow-card:nth-child(3) {
    border-right: 0;
  }

  .workflow-card:nth-child(n + 4) {
    border-top: 1px solid rgba(34, 16, 47, 0.1);
  }
}

@media (max-width: 980px) {
  .theme-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 78vw);
    grid-template-columns: none !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 12px;
  }

  .theme-card {
    scroll-snap-align: center;
  }

  .launch-cta,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .launch-cta {
    text-align: center;
    justify-items: center;
  }

  .demo-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .strip-grid {
    width: min(100% - 28px, 560px) !important;
    grid-template-columns: 1fr !important;
    padding: 10px 18px !important;
  }

  .workflow-card,
  .workflow-card:nth-child(3),
  .workflow-card:nth-child(n + 4) {
    grid-template-rows: 68px auto auto;
    min-height: 210px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(34, 16, 47, 0.1);
  }

  .workflow-card:last-child {
    border-bottom: 0;
  }

  .workflow-card h3 {
    min-height: auto;
  }

  .workflow-card p {
    min-height: auto;
  }

  .demo-section {
    width: min(100% - 28px, 560px);
  }

  .demo-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* Focused refinement pass: continuity, spacing, icons, auth gate, and marketplace themes. */
body {
  background:
    radial-gradient(circle at 14% 5%, rgba(255, 229, 222, 0.78), transparent 29rem),
    radial-gradient(circle at 82% 15%, rgba(255, 205, 220, 0.38), transparent 32rem),
    linear-gradient(180deg, #fffaf6 0%, #fff9f5 28%, #fffdfb 58%, #fffaf6 100%) !important;
}

.hero {
  margin-bottom: 0 !important;
  padding-bottom: clamp(64px, 7vw, 104px) !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 210, 222, 0.44), transparent 24rem),
    linear-gradient(180deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 247, 242, 0.88) 75%, rgba(255, 247, 242, 0) 100%),
    url("assets/dancer-hero.png") right center / auto 100% no-repeat !important;
}

.feature-strip {
  position: relative;
  margin-top: clamp(-42px, -3vw, -18px) !important;
  padding-top: clamp(34px, 4.5vw, 58px) !important;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 112, 77, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 247, 242, 0), rgba(255, 250, 247, 0.56) 46%, rgba(255, 253, 251, 0)) !important;
}

.feature-strip::before {
  position: absolute;
  inset: -7rem 0 auto;
  height: 15rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 247, 242, 0), rgba(255, 247, 242, 0.76), rgba(255, 247, 242, 0));
  content: "";
}

.feature-strip > * {
  position: relative;
  z-index: 1;
}

.feature-strip,
.how-section,
.product-section,
.pricing-section,
.themes-section,
.demo-section {
  padding-block: clamp(72px, 7vw, 104px) !important;
}

.feature-strip {
  padding-top: clamp(42px, 5vw, 70px) !important;
}

.themes-section {
  padding-bottom: clamp(58px, 6vw, 88px) !important;
}

.launch-cta {
  margin-top: 0 !important;
  margin-bottom: clamp(54px, 6vw, 82px) !important;
}

.workflow-card .roster-icon {
  display: grid !important;
  grid-template-columns: repeat(2, 10px);
  justify-content: center;
  align-content: center;
  place-items: center;
  gap: 5px;
}

.workflow-card .roster-icon span {
  margin: 0;
}

.workflow-card .analytics-icon {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.workflow-card .analytics-icon span {
  width: 6px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--accent), var(--coral));
}

.workflow-card .analytics-icon span:nth-child(1) { height: 15px; }
.workflow-card .analytics-icon span:nth-child(2) { height: 24px; }
.workflow-card .analytics-icon span:nth-child(3) { height: 32px; }

.price-card:first-child .tier-highlights li {
  border: 0 !important;
  padding-block: 0 !important;
}

.price-card:first-child .tier-highlights {
  display: grid;
  gap: 16px;
}

.themes-section {
  background: transparent !important;
}

.theme-grid {
  grid-template-columns: repeat(5, minmax(180px, 1fr)) !important;
  width: min(1220px, calc(100% - 48px)) !important;
  gap: 22px !important;
  padding: 24px;
  border: 1px solid rgba(34, 16, 47, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 22px 70px rgba(34, 16, 47, 0.06);
  backdrop-filter: blur(14px);
}

.theme-preview-button {
  min-height: 148px !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 36px rgba(34, 16, 47, 0.1);
}

.marketplace-preview {
  grid-template-rows: 22px minmax(86px, 1fr) 0 16px !important;
  min-height: 148px !important;
  border-radius: 14px !important;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mini-ink, #271034) 11%, transparent);
}

.marketplace-preview .mini-nav {
  gap: 5px;
  padding: 5px 7px;
  font-size: 0.42rem;
}

.marketplace-preview .mini-nav i {
  width: 10px;
  height: 10px;
}

.marketplace-preview .mini-nav strong {
  font-size: 0.5rem;
}

.marketplace-preview .mini-nav span {
  font-size: 0;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mini-ink, #271034) 24%, transparent);
}

.marketplace-preview .mini-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 8px;
  min-height: 96px;
  padding: 12px;
  overflow: hidden;
}

.marketplace-preview .mini-hero > div {
  position: relative;
  z-index: 2;
  align-content: center;
  gap: 5px;
}

.marketplace-preview .mini-hero small {
  color: color-mix(in srgb, var(--mini-ink, #271034) 62%, transparent);
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace-preview .mini-hero strong {
  max-width: 8.6ch;
  font-size: clamp(0.82rem, 1.1vw, 1.02rem);
}

.marketplace-preview .mini-cta {
  padding: 4px 7px;
  font-size: 0.46rem;
}

.marketplace-preview .theme-dancer {
  align-self: end;
  width: 100%;
  height: 90px;
  min-height: 90px;
  object-fit: cover;
  border-radius: 11px;
}

.theme-elegant .theme-dancer {
  object-position: 58% 18%;
  filter: saturate(1.02) brightness(1.05);
}

.theme-bold .theme-dancer {
  object-position: 42% 22%;
  filter: contrast(1.26) saturate(0.96) brightness(0.68);
}

.theme-soft .theme-dancer {
  object-position: 62% 8%;
  filter: saturate(0.74) brightness(1.1);
}

.theme-vibrant .theme-dancer {
  object-position: 50% 28%;
  filter: saturate(1.32) contrast(1.05);
}

.theme-minimal .theme-dancer {
  object-position: 45% 18%;
  filter: grayscale(1) contrast(1.28) brightness(0.82);
}

.marketplace-preview .mini-content {
  display: none !important;
}

.marketplace-preview .mini-palette {
  gap: 4px;
  padding: 0 8px 7px;
}

.marketplace-preview .mini-palette i {
  width: 10px;
  height: 10px;
}

.theme-card h3 {
  margin-top: 12px !important;
}

.theme-card p {
  max-width: 18ch;
  margin-inline: auto;
}

.theme-modal-preview .marketplace-preview {
  grid-template-rows: 54px minmax(330px, 1fr) minmax(150px, auto) 42px !important;
  min-height: min(620px, 72vh) !important;
}

.theme-modal-preview .marketplace-preview .mini-content {
  display: grid !important;
}

.theme-modal-preview .marketplace-preview .theme-dancer {
  height: 100%;
  min-height: 300px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 10, 30, 0.36);
  backdrop-filter: blur(16px);
}

.auth-panel {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 112, 77, 0.14), transparent 13rem),
    rgba(255, 250, 247, 0.96);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 42px 120px rgba(34, 16, 47, 0.22);
}

.auth-panel .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.auth-brand {
  width: fit-content;
}

.auth-copy h2 {
  margin: 4px 0 8px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.auth-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  min-height: 50px;
  border: 1px solid rgba(34, 16, 47, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.auth-form input:focus {
  border-color: rgba(208, 24, 92, 0.5);
  outline: 3px solid rgba(208, 24, 92, 0.12);
}

.auth-google,
.auth-submit {
  width: 100%;
}

.auth-google {
  min-height: 50px;
  border: 1px solid rgba(34, 16, 47, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  background: rgba(34, 16, 47, 0.1);
  content: "";
}

.auth-terms {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.88rem;
  font-weight: 600 !important;
}

.auth-terms input {
  margin-top: 3px;
}

.auth-error {
  min-height: 20px;
  margin: 0;
  color: #a50d3e;
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-toggle-copy {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.auth-toggle-copy button,
.auth-forgot {
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.header-account {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-login {
  border: 1px solid rgba(34, 16, 47, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 12px 18px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.header-avatar {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--coral));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.slug-status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.slug-status[data-state="success"] {
  color: #15803d;
}

.slug-status[data-state="error"] {
  color: #a50d3e;
}

.route-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 112, 77, 0.12), transparent 20rem),
    radial-gradient(circle at 90% 0%, rgba(208, 24, 92, 0.1), transparent 22rem),
    #fffaf7;
  color: var(--ink);
}

.route-header,
.published-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
}

.route-loading,
.dashboard-app,
.published-site {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.route-loading {
  display: grid;
  min-height: 70vh;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.route-loading h1,
.dashboard-hero h1,
.published-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.route-loading p,
.dashboard-hero p,
.published-hero p,
.published-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.dashboard-hero {
  padding: clamp(58px, 8vw, 104px) 0 28px;
}

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

.dashboard-card,
.editor-panel,
.editor-preview,
.published-cards article {
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 24px 70px rgba(34, 16, 47, 0.08);
}

.dashboard-card span,
.editor-preview span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.dashboard-actions,
.dashboard-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.dashboard-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 72px;
}

.dashboard-tools button {
  min-height: 104px;
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 20px;
  text-align: left;
  font: inherit;
  font-weight: 900;
}

.dashboard-tools small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding-bottom: 80px;
}

.editor-panel {
  display: grid;
  gap: 16px;
}

.editor-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.editor-panel input,
.editor-panel select,
.editor-panel textarea {
  min-height: 48px;
  border: 1px solid rgba(34, 16, 47, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.editor-panel textarea {
  min-height: 110px;
}

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

.editor-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 16, 47, 0.08);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 250, 247, 0.8);
}

.editor-preview {
  position: sticky;
  top: 24px;
  align-self: start;
}

.editor-preview h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.published-site {
  padding-bottom: 70px;
}

.published-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.published-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0;
}

.published-hero img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(34, 16, 47, 0.16);
}

.published-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.published-tags span {
  border-radius: 999px;
  background: rgba(208, 24, 92, 0.1);
  color: var(--accent);
  padding: 8px 12px;
  font-weight: 900;
}

.published-section,
.published-cards {
  padding: 42px 0;
}

.published-section h2,
.published-cards h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

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

.published-footer {
  border-top: 1px solid rgba(34, 16, 47, 0.08);
  padding: 28px 0;
  color: var(--muted);
  font-weight: 800;
}

body.generated-bold,
body.generated-minimal {
  background: #100814;
  color: #fffaf7;
}

body.generated-bold .published-header,
body.generated-minimal .published-header,
body.generated-bold .published-hero p,
body.generated-minimal .published-hero p,
body.generated-bold .published-section p,
body.generated-minimal .published-section p {
  color: rgba(255, 250, 247, 0.72);
}

body.generated-bold .published-cards article,
body.generated-minimal .published-cards article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .feature-strip,
  .how-section,
  .product-section,
  .pricing-section,
  .themes-section,
  .demo-section {
    padding-block: clamp(56px, 8vw, 76px) !important;
  }

  .theme-grid {
    grid-auto-columns: minmax(240px, 74vw) !important;
    padding: 18px;
  }
}

@media (max-width: 820px) {
  .header-account {
    width: 100%;
    justify-content: flex-start;
  }

  .dashboard-overview,
  .dashboard-grid,
  .dashboard-tools,
  .editor-layout,
  .published-hero,
  .published-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero {
    padding-bottom: 58px !important;
  }

  .feature-strip {
    margin-top: -22px !important;
    padding-top: 38px !important;
  }

  .marketplace-preview {
    min-height: 168px !important;
  }
}

/* SaaS architecture refinement: preserve the current visual system while reducing scroll fatigue. */
.hero {
  min-height: auto !important;
  padding-top: clamp(38px, 4.2vw, 64px) !important;
  padding-bottom: clamp(38px, 4.6vw, 68px) !important;
}

.feature-strip {
  margin-top: 0 !important;
  padding-top: clamp(26px, 3vw, 42px) !important;
  padding-bottom: clamp(44px, 4.8vw, 72px) !important;
}

.how-section,
.product-section,
.pricing-section,
.themes-section,
.demo-section {
  min-height: auto !important;
  padding-top: clamp(46px, 5vw, 78px) !important;
  padding-bottom: clamp(46px, 5vw, 78px) !important;
}

.launch-cta {
  margin-top: clamp(16px, 2vw, 28px) !important;
  margin-bottom: clamp(38px, 4vw, 58px) !important;
}

.section-heading {
  margin-bottom: clamp(18px, 2.4vw, 30px) !important;
}

.themes-section {
  padding-bottom: clamp(42px, 4vw, 64px) !important;
}

.demo-section {
  padding-top: clamp(44px, 4.6vw, 72px) !important;
}

.feature-card,
.steps-grid,
.product-platform,
.pricing-grid,
.theme-grid,
.demo-layout {
  margin-top: clamp(16px, 2vw, 28px) !important;
}

@media (max-width: 980px) {
  .hero,
  .feature-strip,
  .how-section,
  .product-section,
  .pricing-section,
  .themes-section,
  .demo-section {
    padding-top: clamp(38px, 7vw, 58px) !important;
    padding-bottom: clamp(38px, 7vw, 58px) !important;
  }

  .launch-cta {
    margin-top: 14px !important;
    margin-bottom: 44px !important;
  }
}

@media (max-width: 760px) {
  .hero,
  .feature-strip,
  .how-section,
  .product-section,
  .pricing-section,
  .themes-section,
  .demo-section {
    padding-top: clamp(32px, 8vw, 50px) !important;
    padding-bottom: clamp(32px, 8vw, 54px) !important;
  }
}

/* Account and publish flow */
.auth-panel {
  max-width: 520px;
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 132, 92, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 244, 0.96));
  box-shadow: 0 36px 90px rgba(46, 18, 58, 0.2);
}

.auth-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.auth-copy p {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.auth-google,
.auth-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
}

.auth-google {
  border: 1px solid rgba(47, 20, 61, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(47, 20, 61, 0.08);
}

.auth-divider span {
  color: rgba(47, 20, 61, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.auth-form label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input {
  min-height: 54px;
  border-radius: 16px;
  border-color: rgba(47, 20, 61, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.auth-toggle {
  color: var(--muted);
  font-weight: 700;
}

.auth-toggle button,
.auth-forgot {
  color: var(--berry);
  font-weight: 900;
}

.owner-toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid rgba(47, 20, 61, 0.1);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.owner-toolbar span {
  color: var(--muted);
}

.owner-toolbar a,
.owner-toolbar button {
  border: 1px solid rgba(47, 20, 61, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.owner-toolbar a:first-of-type {
  border: 0;
  color: #fff;
  background: var(--button-gradient);
}

@media (max-width: 680px) {
  .owner-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .owner-toolbar a,
  .owner-toolbar button {
    text-align: center;
  }
}
