:root {
  --bg: #fcfcfe;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-strong: #101828;
  --text: #111827;
  --muted: #667085;
  --line: #e6ebf2;
  --primary: #2351ff;
  --primary-deep: #1738c5;
  --success: #17b26a;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  background:
    linear-gradient(rgba(63, 94, 165, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 94, 165, 0.055) 1px, transparent 1px),
    radial-gradient(circle at left top, rgba(35, 81, 255, 0.06), transparent 30%),
    radial-gradient(circle at right top, rgba(35, 81, 255, 0.045), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #fcfbf7 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  background-position: 0 0, 0 0, 0 0, 100% 0, 0 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-shell {
  min-height: 100vh;
  padding-top: 112px;
}

.container-fluidish {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}

.section-header--stack {
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid #dce5ff;
  border-radius: 999px;
  background: #f3f6ff;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.eyebrow-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.section-title,
.hero-title,
.auth-title,
.dashboard-title,
.error-code {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.045em;
}

.section-title {
  margin: 16px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.section-title-sm {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.section-title-light {
  color: #ffffff;
}

.section-copy,
.hero-lead,
.muted {
  color: var(--muted);
  line-height: 1.8;
}

.section-copy {
  max-width: 700px;
  margin: 0;
  font-size: 1.02rem;
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 80;
  padding: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 52px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: auto;
  height: 52px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.brand-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand-nav .brand-mark img,
.site-brand-footer .brand-mark img {
  transform: none;
}

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

.site-brand-footer .brand-text {
  min-width: 0;
}

.site-brand-footer .brand-text span {
  white-space: normal;
  line-height: 1.35;
}

.nav-panel,
.nav-links,
.nav-actions,
.hero-actions,
.tag-row,
.hero-social-proof,
.price-meter-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-panel {
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-actions {
  flex: 0 0 auto;
}

.nav-links a {
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(17, 24, 39, 0.82);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #f4f7fb;
  color: var(--primary-deep);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

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

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(35, 81, 255, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: transparent;
}

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

.simple-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 260px);
  place-items: center;
  padding: 24px 0 64px;
  overflow: hidden;
}

.hero-platform-cloud {
  position: absolute;
  inset: 18px 0 auto;
  pointer-events: none;
}

.platform-chip {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 86px;
  height: 86px;
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(17, 24, 39, 0.74);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.platform-glyph {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.platform-logo {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.platform-chip-wordpress {
  top: 82px;
  left: 10%;
  transform: rotate(-8deg);
}

.platform-chip-shopify {
  top: 36px;
  right: 16%;
  transform: rotate(7deg);
}

.platform-chip-webflow {
  top: 258px;
  left: 16%;
  transform: rotate(6deg);
}

.platform-chip-framer {
  top: 148px;
  right: 8%;
  transform: rotate(-6deg);
}

.platform-chip-wix {
  top: 300px;
  right: 20%;
  transform: rotate(8deg);
}

.platform-chip-woocommerce {
  top: 42px;
  left: 22%;
  transform: rotate(5deg);
}

.platform-label {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.simple-hero-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.hero-title.simple-hero-title {
  max-width: 15ch;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.simple-hero-lead {
  max-width: 440px;
  margin: 0 auto 24px;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.ai-launchpad {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 700px);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 12px 0 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.ai-launchpad-input {
  width: 100%;
  min-height: 32px;
  height: 32px;
  max-height: 32px;
  align-self: center;
  padding: 0 8px 0 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 32px;
  white-space: pre;
  overflow-x: auto;
  overflow-y: hidden;
  resize: none;
  scrollbar-width: none;
}

.ai-launchpad-input::placeholder {
  color: #98a2b3;
}

.ai-launchpad-input::-webkit-scrollbar {
  display: none;
}

.ai-launchpad-input:focus {
  outline: none;
}

.ai-launchpad-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(35, 81, 255, 0.2);
}

.floating-call-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(35, 81, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(35, 81, 255, 0.34);
}

.floating-call-button svg {
  width: 26px;
  height: 26px;
}

.ai-launchpad-note {
  margin: 12px auto 0;
  font-size: 0.74rem;
  line-height: 1.4;
  text-align: center;
}

.hero-keypoints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 18px auto 0;
}

.marketing-home-grid {
  align-items: stretch;
}

.landing-blog,
.product-flow-section,
.results-section {
  position: relative;
}

.results-seal {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 14px 0 6px;
  text-align: center;
}

.results-seal .eyebrow {
  margin-bottom: 4px;
}

.results-seal .section-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.results-seal .section-copy {
  max-width: 700px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.marketplace-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 34px;
  scroll-margin-top: 122px;
  background:
    radial-gradient(circle at 78% 12%, rgba(102, 87, 242, 0.12), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(102, 87, 242, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.marketplace-section::before,
.marketplace-section::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(102, 87, 242, 0.45) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.marketplace-section::before {
  left: 26px;
  bottom: 40px;
}

.marketplace-section::after {
  right: 44px;
  top: 32px;
}

.marketplace-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.marketplace-copy {
  display: block;
}

.marketplace-eyebrow {
  gap: 8px;
}

.marketplace-eyebrow svg {
  width: 18px;
  height: 18px;
}

.marketplace-hero-title {
  margin: 22px 0 14px;
  max-width: 540px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.marketplace-gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, #6657f2 0%, #8b7cff 55%, #4b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marketplace-hero-lead {
  max-width: 480px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.marketplace-benefit-list {
  display: grid;
  gap: 16px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.marketplace-benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.marketplace-benefit-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e4e7ff;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f0eeff);
  color: #6657f2;
  box-shadow: 0 10px 22px rgba(102, 87, 242, 0.1);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.marketplace-benefit-item h3 {
  margin: 0 0 5px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.marketplace-benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.marketplace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.marketplace-visual {
  position: relative;
  min-height: 540px;
}

.marketplace-panel {
  position: relative;
  z-index: 3;
  padding: 18px;
  border: 1px solid #dbe6ff;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(29, 32, 84, 0.1);
  backdrop-filter: blur(12px);
}

.marketplace-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef0ff;
}

.marketplace-panel-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marketplace-panel-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #6657f2;
  background: linear-gradient(180deg, #f0eeff, #ffffff);
}

.marketplace-panel-mark svg {
  width: 28px;
  height: 28px;
}

.marketplace-panel-brand h3 {
  margin: 0 0 4px;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.marketplace-panel-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.marketplace-add-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #6657f2, #7667ff);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.92rem;
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}

.marketplace-filters {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.marketplace-filter {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #e4e7ff;
  border-radius: 12px;
  background: #fff;
  color: #596181;
  font-size: 13px;
  user-select: none;
  pointer-events: none;
}

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

.marketplace-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #edf0ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 32, 84, 0.06);
}

.marketplace-company-info h4 {
  margin: 0 0 4px;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.marketplace-company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.marketplace-company-info p {
  margin: 0;
  max-width: 300px;
  color: #40486f;
  font-size: 13px;
  line-height: 1.45;
}

.marketplace-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #cfd8ff;
  border-radius: 12px;
  color: #6657f2;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.marketplace-photo-card {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 76px;
  width: min(220px, 36%);
  padding: 10px 12px;
  border: 1px solid rgba(228, 231, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(29, 32, 84, 0.14);
  backdrop-filter: blur(16px);
}

.marketplace-photo-caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 2px;
}

.marketplace-photo-caption strong {
  font-size: 15px;
}

.marketplace-photo-caption span {
  color: var(--muted);
  font-size: 13px;
}

.marketplace-photo-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f3ff;
  color: #6657f2;
  flex: 0 0 auto;
}

.marketplace-photo-icon svg {
  width: 20px;
  height: 20px;
}

.marketplace-floating-badge {
  position: absolute;
  z-index: 5;
  left: 18px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e4e7ff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(29, 32, 84, 0.12);
  color: #202847;
  font-size: 0.92rem;
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}

.marketplace-floating-badge span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #6657f2;
}

.custom-website-card {
  display: block;
  padding: 30px 28px;
  border: 1px solid #dbe6ff;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 247, 255, 0.96) 100%);
  box-shadow: var(--shadow);
}

.custom-website-section {
  scroll-margin-top: 122px;
}

.custom-website-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.custom-website-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
  text-align: left;
}

.custom-website-note {
  max-width: none;
}

.custom-website-form {
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.custom-website-card .section-title {
  margin: 0;
  text-align: left;
}

.custom-website-card .section-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}

.custom-website-copy .eyebrow {
  justify-self: start;
}

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

.blog-preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-preview-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at top, rgba(35, 81, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-bottom: 1px solid var(--line);
}

.blog-preview-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.blog-preview-meta {
  font-size: 0.82rem;
}

.blog-preview-card h3,
.product-flow-card h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
}

.blog-preview-card p,
.product-flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-preview-button {
  justify-self: start;
}

.product-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-flow-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 178px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  height: 100%;
}

.product-flow-visual {
  display: grid;
  place-items: center;
  height: 178px;
  padding: 8px;
  border: 1px solid #edf1f8;
  border-radius: 20px;
  background: #fbfcfe;
}

.product-flow-visual img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.product-flow-copy {
  display: grid;
  grid-template-rows: 54px 68px 136px;
  align-content: start;
  align-items: start;
  gap: 12px;
}

.product-flow-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-flow-card p {
  font-size: 0.98rem;
}

.product-flow-step {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eef3ff;
  color: var(--primary-deep);
  font-family: 'Sora', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
}

.ai-launchpad-input::-webkit-scrollbar {
  display: none;
}

.hero {
  padding: 76px 0 50px;
}

.hero-outrank {
  position: relative;
}

.hero-grid,
.feature-grid,
.workflow-grid,
.pricing-grid,
.blog-grid,
.faq-grid,
.custom-grid,
.stats-grid,
.billing-grid,
.contact-grid,
.dashboard-grid,
.split-panel,
.auth-layout,
.footer-grid,
.hero-proof,
.dashboard-metrics,
.impact-grid,
.testimonial-grid,
.feature-highlight-grid {
  display: grid;
  gap: 20px;
}

.hero-grid-outrank {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-copy {
  padding-top: 12px;
}

.hero-title {
  max-width: 10ch;
  margin: 20px 0 18px;
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.94;
}

.hero-actions,
.tag-row {
  flex-wrap: wrap;
}

.hero-actions-primary {
  margin: 0 0 24px;
}

.hero-social-proof {
  margin-top: 28px;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6e0ff, #96adff);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.avatar-dot:first-child {
  margin-left: 0;
}

.hero-proof-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.hero-proof-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-product-card,
.impact-card,
.testimonial-card,
.feature-card,
.workflow-card,
.editor-card,
.dashboard-card,
.price-card,
.blog-card,
.faq-card,
.contact-card,
.contact-panel,
.auth-card,
.auth-side,
.dashboard-shell,
.billing-card,
.table-card,
.error-card,
.stat-card,
.integration-card,
.custom-card,
.metric-card,
.stack-row,
.timeline-item,
.cta-panel,
.feature-highlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-product-card,
.feature-card,
.workflow-card,
.editor-card,
.dashboard-card,
.price-card,
.blog-card,
.faq-card,
.contact-card,
.contact-panel,
.auth-card,
.auth-side,
.dashboard-shell,
.billing-card,
.table-card,
.error-card,
.stat-card,
.integration-card,
.custom-card,
.cta-panel,
.feature-highlight-card {
  padding: 28px;
}

.hero-product-card h2,
.feature-card h3,
.workflow-card h3,
.editor-card h3,
.dashboard-card h3,
.blog-card h3,
.price-card h3,
.custom-card h3,
.testimonial-author strong,
.feature-highlight-card h3 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
}

.hero-product-card p,
.feature-card p,
.workflow-card p,
.blog-card p,
.price-card p,
.custom-card p,
.testimonial-card p,
.feature-highlight-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-product-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hero-product-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.hero-product-item strong {
  display: block;
  margin-bottom: 4px;
}

.hero-product-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.price-meter {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #e4ebff;
  border-radius: 18px;
  background: var(--surface-soft);
}

.price-meter-top {
  justify-content: space-between;
}

.price-value,
.impact-card strong,
.stat-card strong,
.metric-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
}

.price-value {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.pill,
.timeline-badge,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #e6ebf5;
  border-radius: 999px;
  background: #f4f6fb;
  font-size: 0.82rem;
  font-weight: 800;
}

.tag-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.range-input {
  width: 100%;
  margin: 16px 0 6px;
  accent-color: var(--primary);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.impact-card {
  padding: 32px 24px;
  text-align: center;
}

.impact-card strong {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 8px;
}

.impact-card span {
  color: var(--muted);
  line-height: 1.6;
}

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

.testimonial-card {
  overflow: hidden;
}

.testimonial-visual {
  height: 180px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(35, 81, 255, 0.16), rgba(35, 81, 255, 0.03)),
    radial-gradient(circle at top right, rgba(35, 81, 255, 0.12), transparent 38%);
}

.testimonial-quote {
  padding: 24px 24px 18px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  padding: 0 24px 24px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.how-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  display: grid;
  gap: 24px;
  align-items: start;
}

.how-step-list {
  display: grid;
  gap: 16px;
}

.how-step-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.how-step-no {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
}

.how-step-card h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
}

.how-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid,
.pricing-grid,
.blog-grid,
.custom-grid,
.feature-highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.integration-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #101828 0%, #1b3aa8 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.feature-highlight-card {
  min-height: 100%;
}

.split-panel,
.contact-grid,
.dashboard-grid,
.auth-layout {
  grid-template-columns: 1fr 1fr;
}

.editor-surface {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.editor-note {
  padding: 14px 16px;
  border: 1px solid #dce5ff;
  border-radius: 14px;
  background: #eef3ff;
  color: var(--primary-deep);
}

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

.metric-card,
.timeline-item {
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
}

.timeline-item.is-live .timeline-dot {
  background: var(--success);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-page-header {
  margin-bottom: 28px;
}

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

.pricing-page-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
}

.pricing-page-card-top {
  display: grid;
  align-content: start;
  gap: 10px;
}

.pricing-page-card-top .eyebrow {
  justify-self: start;
}

.pricing-page-card h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.36rem;
  letter-spacing: -0.03em;
}

.pricing-page-price {
  display: grid;
  gap: 4px;
}

.price-suffix {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-page-actions {
  align-self: end;
}

.pricing-page-actions .button {
  width: 100%;
  justify-content: center;
}

.pricing-page-note {
  margin-top: 28px;
}

.price-card-primary {
  background: linear-gradient(180deg, #1c45eb 0%, #1532a9 100%);
  color: #fff;
}

.price-card-primary p,
.price-card-primary .price-suffix,
.price-card-primary .feature-list {
  color: rgba(255, 255, 255, 0.82);
}

.price-card-primary .feature-list li::marker {
  color: rgba(255, 255, 255, 0.82);
}

.blog-meta-line {
  font-size: 0.85rem;
}

.blog-card h3 {
  font-size: 1.2rem;
}

.blog-link {
  color: var(--primary);
  font-weight: 800;
}

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

.faq-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #101828 0%, #1f4eff 100%);
}

.cta-actions {
  justify-content: flex-end;
}

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

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

.stat-card,
.billing-card,
.integration-card,
.contact-card,
.contact-panel,
.auth-card,
.auth-side,
.dashboard-shell,
.table-card,
.error-card {
  padding: 28px;
}

.site-footer {
  padding: 28px 0 56px;
}

.marketing-hero {
  padding-top: 18px;
}

.marketing-hero-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(35, 81, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.96));
  box-shadow: var(--shadow);
}

.marketing-hero-title {
  max-width: 14ch;
}

.marketing-hero-copy,
.marketing-section-copy {
  max-width: 860px;
}

.marketing-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.marketing-link-pill {
  background: #fff;
}

.marketing-section-shell {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.marketing-section-header {
  margin-bottom: 0;
}

.marketing-copy-stack {
  display: grid;
  gap: 16px;
}

.marketing-bullet-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0;
  padding-left: 22px;
  color: #3b4658;
  line-height: 1.8;
}

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

.marketing-card-grid,
.marketing-link-grid {
  align-items: stretch;
}

.marketing-card-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-card-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: #3b4658;
  line-height: 1.7;
}

.marketing-table-card {
  overflow-x: auto;
}

.marketing-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.marketing-table th {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.marketing-table td {
  color: #3b4658;
  line-height: 1.7;
}

.blog-article-card {
  max-width: 900px;
  margin: 0 auto;
}

.blog-article-content {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(19, 23, 37, 0.08);
  box-shadow: none;
}

.blog-article-content > :first-child {
  margin-top: 0;
}

.blog-article-content > :last-child {
  margin-bottom: 0;
}

.blog-article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.blog-article-content thead th {
  background: #f5f8ff;
  color: #17305f;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-article-content th,
.blog-article-content td {
  min-width: 190px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-article-content th:last-child,
.blog-article-content td:last-child {
  border-right: 0;
}

.blog-article-content tbody tr:last-child td {
  border-bottom: 0;
}

.blog-article-content tbody tr:nth-child(even) td {
  background: rgba(247, 249, 252, 0.72);
}

.blog-article-content td {
  color: #324055;
  line-height: 1.7;
}

.marketing-faq-grid {
  align-items: stretch;
}

.marketing-faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.marketing-cta-section {
  padding-top: 0;
}

.marketing-cta-title {
  margin-bottom: 10px;
  text-align: left;
}

.marketing-cta-copy {
  margin: 0;
  max-width: 700px;
}

.marketing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page {
  display: grid;
  gap: 30px;
}

.legal-page-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.legal-page-intro .eyebrow {
  justify-content: center;
}

.legal-page-summary {
  margin: 0 auto;
}

.legal-sheet-wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-meta-card {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.legal-meta-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-meta-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.legal-meta-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-sheet {
  width: min(100%, 840px);
  min-height: 1188px;
  margin: 0 auto;
  padding: 56px 58px;
  border: 1px solid #d7deef;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(246, 248, 255, 0.9) 0, rgba(246, 248, 255, 0.9) 72px, #fff 72px, #fff 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08), 0 2px 0 rgba(255, 255, 255, 0.75) inset;
}

.legal-sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e4e8f3;
}

.legal-sheet-kicker {
  margin: 0 0 10px;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-sheet-header h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.05em;
}

.legal-sheet-facts {
  display: grid;
  gap: 14px;
  min-width: 210px;
  margin: 0;
}

.legal-sheet-facts div {
  padding: 14px 16px;
  border: 1px solid #e6ebf5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.legal-sheet-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-sheet-facts dd {
  margin: 0;
  font-weight: 700;
}

.legal-sheet-body {
  display: grid;
  gap: 28px;
}

.legal-section {
  display: grid;
  gap: 16px;
}

.legal-section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.legal-section-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef3ff;
  color: var(--primary-deep);
  font-family: 'Sora', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.legal-section-heading h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.legal-section-content {
  display: grid;
  gap: 14px;
  padding-left: 52px;
}

.legal-section-content p,
.legal-section-content dd,
.legal-section-content li,
.legal-address {
  margin: 0;
  color: #3b4658;
  font-size: 0.98rem;
  line-height: 1.78;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-address {
  display: grid;
  gap: 2px;
  font-style: normal;
  padding: 18px 20px;
  border-left: 3px solid #c7d6ff;
  background: #f8faff;
  border-radius: 0 16px 16px 0;
}

.legal-definitions {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-definition-row {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #e8edf7;
  border-radius: 18px;
  background: #fbfcff;
}

.legal-definition-row dt {
  font-family: 'Sora', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-callout {
  padding: 18px 20px;
  border-radius: 18px;
}

.legal-callout p {
  margin: 0;
}

.legal-callout-neutral {
  border: 1px solid #dbe6ff;
  background: #f4f7ff;
}

.legal-callout-warning {
  border: 1px solid #f6d8a8;
  background: #fff7ea;
}

.footer-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

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

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.auth-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.field,
.textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field:focus,
.textarea:focus {
  outline: 2px solid rgba(35, 81, 255, 0.14);
  border-color: #bfd0ff;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

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

.social-button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 800;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.alert-success {
  background: #eefbf4;
  color: #0f6d48;
}

.alert-danger {
  background: #fff4f1;
  color: #9a3f24;
}

.error-wrap {
  display: grid;
  min-height: calc(100vh - 220px);
  place-items: center;
}

.error-card-fun {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  text-align: center;
  border: 1px solid #dbe6ff;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(35, 81, 255, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(35, 81, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.96));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.error-orbit {
  display: grid;
  place-items: center;
  width: clamp(120px, 20vw, 170px);
  height: clamp(120px, 20vw, 170px);
  margin: 0 auto 20px;
  border: 1px dashed rgba(35, 81, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 12px rgba(35, 81, 255, 0.05);
}

.error-orbit span {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.7rem, 7vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--primary-deep);
}

.error-jokes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.error-jokes span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(35, 81, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #44506a;
  font-size: 0.88rem;
  font-weight: 700;
}


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

@media (max-width: 1100px) {
  .feature-grid,
  .custom-grid,
  .pricing-grid,
  .blog-grid,
  .blog-preview-grid,
  .stats-grid,
  .billing-grid,
  .testimonial-grid,
  .impact-grid,
  .feature-highlight-grid,
  .split-panel,
  .contact-grid,
  .dashboard-grid,
  .auth-layout,
  .footer-grid,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .custom-website-layout {
    grid-template-columns: 1fr;
  }

  .marketing-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-sheet-wrap {
    grid-template-columns: 1fr;
  }

  .legal-meta-card {
    position: static;
  }

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

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

@media (max-width: 920px) {
  .page-shell {
    padding-top: 96px;
  }

  .site-header {
    top: 12px;
  }

  .site-nav {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: fixed;
    inset: 84px 16px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: grid;
  }

  .marketplace-collab-visual {
    margin: 0 auto -44px;
  }

  .nav-actions {
    margin-top: 14px;
  }

  .hero-grid-outrank,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .legal-sheet-header {
    display: grid;
  }

  .hero-platform-cloud {
    opacity: 0.7;
  }

  .platform-chip-wordpress,
  .platform-chip-webflow {
    left: 8%;
  }

  .platform-chip-shopify,
  .platform-chip-framer,
  .platform-chip-wix {
    right: 8%;
  }

  .platform-chip-woocommerce {
    top: 54px;
    left: 24%;
  }

}

@media (max-width: 720px) {
  .page-shell {
    padding-top: 92px;
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .simple-hero {
    min-height: calc(100svh - 92px);
    padding: 20px 0 40px;
    align-items: center;
  }

  .simple-hero .container-fluidish {
    display: grid;
    align-items: center;
    min-height: 100%;
  }

  .marketplace-section {
    padding: 56px 16px;
  }

  .marketplace-hero-title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .marketplace-hero-lead {
    font-size: 18px;
  }

  .marketplace-benefit-item {
    grid-template-columns: 48px 1fr;
  }

  .marketplace-benefit-icon {
    width: 48px;
    height: 48px;
  }

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

  .marketplace-panel {
    padding: 16px;
    border-radius: 24px;
  }

  .marketplace-panel-top,
  .marketplace-filters,
  .marketplace-offer-card {
    grid-template-columns: 1fr;
  }

  .marketplace-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketplace-filters {
    display: none;
  }

  .marketplace-offer-card {
    align-items: start;
  }

  .marketplace-photo-card,
  .marketplace-floating-badge {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .marketplace-photo-card img {
    height: 220px;
  }

  .simple-hero-shell {
    width: min(100%, 760px);
    margin: auto;
  }

  .hero-title.simple-hero-title {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
  }

  .simple-hero-lead {
    max-width: 360px;
  }

  .hero-platform-cloud {
    display: none;
  }


  .hero-grid,
  .feature-grid,
  .workflow-grid,
  .pricing-grid,
  .blog-grid,
  .faq-grid,
  .custom-grid,
  .stats-grid,
  .billing-grid,
  .contact-grid,
  .dashboard-grid,
  .split-panel,
  .auth-layout,
  .footer-grid,
  .hero-proof,
  .dashboard-metrics,
  .social-row,
  .form-grid,
  .impact-grid,
  .testimonial-grid,
  .feature-highlight-grid,
  .how-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .marketing-step-grid {
    grid-template-columns: 1fr;
  }

  .marketing-section-shell {
    padding: 22px;
  }

  .legal-sheet {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .legal-section-content {
    padding-left: 0;
  }

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

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

  .product-flow-copy {
    grid-template-rows: auto auto 1fr;
  }

  .custom-website-form {
    padding: 18px;
  }

  .hero-product-card,
  .feature-card,
  .workflow-card,
  .editor-card,
  .dashboard-card,
  .price-card,
  .blog-card,
  .faq-card,
  .contact-card,
  .contact-panel,
  .auth-card,
  .auth-side,
  .dashboard-shell,
  .billing-card,
  .table-card,
  .error-card,
  .stat-card,
  .integration-card,
  .custom-card,
  .cta-panel,
  .feature-highlight-card {
    padding: 22px;
  }

  .hero-social-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .ai-launchpad {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 76px;
    padding: 0 14px 0 24px;
    border-radius: 28px;
  }

  .ai-launchpad-input {
    min-height: 32px;
    height: 32px;
    max-height: 32px;
    grid-column: auto;
  }

  .ai-launchpad-button {
    grid-column: auto;
    justify-self: end;
    min-width: 50px;
    padding: 0 18px;
  }

  .floating-call-button {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

}
