:root {
  color-scheme: dark;
  --bg: #060913;
  --surface: rgba(17, 21, 36, 0.72);
  --surface-strong: rgba(24, 29, 48, 0.86);
  --line: rgba(120, 132, 170, 0.16);
  --text: #f7f8ff;
  --muted: #75829d;
  --blue: #3e86ff;
  --violet: #8c5cff;
  --green: #2fd17d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050b1f;
  color: var(--text);
}

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

.page-shell {
  min-height: 100vh;
  padding: 16px;
  display: grid;
  place-items: stretch;
}

.page-shell--use-cases {
  place-items: stretch;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(87, 102, 255, 0.16), transparent 25rem),
    radial-gradient(circle at 72% 30%, rgba(140, 92, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(6, 8, 16, 0.98), rgba(5, 7, 14, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(109, 122, 167, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.36;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.9), transparent 24%, transparent 76%, rgba(5, 8, 14, 0.64)),
    radial-gradient(circle at 50% 48%, transparent, rgba(4, 7, 13, 0.66) 74%);
  pointer-events: none;
}

.site-header,
.hero-content,
.chat-button {
  position: relative;
  z-index: 1;
}

.site-header {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto 24px;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 8px;
  padding: 0 30px;
  background: rgba(19, 21, 28, 0.96);
}

.brand,
.nav-links,
.header-actions,
.button,
.status-pill {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: #f5f7ff;
  font-size: 1.28rem;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 12px 32px rgba(105, 93, 255, 0.38);
}

.brand-mark span {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.92);
}

.brand-mark span::before {
  width: 22px;
  height: 2px;
  left: -5px;
  top: 5px;
  transform: rotate(-36deg);
}

.brand-mark span::after {
  width: 2px;
  height: 22px;
  left: 5px;
  top: -5px;
  transform: rotate(36deg);
}

.nav-links {
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  color: #8090ac;
  font-size: 1.08rem;
  font-weight: 800;
}

.nav-links a,
.login {
  transition: color 180ms ease;
}

.nav-links a:hover,
.login:hover {
  color: #e7ebff;
}

.header-actions {
  justify-content: flex-end;
  gap: 24px;
}

.login {
  color: #8d9bb8;
  font-size: 1.04rem;
  font-weight: 800;
}

.button {
  min-height: 56px;
  justify-content: center;
  gap: 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0 28px;
  font-size: 1.03rem;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

button.button {
  font-family: inherit;
}

.button--small {
  min-height: 46px;
  border-radius: 12px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 34px rgba(82, 107, 255, 0.36);
}

.hero-content {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.status-pill {
  min-height: 36px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(27, 31, 49, 0.72);
  color: #7b88a5;
  font-size: 0.94rem;
  font-weight: 800;
}

.status-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(47, 209, 125, 0.8);
}

h1 {
  margin: 18px 0 0;
  color: #fbfcff;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.faq-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 96px;
  background:
    radial-gradient(circle at 18% 8%, rgba(62, 134, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 82% 4%, rgba(140, 92, 255, 0.15), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.faq-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.faq-hero {
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto 0;
  text-align: center;
}

.faq-hero h1 {
  margin: 18px 0 0;
  color: #fbfcff;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.faq-hero > p:last-child {
  max-width: 860px;
  margin: 28px auto 0;
  color: #7890ba;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 700;
  line-height: 1.55;
}

.faq-grid {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 58px auto 0;
}

.faq-card {
  min-width: 0;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 12px;
  padding: 22px 24px;
  background: rgba(20, 23, 32, 0.78);
}

.faq-card__category {
  margin: 0;
  color: #4b93ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-card h2 {
  margin: 12px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.25;
}

.faq-card h2 span {
  color: #8c5cff;
}

.faq-card > p:last-child {
  margin: 12px 0 0;
  color: #8fa2c7;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.faq-takeaway {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 34px;
  margin: 34px auto 0;
  border: 1px solid rgba(62, 134, 255, 0.22);
  border-radius: 16px;
  padding: 34px;
  background: rgba(18, 31, 58, 0.68);
}

.faq-takeaway h2 {
  margin: 14px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.faq-takeaway ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-takeaway li {
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(21, 28, 47, 0.78);
  color: #dbe5ff;
  font-weight: 900;
}

.faq-takeaway p:last-child {
  margin: 18px 0 0;
  color: #9aadcf;
  font-weight: 700;
  line-height: 1.6;
}

.business-chooser-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 86px;
  background:
    radial-gradient(circle at 20% 8%, rgba(62, 134, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 78% 4%, rgba(140, 92, 255, 0.14), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.business-chooser-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.business-chooser-hero {
  width: min(1040px, calc(100% - 48px));
  margin: 58px auto 0;
  text-align: center;
}

.business-chooser-hero h1 {
  margin: 18px 0 0;
  color: #fbfcff;
  font-size: clamp(2.4rem, 5.6vw, 5.44rem);
  line-height: 0.94;
}

.business-chooser-hero > p:last-child {
  max-width: 820px;
  margin: 28px auto 0;
  color: #87a0cc;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
}

.business-chooser-form {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 18px;
  margin: 58px auto 0;
}

.business-chooser-group {
  min-width: 0;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 16px;
  padding: 24px;
  background: rgba(20, 23, 32, 0.78);
}

.business-chooser-group legend {
  padding: 0 8px;
  color: #f8f9ff;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
}

.business-chooser-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.business-chooser-options--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-chooser-options--budget {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-chooser-options label {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(16, 21, 36, 0.84);
  color: #9bb2db;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.business-chooser-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.business-chooser-options label:hover,
.business-chooser-options label:has(input:checked) {
  border-color: rgba(62, 134, 255, 0.62);
  background: rgba(31, 47, 82, 0.9);
  color: #f8f9ff;
  transform: translateY(-1px);
}

.business-chooser-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 22px;
  text-align: center;
}

.business-chooser-analyze,
.business-chooser-submit {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0 30px;
  font: inherit;
  cursor: pointer;
}

.business-chooser-analyze {
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  box-shadow: 0 18px 34px rgba(82, 107, 255, 0.3);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.business-chooser-submit {
  border: 1px solid rgba(123, 133, 166, 0.18);
  background: rgba(20, 23, 32, 0.78);
  color: #dce7ff;
  font-size: 1.05rem;
  font-weight: 900;
}

.business-results {
  margin-top: 28px;
  border: 1px solid rgba(62, 134, 255, 0.24);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 14% 16%, rgba(62, 134, 255, 0.12), transparent 22rem),
    rgba(18, 31, 58, 0.64);
}

.business-results__message h2,
.business-results__header h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.business-results__message p {
  margin: 14px 0 0;
  color: #9bb2db;
  font-weight: 800;
  line-height: 1.5;
}

.business-results__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.business-results__header a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 10px;
  padding: 0 16px;
  background: rgba(20, 23, 32, 0.78);
  color: #dce7ff;
  font-weight: 900;
  white-space: nowrap;
}

.business-results__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.business-results__selected span {
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(21, 28, 47, 0.78);
  color: #9bb2db;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.business-analysis-report {
  margin-top: 24px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 16px;
  padding: 24px;
  background: rgba(20, 23, 32, 0.82);
}

.business-analysis-report h3 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

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

.business-analysis-report__grid p {
  margin: 0;
  border-radius: 12px;
  padding: 16px;
  background: rgba(16, 21, 36, 0.84);
  color: #9bb2db;
  font-weight: 800;
  line-height: 1.5;
}

.business-result-card {
  min-width: 0;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 20px;
  background: rgba(20, 23, 32, 0.82);
}

.business-result-card > span {
  color: #3e86ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.business-result-card h3 {
  margin: 10px 0 0;
  color: #f8f9ff;
  font-size: 1.2rem;
  line-height: 1.2;
}

.business-result-card p {
  margin: 12px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.5;
}

.business-result-card small {
  display: inline-block;
  margin-top: 14px;
  color: #6f84ad;
  font-weight: 900;
}

.business-source-summary {
  margin-top: 28px;
}

.business-source-summary h2 {
  margin: 12px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
  line-height: 1;
}

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

.business-source-card {
  min-width: 0;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 18px;
  background: rgba(20, 23, 32, 0.82);
}

.business-source-card--muted {
  opacity: 0.82;
}

.business-source-card h3 {
  margin: 0;
  color: #f8f9ff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.business-source-card p {
  margin: 10px 0 0;
  color: #9bb2db;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.business-source-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #78a7ff;
  font-weight: 900;
}

.business-resource-links {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(20, 23, 32, 0.78);
}

.business-resource-links h2 {
  margin: 12px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.business-resource-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.business-resource-links__grid a {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(16, 21, 36, 0.84);
  color: #dce7ff;
  font-weight: 900;
  line-height: 1.25;
}

.business-resource-links__grid a:hover {
  border-color: rgba(62, 134, 255, 0.56);
  background: rgba(31, 47, 82, 0.9);
  color: #fff;
}

.business-report-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 88px;
  background:
    radial-gradient(circle at 18% 6%, rgba(62, 134, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 4%, rgba(140, 92, 255, 0.14), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.business-report-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.business-report-hero {
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto 0;
  text-align: center;
}

.business-report-hero h1 {
  margin: 18px 0 0;
  color: #fbfcff;
  font-size: clamp(2.3rem, 4.93vw, 5.02rem);
  line-height: 0.96;
}

.business-report-hero > p:last-child {
  max-width: 900px;
  margin: 28px auto 0;
  color: #87a0cc;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 700;
  line-height: 1.55;
}

.business-report-grid {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 58px auto 0;
}

.business-report-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.82);
}

.business-report-card h2 {
  margin: 0;
  padding: 24px 24px 0;
  color: #f8f9ff;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.business-report-card > p {
  margin: 10px 0 0;
  padding: 0 24px 20px;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.5;
}

.business-report-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.business-report-card th,
.business-report-card td {
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.business-report-card th {
  color: #dbe5ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.business-report-card td {
  color: #8fa2c7;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.business-report-card td:first-child {
  color: #dce7ff;
  font-weight: 900;
}

.business-report-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(62, 134, 255, 0.28);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(18, 31, 58, 0.72);
  color: #dce7ff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.business-report-button:hover {
  border-color: rgba(62, 134, 255, 0.62);
  background: rgba(31, 47, 82, 0.92);
  color: #fff;
}

.business-report-button--inline {
  min-height: 0;
  margin-bottom: 2px;
}

.business-report-top-list {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  margin: 34px auto 0;
  border: 1px solid rgba(62, 134, 255, 0.24);
  border-radius: 16px;
  padding: 32px;
  background: rgba(18, 31, 58, 0.68);
}

.business-report-top-list h2 {
  margin: 12px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
}

.business-report-top-list p:last-child {
  margin: 18px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.55;
}

.business-report-top-list ol {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 24px;
}

.business-report-top-list li {
  break-inside: avoid;
  margin: 0 0 10px;
  color: #dce7ff;
  font-weight: 900;
  line-height: 1.35;
}

.generated-report-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 88px;
  background:
    radial-gradient(circle at 18% 8%, rgba(62, 134, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 4%, rgba(140, 92, 255, 0.14), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.generated-report-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.generated-report-card {
  width: min(1120px, calc(100% - 48px));
  margin: 58px auto 0;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(20, 23, 32, 0.82);
}

.generated-report-header {
  text-align: center;
}

.generated-report-header h1 {
  margin: 16px 0 0;
  color: #fbfcff;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
}

.generated-report-header h2 {
  margin: 18px 0 0;
  color: #78a7ff;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.generated-report-header > p:last-child {
  max-width: 740px;
  margin: 18px auto 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.55;
}

.generated-report-meta,
.generated-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

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

.generated-report-meta div,
.generated-report-metrics div {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 12px;
  padding: 16px;
  background: rgba(16, 21, 36, 0.84);
}

.generated-report-meta span,
.generated-report-metrics span {
  display: block;
  color: #7d8fb0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.generated-report-meta strong,
.generated-report-metrics strong {
  display: block;
  margin-top: 8px;
  color: #f8f9ff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.generated-report-summary,
.generated-report-table-wrap {
  margin-top: 28px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 22px;
  background: rgba(16, 21, 36, 0.72);
}

.generated-report-summary h3,
.generated-report-table-wrap h3 {
  margin: 0;
  color: #f8f9ff;
  font-size: 1.35rem;
}

.generated-report-summary p {
  margin: 12px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.55;
}

.generated-report-table-wrap table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}

.generated-report-table-wrap th,
.generated-report-table-wrap td {
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  padding: 13px 14px;
  color: #9bb2db;
  text-align: left;
}

.generated-report-table-wrap th {
  color: #dbe5ff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sales-report-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 88px;
  background:
    radial-gradient(circle at 15% 8%, rgba(56, 189, 248, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 6%, rgba(34, 197, 94, 0.12), transparent 28rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.sales-report-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.sales-report-sheet {
  width: min(1220px, calc(100% - 48px));
  margin: 58px auto 0;
  display: grid;
  gap: 22px;
}

.sales-report-header {
  text-align: center;
}

.sales-report-header h1 {
  margin: 16px 0 0;
  color: #fbfcff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.94;
}

.sales-report-header > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #9bb2db;
  font-weight: 800;
  line-height: 1.55;
}

.sales-kpi-grid,
.sales-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.sales-kpi-grid div,
.sales-report-panel {
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.sales-kpi-grid div {
  padding: 18px;
}

.sales-kpi-grid span,
.sales-kpi-grid small {
  display: block;
  color: #7d8fb0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sales-kpi-grid strong {
  display: block;
  margin-top: 10px;
  color: #f8f9ff;
  font-size: clamp(1.4rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.sales-kpi-grid small {
  margin-top: 10px;
  color: #89e8c3;
  text-transform: none;
  letter-spacing: 0;
}

.sales-report-panel {
  padding: 24px;
}

.sales-report-panel--wide {
  overflow: hidden;
}

.sales-report-panel h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.sales-report-panel p {
  margin: 14px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.55;
}

.sales-bar-chart {
  height: 260px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  margin-top: 22px;
  padding-top: 36px;
  border-bottom: 1px solid rgba(123, 133, 166, 0.2);
}

.sales-bar-chart div {
  min-width: 0;
  height: var(--height);
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #49dcb1, #397dff);
}

.sales-bar-chart span {
  position: absolute;
  top: -30px;
  color: #dbe5ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.sales-bar-chart strong {
  position: absolute;
  bottom: -30px;
  color: #8fa2c7;
  font-size: 0.82rem;
}

.sales-pipeline-chart {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.sales-pipeline-chart p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: #dbe5ff;
}

.sales-pipeline-chart p span,
.sales-pipeline-chart p strong {
  font-size: 0.95rem;
}

.sales-pipeline-chart div {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(123, 133, 166, 0.14);
}

.sales-pipeline-chart div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #49dcb1, #55a6ff);
}

.sales-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.sales-table-wrap table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.sales-table-wrap th,
.sales-table-wrap td {
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  padding: 13px 14px;
  color: #9bb2db;
  text-align: left;
}

.sales-table-wrap th {
  color: #dbe5ff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sales-table-wrap td:first-child,
.sales-table-wrap td:nth-child(4) {
  color: #f8f9ff;
  font-weight: 900;
}

.sales-ranked-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sales-ranked-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(16, 21, 36, 0.84);
  color: #dbe5ff;
  font-weight: 800;
}

.sales-ranked-list strong {
  color: #89e8c3;
}

.sandbox-report-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 88px;
  background:
    radial-gradient(circle at 16% 8%, rgba(73, 220, 177, 0.14), transparent 30rem),
    radial-gradient(circle at 84% 6%, rgba(62, 134, 255, 0.15), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.sandbox-report-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.sandbox-report-card {
  width: min(1220px, calc(100% - 48px));
  margin: 58px auto 0;
  display: grid;
  gap: 24px;
}

.sandbox-report-header {
  text-align: center;
}

.sandbox-report-header h1 {
  max-width: 1040px;
  margin: 18px auto 0;
  color: #fbfcff;
  font-size: clamp(2.55rem, 5.8vw, 5.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.sandbox-report-header > p:last-child {
  max-width: 840px;
  margin: 24px auto 0;
  color: #9bb2db;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.6;
}

.sandbox-report-summary,
.sandbox-stack,
.sandbox-report-grid article {
  border: 1px solid rgba(123, 133, 166, 0.15);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.sandbox-report-summary,
.sandbox-stack {
  padding: clamp(24px, 4vw, 36px);
}

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

.sandbox-report-grid article {
  padding: 24px;
}

.sandbox-report-summary h2,
.sandbox-stack h2,
.sandbox-report-grid h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.sandbox-report-summary p,
.sandbox-stack p,
.sandbox-report-grid p {
  margin: 14px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.58;
}

.sandbox-stack div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.sandbox-stack p {
  margin: 0;
  border-radius: 10px;
  padding: 14px;
  background: rgba(16, 21, 36, 0.84);
}

.sandbox-stack strong {
  color: #dfe8ff;
}

.sandbox-video-link {
  margin-top: 22px;
  border-radius: 12px;
  padding: 18px;
  background: rgba(16, 21, 36, 0.84);
}

.sandbox-video-link h3 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
}

.sandbox-video-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(31, 47, 82, 0.72);
  color: #dfe8ff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.sandbox-video-toggle:hover,
.sandbox-video-toggle:focus-visible {
  border-color: rgba(137, 232, 195, 0.54);
  color: #ffffff;
}

.sandbox-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 10px;
  background: #05070c;
}

.sandbox-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-page {
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 24px 0 88px;
  background:
    radial-gradient(circle at 18% 8%, rgba(62, 134, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 4%, rgba(140, 92, 255, 0.14), transparent 30rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.founder-back-link {
  margin-left: clamp(18px, 4vw, 54px);
}

.founder-hero {
  width: min(1060px, calc(100% - 48px));
  margin: 58px auto 0;
  text-align: center;
}

.founder-hero h1 {
  margin: 18px 0 0;
  color: #fbfcff;
  font-size: clamp(2.7rem, 6.3vw, 6.03rem);
  line-height: 0.94;
}

.founder-hero > p:last-child {
  margin: 18px auto 0;
  color: #87a0cc;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

.founder-answer-box,
.founder-grid,
.founder-faq {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
}

.founder-answer-box,
.founder-card,
.founder-faq {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 16px;
  background: rgba(20, 23, 32, 0.82);
}

.founder-answer-box {
  padding: 28px;
}

.founder-answer-box h2,
.founder-card h2,
.founder-faq h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.1;
}

.founder-answer-box p,
.founder-card p,
.founder-faq p {
  margin: 14px 0 0;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.6;
}

.founder-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: #9bb2db;
  font-weight: 700;
  line-height: 1.5;
}

.founder-card li::marker {
  color: #78a7ff;
}

.founder-book-link {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.founder-book-link:hover,
.founder-book-link:focus-visible {
  color: inherit;
}

.founder-channel-links {
  margin-top: 18px;
}

.founder-channel-links a {
  color: #dfe8ff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.founder-channel-links a:hover,
.founder-channel-links a:focus-visible {
  color: #ffffff;
}

.founder-card strong {
  color: #f8f9ff;
}

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

.founder-card,
.founder-faq {
  padding: 24px;
}

.founder-faq details {
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  padding: 18px 0;
}

.founder-faq details:first-of-type {
  margin-top: 18px;
}

.founder-faq summary {
  color: #dce7ff;
  font-weight: 900;
  cursor: pointer;
}

.build-heading h2,
.toolkit-heading h2,
.use-cases-copy h2,
.builder-launch-copy h2,
.marketing-funnel-block h2,
.social-proof-block h2,
.pricing-hero-block h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.headline-line--gradient {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 780px;
  margin: 16px auto 0;
  color: #7185ad;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-preview {
  width: min(980px, 100%);
  max-height: 250px;
  overflow: hidden;
  margin: 26px auto 0;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  background: rgba(15, 18, 30, 0.82);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(62, 134, 255, 0.12);
}

.hero-preview img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-6%);
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  min-width: 278px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 20px 44px rgba(62, 134, 255, 0.26);
}

.button--ghost {
  min-width: 228px;
  border-color: rgba(255, 255, 255, 0.04);
  background: rgba(28, 33, 49, 0.7);
  color: #eef2ff;
}

.button--schema {
  min-width: 330px;
  border-color: rgba(62, 134, 255, 0.24);
  background: rgba(18, 31, 58, 0.74);
  color: #dce7ff;
}

.preview-strip {
  position: relative;
  z-index: 2;
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: #111827;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.preview-strip::before {
  content: "🚀";
}

.preview-strip a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 14, 0.84);
  backdrop-filter: blur(12px);
}

.video-modal__dialog {
  position: relative;
  width: min(1040px, 100%);
  border: 1px solid rgba(125, 139, 180, 0.26);
  border-radius: 8px;
  background: #050913;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.video-modal__close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(19, 24, 40, 0.92);
  color: #f7f8ff;
  cursor: pointer;
}

.video-modal__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.video-modal__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
}

.video-modal__fallback {
  margin: 0;
  padding: 22px;
  color: #aab6d0;
  font-weight: 800;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: min(720px, 100%);
  margin: 24px auto 28px;
}

.stats div {
  min-width: 0;
}

.stats dt {
  margin: 0;
  color: #6375ff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.stats dd {
  margin: 10px 0 0;
  color: #5f6c86;
  font-size: 0.86rem;
  font-weight: 800;
}

.chat-button {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #337dff, #8f5cff);
  box-shadow: 0 18px 44px rgba(88, 84, 255, 0.42);
}

.chat-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.build-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 72px clamp(24px, 8vw, 128px) 82px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.build-heading {
  text-align: center;
}

.build-heading > p:first-child {
  margin: 0;
  color: #2f7eff;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-heading h2 {
  margin: 22px 0 0;
  color: #f8f9ff;
  font-size: clamp(3.6rem, 6.3vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.build-heading h2 span {
  background: linear-gradient(100deg, #3d8bff 0%, #756aff 48%, #9a5cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.build-subtitle {
  margin: 30px 0 0;
  color: #7487ad;
  font-size: clamp(1.35rem, 2.15vw, 1.75rem);
  font-weight: 700;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 82px;
}

.build-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  min-height: 180px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 32px;
  background: rgba(20, 23, 32, 0.74);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(35, 51, 95, 0.36);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #2f80ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.build-card h3 {
  margin: 0;
  color: #f4f6ff;
  font-size: clamp(1.32rem, 1.8vw, 1.65rem);
  line-height: 1.25;
}

.build-card p {
  margin: 12px 0 0;
  color: #7384a3;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tags span {
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(39, 51, 84, 0.68);
  color: #7483a0;
  font-size: 0.98rem;
  font-weight: 800;
}

.toolkit-section {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: clamp(82px, 8vw, 116px) clamp(24px, 6vw, 96px);
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.toolkit-section::before {
  display: none;
}

.toolkit-heading,
.toolkit-grid,
.toolkit-cta {
  position: relative;
  z-index: 1;
}

.toolkit-heading {
  text-align: center;
}

.toolkit-heading > p:first-child {
  margin: 0 0 26px;
  color: #2f7eff;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolkit-heading h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: clamp(4rem, 8vw, 7.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.toolkit-heading h2 span {
  background: linear-gradient(100deg, #3d8bff 0%, #756aff 48%, #9a5cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.toolkit-heading > p:last-child {
  max-width: 900px;
  margin: 34px auto 0;
  color: #7890ba;
  font-size: clamp(1.35rem, 2.25vw, 1.85rem);
  font-weight: 700;
  line-height: 1.42;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 96px;
}

.toolkit-card {
  min-height: 248px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 30px;
  background: rgba(20, 23, 32, 0.82);
}

.toolkit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(35, 51, 95, 0.34);
}

.toolkit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toolkit-icon--blue {
  color: #4b93ff;
}

.toolkit-icon--purple {
  color: #a365ff;
}

.toolkit-icon--green {
  color: #39da78;
}

.toolkit-icon--orange {
  color: #ff8c35;
}

.toolkit-icon--pink {
  color: #ff697f;
}

.toolkit-icon--indigo {
  color: #7b82ff;
}

.toolkit-card h3 {
  margin: 32px 0 0;
  color: #f4f6ff;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  line-height: 1.22;
}

.toolkit-card p {
  margin: 16px 0 0;
  color: #7487a8;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.toolkit-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 980px;
  margin: 78px auto 0;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 22px;
  padding: clamp(42px, 5vw, 64px) 24px;
  background:
    radial-gradient(circle at 20% 45%, rgba(62, 134, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 80% 40%, rgba(140, 92, 255, 0.18), transparent 22rem),
    rgba(19, 23, 38, 0.76);
  text-align: center;
}

.toolkit-cta h3 {
  max-width: 780px;
  margin: 0;
  color: #fbfcff;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.toolkit-cta h3 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.toolkit-cta > p:not(.future-ai-badge) {
  max-width: 720px;
  margin: 0;
  color: #87a0cc;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.42;
}

.screenshot-attachment {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.screenshot-attachment img {
  display: block;
  width: 100%;
  height: auto;
}

.automation-prompt-section {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: 108px clamp(18px, 7vw, 128px) 96px;
  background:
    radial-gradient(circle at 50% 42%, rgba(50, 92, 162, 0.14), transparent 28rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.automation-prompt-heading {
  text-align: center;
}

.automation-prompt-heading > p:first-child {
  margin: 0;
  color: #2f7eff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-prompt-heading h2 {
  margin: 24px 0 0;
  color: #f8f9ff;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.automation-prompt-heading h2 span {
  background: linear-gradient(100deg, #3d8bff 0%, #756aff 48%, #9a5cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.automation-prompt-heading > p:last-child {
  max-width: 760px;
  margin: 32px auto 0;
  color: #7890ba;
  font-size: clamp(1.14rem, 1.8vw, 1.48rem);
  font-weight: 700;
  line-height: 1.5;
}

.automation-prompt-box {
  width: min(960px, 100%);
  margin: 84px auto 0;
  border: 1px solid rgba(96, 125, 190, 0.26);
  border-radius: 18px;
  padding: 24px;
  background: rgba(24, 27, 38, 0.92);
  box-shadow: 0 0 54px rgba(40, 101, 207, 0.14);
}

.automation-prompt-box label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8fa2c7;
  font-size: 0.95rem;
  font-weight: 900;
}

.automation-prompt-box label svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #3d8bff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.automation-prompt-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 16px;
  align-items: end;
  margin-top: 18px;
}

.automation-prompt-input-row textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef2ff;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.automation-prompt-input-row textarea::placeholder {
  color: #4f5d78;
}

.automation-send-button {
  width: 62px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  color: white;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(62, 134, 255, 0.28);
}

.automation-send-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.automation-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(900px, 100%);
  margin: 30px auto 0;
}

.automation-examples button {
  min-height: 38px;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(20, 23, 32, 0.78);
  color: #8fa2c7;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.automation-examples button:hover,
.automation-examples button.is-selected {
  border-color: rgba(62, 134, 255, 0.55);
  color: #dbe5ff;
}

.automation-result {
  display: none;
  width: min(760px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(62, 134, 255, 0.24);
  border-radius: 16px;
  padding: 24px;
  background: rgba(18, 31, 58, 0.72);
}

.automation-result.is-visible {
  display: block;
}

.automation-result__eyebrow {
  margin: 0;
  color: #4b93ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-result h3 {
  margin: 12px 0 0;
  color: #f8f9ff;
  font-size: 1.28rem;
}

.automation-result p:last-child {
  margin: 10px 0 0;
  color: #8fa2c7;
  font-weight: 700;
  line-height: 1.55;
}

.automation-email-link {
  margin-top: 18px;
}

.automation-email-status {
  margin-top: 12px;
  color: #8fa2c7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-cards-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 18px;
  padding: 38px clamp(24px, 9vw, 184px) 86px;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.pricing-card {
  position: relative;
  min-height: 542px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  padding: 44px 42px 36px;
  background: rgba(20, 23, 32, 0.72);
}

.pricing-card--featured {
  border-color: rgba(123, 133, 166, 0.32);
  background: rgba(27, 30, 39, 0.86);
  box-shadow: 0 26px 70px rgba(39, 82, 166, 0.18);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 156px;
  border-radius: 999px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #3d86ff, #915cff);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.pricing-card h3 {
  margin: 0;
  color: #f7f8ff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.pricing-card p {
  min-height: 52px;
  margin: 14px 0 0;
  color: #8798b8;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.price-line {
  min-height: 68px;
  display: flex;
  align-items: end;
  gap: 6px;
  margin-top: 28px;
}

.price-line span {
  color: #fff;
  font-size: clamp(2.7rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 0.95;
}

.price-line small {
  color: #8798b8;
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border-radius: 12px;
  background: rgba(25, 29, 45, 0.9);
  color: #f7f8ff;
  font-size: 1rem;
  font-weight: 900;
}

.pricing-button--primary {
  background: linear-gradient(135deg, #4388f4, #8957ef);
  box-shadow: 0 16px 30px rgba(63, 116, 255, 0.24);
}

.pricing-card ul {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 34px;
  color: #8798b8;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: #77a9ff;
  font-weight: 900;
}

.email-info-panel {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(56px, 7vw, 88px) clamp(28px, 6vw, 78px);
  background:
    radial-gradient(circle at 30% 18%, rgba(62, 134, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 78% 12%, rgba(140, 92, 255, 0.12), transparent 26rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.sandbox-security-panel {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(52px, 8vw, 92px) 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(73, 220, 177, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(62, 134, 255, 0.16), transparent 28rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.sandbox-security-panel__content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sandbox-security-panel__content h2 {
  margin: 18px 0 0;
  color: #f8f9ff;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
}

.sandbox-security-panel__content > p:not(.schema-kicker) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #87a0cc;
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  font-weight: 800;
  line-height: 1.55;
}

.sandbox-security-panel .business-chooser-button {
  margin-top: 32px;
}

.business-functions-panel {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(48px, 7vw, 82px) 24px;
  background:
    radial-gradient(circle at 16% 10%, rgba(62, 134, 255, 0.15), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(73, 220, 177, 0.12), transparent 26rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.business-functions-panel__heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.business-functions-panel__heading h2 {
  margin: 18px 0 0;
  color: #f8f9ff;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.business-functions-panel__heading > p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: #87a0cc;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 800;
  line-height: 1.55;
}

.business-functions-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.business-functions-grid button {
  min-height: 58px;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(20, 23, 32, 0.86);
  color: #dfe8ff;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.business-functions-grid button:hover,
.business-functions-grid button:focus-visible {
  border-color: rgba(73, 220, 177, 0.54);
  background: rgba(31, 47, 82, 0.9);
  color: #ffffff;
}

.email-info-panel__heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.email-info-panel__heading > p:first-child {
  margin: 0;
  color: #3e86ff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.email-info-panel__heading h2 {
  margin: 18px 0 0;
  color: #f8f9ff;
  font-size: clamp(2.6rem, 5.6vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.email-info-panel__heading > p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: #87a0cc;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
}

.email-info-panel__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 74px);
  width: min(1330px, 100%);
  margin: 72px auto 0;
  align-items: start;
}

.email-info-panel__details {
  display: grid;
  gap: 34px;
}

.email-info-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.email-info-item > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(23, 55, 93, 0.58);
  color: #3e86ff;
}

.email-info-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-info-item p {
  margin: 0;
  color: #8fa2c7;
  font-size: 1rem;
  font-weight: 800;
}

.email-info-item a,
.email-info-item strong {
  display: inline-block;
  margin-top: 8px;
  color: #f8f9ff;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 900;
  line-height: 1.35;
}

.email-info-form {
  display: grid;
  gap: 24px;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(18, 24, 40, 0.78);
}

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

.email-info-form label {
  min-width: 0;
  display: grid;
  gap: 12px;
  color: #9bb2db;
  font-weight: 800;
}

.email-info-form input,
.email-info-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 133, 166, 0.13);
  border-radius: 12px;
  padding: 0 18px;
  background: rgba(21, 28, 47, 0.82);
  color: #f8f9ff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

.email-info-form input {
  min-height: 52px;
}

.email-info-form textarea {
  min-height: 142px;
  resize: vertical;
  padding-top: 16px;
  line-height: 1.45;
}

.email-info-form input::placeholder,
.email-info-form textarea::placeholder {
  color: #6e83ad;
}

.email-info-form input:focus,
.email-info-form textarea:focus {
  border-color: rgba(62, 134, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(62, 134, 255, 0.13);
}

.email-info-form button {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(82, 107, 255, 0.28);
}

.email-info-form__status {
  min-height: 1.35em;
  margin: 0;
  color: #8ddfb8;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.spaced-image-attachment {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.spaced-image-attachment img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(64px, 7vw, 96px) clamp(38px, 9vw, 180px) 58px;
}

.site-footer-panel__brand .brand {
  font-size: 1.95rem;
}

.site-footer-panel__brand p {
  max-width: 360px;
  margin: 30px 0 0;
  color: #78a0d8;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer-panel__column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.site-footer-panel__column h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: 1.55rem;
  font-weight: 900;
}

.site-footer-panel__column a {
  color: #78a0d8;
  font-size: 1.55rem;
  font-weight: 700;
}

.site-footer-panel__column a:hover,
.site-footer-panel__bottom a:hover {
  color: #dce7ff;
}

.site-footer-panel__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  margin-top: 28px;
  padding-top: 38px;
}

.site-footer-panel__bottom p {
  margin: 0;
  color: #78a0d8;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-footer-panel__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.site-footer-panel__bottom a {
  color: #78a0d8;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-founder-link {
  justify-self: start;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 8px;
  padding: 6px 12px;
  background: #07090f;
  color: #78a7ff;
  font-size: clamp(0.72rem, 1vw, 0.96rem);
  font-weight: 900;
  line-height: 1;
}

.site-footer-panel__column .footer-founder-link {
  font-size: clamp(0.72rem, 1vw, 0.96rem);
}

.footer-founder-link:hover {
  border-color: rgba(62, 134, 255, 0.56);
  color: #dce7ff;
}

.marketing-funnel-block {
  min-height: clamp(410px, 42vw, 540px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(44px, 5vw, 68px) 24px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.marketing-funnel-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(67, 136, 244, 0.32);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(24, 39, 70, 0.6);
  color: #4388f4;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
}

.marketing-funnel-block h2 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(3.9rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.marketing-funnel-block h2 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.marketing-funnel-copy {
  max-width: 920px;
  margin: 0;
  color: #87a0cc;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.34;
}

.marketing-funnel-console {
  width: min(840px, calc(100% - 36px));
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  background: rgba(25, 27, 36, 0.9);
  text-align: left;
}

.marketing-funnel-console__bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 16px) 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  background: rgba(28, 31, 43, 0.92);
}

.marketing-funnel-console__bar span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #bc3f45;
}

.marketing-funnel-console__bar span:nth-child(2) {
  background: #b28b16;
}

.marketing-funnel-console__bar span:nth-child(3) {
  background: #2b9f61;
}

.marketing-funnel-console__bar p {
  margin: 0;
  color: #8ea0bf;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.marketing-funnel-console__body {
  min-height: 124px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 32px 30px;
}

.marketing-funnel-console__body h3,
.marketing-funnel-console__body p {
  margin: 0;
}

.marketing-funnel-console__body h3 {
  color: #f6f7ff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.marketing-funnel-console__body p {
  margin-top: 8px;
  color: #8ea0bf;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
}

.marketing-funnel-console__body a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 28px;
  background: linear-gradient(135deg, #4388f4, #8957ef);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.use-cases-section {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: clamp(64px, 9vw, 118px) clamp(24px, 5vw, 72px);
  border: 1px solid #22283a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 24%, rgba(67, 136, 244, 0.15), transparent 26rem),
    radial-gradient(circle at 78% 52%, rgba(140, 92, 255, 0.14), transparent 24rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.use-cases-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(115, 133, 185, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}

.use-cases-nav,
.use-cases-copy,
.use-cases-audiences {
  position: relative;
  z-index: 1;
}

.use-cases-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px clamp(20px, 3.2vw, 44px);
  margin: 0 auto clamp(52px, 7vw, 86px);
  color: #8090b0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 900;
}

.use-cases-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.use-cases-nav a:hover {
  color: #f7f8ff;
  transform: translateY(-1px);
}

.use-cases-nav__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 20px;
  background: linear-gradient(135deg, #4388f4, #8957ef);
  color: #fff;
  box-shadow: 0 16px 34px rgba(82, 107, 255, 0.28);
}

.use-cases-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.use-cases-eyebrow {
  margin: 0 0 20px;
  color: #4388f4;
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.use-cases-copy h2 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(4rem, 8.8vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.use-cases-copy h1 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(4.4rem, 9.4vw, 8.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.use-cases-copy h2 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.use-cases-copy h1 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.use-cases-copy > p:last-child {
  max-width: 800px;
  margin: 32px auto 0;
  color: #87a0cc;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

.business-chooser-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 30px 7px 0;
  border-radius: 14px;
  padding: 0 28px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  box-shadow: 0 18px 34px rgba(82, 107, 255, 0.3);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
}

.business-chooser-button--secondary {
  border: 1px solid rgba(123, 133, 166, 0.18);
  background: rgba(20, 23, 32, 0.82);
  box-shadow: none;
  color: #dce7ff;
}

.use-cases-audiences {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin: clamp(52px, 7vw, 86px) auto 0;
}

.use-case-pill {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 8px;
  background: rgba(20, 24, 36, 0.72);
  color: #94a9d1;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.use-case-pill span {
  color: #4c91ff;
  font-size: 0.88rem;
  font-weight: 900;
}

.use-case-pill:hover,
.use-case-pill--active {
  border-color: rgba(67, 136, 244, 0.48);
  background: rgba(31, 36, 54, 0.94);
  color: #f7f8ff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(45, 87, 176, 0.18);
}

.use-case-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 1376px;
  margin: clamp(42px, 6vw, 72px) auto 0;
}

.use-case-display {
  --use-case-accent: #63a5ff;
  --use-case-panel: rgba(16, 36, 52, 0.82);
  --use-case-border: rgba(67, 136, 244, 0.3);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  min-height: 430px;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  padding: clamp(34px, 5vw, 60px);
  background: rgba(20, 22, 28, 0.88);
}

.use-case-display[hidden] {
  display: none;
}

.use-case-display--developer {
  --use-case-accent: #52e784;
  --use-case-panel: rgba(13, 55, 36, 0.76);
  --use-case-border: rgba(82, 231, 132, 0.27);
}

.use-case-display--creator {
  --use-case-accent: #c27bff;
  --use-case-panel: rgba(48, 25, 55, 0.82);
  --use-case-border: rgba(194, 123, 255, 0.28);
}

.use-case-display--enterprise {
  --use-case-accent: #ff963f;
  --use-case-panel: rgba(55, 35, 20, 0.82);
  --use-case-border: rgba(255, 150, 63, 0.28);
}

.use-case-display__copy {
  max-width: 720px;
}

.use-case-display__label {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.use-case-display__label--problem {
  color: #ff6f75;
}

.use-case-display__label--solution {
  margin-top: 38px;
  color: #4388f4;
}

.use-case-display__label--outcome {
  margin-top: 38px;
  color: #46e783;
}

.use-case-display h3,
.use-case-display h4 {
  margin: 16px 0 0;
  color: #f2f4fb;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.45;
}

.use-case-display__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  color: #4388f4;
  font-size: 1.05rem;
  font-weight: 900;
}

.use-case-display__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--use-case-border);
  border-radius: 18px;
  background: var(--use-case-panel);
}

.use-case-display__metrics div {
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
}

.use-case-display__metrics strong {
  color: var(--use-case-accent);
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.use-case-display__metrics span {
  margin-top: 12px;
  color: #8da0bb;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.use-cases-section--page {
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.use-cases-audiences--page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  align-items: stretch;
}

.use-case-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 8px;
  padding: 26px;
  background: rgba(17, 21, 34, 0.74);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.use-case-card p {
  margin: 0;
  color: #4c91ff;
  font-size: 0.95rem;
  font-weight: 900;
}

.use-case-card h2 {
  margin: 28px 0 0;
  color: #f8f9ff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.use-case-card span {
  display: block;
  margin-top: 22px;
  color: #8ea3ca;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.use-case-card--active {
  border-color: rgba(67, 136, 244, 0.46);
  background: rgba(29, 35, 54, 0.92);
  box-shadow: 0 26px 62px rgba(45, 87, 176, 0.2);
}

.use-case-page-shell {
  padding: 16px;
  background: #eef1f5;
}

.use-case-preview {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 32px);
  border: 1px solid #22242c;
  border-radius: 8px;
  background: #07080d;
  color: #f8f9ff;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
}

.use-case-preview:has(.use-case-story#creators) {
  background: #07080d;
}

.use-case-preview::before {
  position: absolute;
  inset: 86px 0 auto;
  height: 1px;
  content: "";
  background: rgba(123, 133, 166, 0.14);
}

.use-case-preview__header {
  position: relative;
  z-index: 1;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  background: rgba(22, 24, 31, 0.94);
}

.use-case-brand,
.use-case-preview__nav,
.use-case-preview__actions {
  display: inline-flex;
  align-items: center;
}

.use-case-brand {
  gap: 14px;
  color: #f3f5fb;
  font-size: 1.35rem;
  font-weight: 900;
}

.use-case-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #4b8dff, #8c5cff);
  color: #fff;
  box-shadow: 0 14px 36px rgba(98, 93, 255, 0.34);
}

.use-case-preview__nav {
  justify-content: center;
  gap: clamp(28px, 4.6vw, 62px);
  color: #8090ac;
  font-size: 1.06rem;
  font-weight: 800;
}

.use-case-preview__actions {
  justify-content: flex-end;
  gap: 24px;
  color: #8d9bb8;
  font-size: 1.04rem;
  font-weight: 800;
}

.use-case-preview__nav a,
.use-case-preview__actions a {
  transition: color 180ms ease, transform 180ms ease;
}

.use-case-preview__nav a:hover,
.use-case-preview__actions a:hover {
  color: #f7f8ff;
  transform: translateY(-1px);
}

.use-case-preview__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 24px;
  background: linear-gradient(135deg, #4388f4, #8957ef);
  color: #fff;
  box-shadow: 0 18px 34px rgba(82, 107, 255, 0.3);
}

.use-case-page-hero {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: clamp(36px, 5vw, 58px);
  text-align: center;
}

.use-case-preview:has(.use-case-story#creators) .use-case-page-hero,
.use-case-preview:has(.use-case-story#creators) .use-case-tabs {
  display: none;
}

.use-case-page-hero h1 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(3.5rem, 6.6vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.use-case-page-hero h1 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.use-case-page-hero p {
  max-width: 760px;
  margin: 26px auto 0;
  color: #7f99c5;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.38;
}

.use-case-tabs {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(58px, 7vw, 86px) auto 0;
}

.use-case-tab {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #8aa0c8;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.use-case-tab svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.use-case-tab--active {
  border-color: rgba(123, 133, 166, 0.24);
  background: rgba(25, 28, 37, 0.94);
  color: #58a0ff;
}

.use-case-story {
  position: relative;
  z-index: 1;
  width: min(1376px, calc(100% - 60px));
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 38px;
  margin: 60px auto 0;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  padding: 68px 60px 28px;
  background: linear-gradient(180deg, rgba(21, 23, 30, 0.98), rgba(17, 18, 24, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.use-case-preview:has(.use-case-story#creators) .use-case-story {
  width: min(1376px, calc(100% - 60px));
  min-height: clamp(520px, calc(100vh - 164px), 620px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  margin-top: 44px;
  padding: clamp(48px, 5vw, 70px) clamp(48px, 5vw, 60px);
  border-color: rgba(123, 133, 166, 0.16);
  border-radius: 18px;
  background: rgba(20, 22, 28, 0.86);
  box-shadow: none;
}

.use-case-story__copy {
  max-width: 760px;
}

.use-case-story__label {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.use-case-story__label--problem {
  color: #ff6f75;
}

.use-case-story__label--solution {
  margin-top: 50px;
  color: #4388f4;
}

.use-case-story__label--outcome {
  margin-top: 50px;
  color: #46e783;
}

.use-case-story h2,
.use-case-story h3 {
  margin: 16px 0 0;
  color: #eff2fa;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.45;
}

.use-case-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: #4388f4;
  font-size: 1.05rem;
  font-weight: 900;
}

.use-case-learn-more span {
  font-size: 1.2rem;
}

.use-case-metrics {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(67, 136, 244, 0.3);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(22, 35, 54, 0.92), rgba(18, 44, 58, 0.8)),
    rgba(24, 35, 52, 0.92);
}

.use-case-preview:has(.use-case-story#creators) .use-case-metrics {
  align-self: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(23, 36, 56, 0.94), rgba(17, 44, 55, 0.82)),
    rgba(24, 35, 52, 0.92);
}

.use-case-metrics div {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
}

.use-case-metrics strong {
  color: #63a5ff;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.use-case-metrics span {
  margin-top: 10px;
  color: #8da0bb;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.use-case-chat {
  position: absolute;
  right: 36px;
  bottom: 32px;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ba0ff, #7655f2);
  color: #fff;
  box-shadow: 0 22px 44px rgba(92, 100, 255, 0.36);
  cursor: pointer;
}

.use-case-chat svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.custom-web-page-sequence {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.custom-web-page-sequence img {
  display: block;
  width: 100%;
  height: auto;
}

.builder-launch-section {
  margin-top: 18px;
  padding: 92px 24px 96px;
  border: 1px solid #22283a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.15), transparent 26rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.builder-launch-copy {
  margin: 0 auto 36px;
  max-width: 1120px;
}

.builder-launch-copy > p:first-child {
  margin: 0;
  color: #3e86ff;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.builder-launch-copy h2 {
  margin: 14px auto 0;
  max-width: 1080px;
  color: #f7f8ff;
  font-size: clamp(3.25rem, 6.1vw, 6.35rem);
  font-weight: 900;
  line-height: 1;
}

.builder-launch-copy h2 span {
  background: linear-gradient(100deg, #3e86ff 0%, #8c5cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.builder-launch-copy .builder-launch-copy__subtext {
  max-width: 820px;
  margin: 22px auto 0;
  color: #88a4d2;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.builder-launch-form {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.builder-launch-form label {
  min-width: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.builder-launch-form label span {
  color: #d8e3ff;
  font-size: 1.08rem;
  font-weight: 900;
}

.builder-launch-form input {
  width: 100%;
  min-height: 68px;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 14px;
  padding: 0 22px;
  background: rgba(18, 22, 36, 0.92);
  color: #f8f9ff;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  outline: none;
}

.builder-launch-form input::placeholder {
  color: #647491;
}

.builder-launch-form input:focus {
  border-color: rgba(62, 134, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(62, 134, 255, 0.14);
}

.builder-style-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  padding: 0;
  margin: 10px 0 0;
}

.builder-style-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #d8e3ff;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: left;
}

.builder-style-option {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}

.builder-style-option input {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: #3e86ff;
}

.builder-style-option span {
  display: grid;
  gap: 8px;
  max-width: 78%;
}

.builder-style-option strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
}

.builder-style-option small {
  color: #9fb0cf;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
}

.builder-style-option--light {
  background:
    radial-gradient(circle at 84% 12%, rgba(205, 224, 255, 0.95), transparent 9rem),
    linear-gradient(135deg, #f8fbff, #ffffff 58%, #fbf5ff);
}

.builder-style-option--light strong {
  color: #111827;
}

.builder-style-option--light small {
  color: #53627a;
}

.builder-style-option--dark {
  background:
    radial-gradient(circle at 60% 14%, rgba(62, 134, 255, 0.2), transparent 13rem),
    linear-gradient(135deg, #151c2d, #060b16 70%);
}

.builder-style-option:has(input:checked) {
  border-color: rgba(62, 134, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(62, 134, 255, 0.16);
}

.builder-launch-button,
.builder-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
}

.builder-launch-button {
  grid-column: 1 / -1;
  min-height: 64px;
  width: 100%;
  border-radius: 14px;
  border: 0;
  padding: 0 30px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  color: #fff;
  font-family: inherit;
  font-size: 1.28rem;
  box-shadow: 0 18px 42px rgba(62, 134, 255, 0.3);
  cursor: pointer;
}

.builder-launch-button svg,
.builder-back-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-page-shell {
  display: grid;
  justify-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.builder-back-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(20, 23, 32, 0.9);
  color: #dce7ff;
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.builder-back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-page-shell img {
  display: block;
  width: min(1220px, calc(100% - 48px));
  height: auto;
  border-radius: 8px;
}

.builder-page-shell img:first-child {
  margin-top: 42px;
}

.builder-page-shell img + img,
.custom-builder-panel + img {
  margin-top: 18px;
}

.features-page-builder-intro {
  width: min(1540px, calc(100% - 48px));
  padding: 86px 0 54px;
}

.features-page-builder-copy {
  max-width: none;
}

.features-page-builder-copy h1 {
  margin: 0;
  color: #f7f8ff;
  font-size: clamp(3.94rem, 6.45vw, 7.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.features-page-builder-copy h1 span {
  background: linear-gradient(100deg, #3e86ff 0%, #8c5cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.features-page-builder-copy p {
  max-width: min(1320px, 100%);
  margin: 34px 0 0;
  color: #88a4d2;
  font-size: clamp(1.5rem, 2.36vw, 2.36rem);
  font-weight: 800;
  line-height: 1.38;
}

.features-page-business-panel {
  width: min(1540px, 100%);
  display: grid;
  gap: 36px;
  margin: 78px 0 0;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 22px;
  padding: 42px 38px 44px;
  background: rgba(20, 23, 32, 0.66);
}

.features-page-business-panel > p {
  margin: 0;
  color: #3e86ff;
  font-size: clamp(1.75rem, 2.25vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.features-page-business-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.features-page-business-fields label {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.features-page-business-fields label span {
  color: #8191ad;
  font-size: clamp(1.35rem, 1.75vw, 1.9rem);
  font-weight: 900;
}

.features-page-business-fields input {
  width: 100%;
  min-height: 86px;
  border: 1px solid rgba(123, 133, 166, 0.12);
  border-radius: 18px;
  padding: 0 30px;
  background: rgba(18, 22, 36, 0.92);
  color: #f8f9ff;
  font: inherit;
  font-size: clamp(1.45rem, 1.85vw, 2rem);
  font-weight: 800;
  outline: none;
}

.features-page-business-fields input::placeholder {
  color: #647491;
}

.features-page-business-fields input:focus {
  border-color: rgba(62, 134, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(62, 134, 255, 0.14);
}

.builder-page-topbar {
  padding: 32px clamp(24px, 9vw, 184px) 0;
}

.builder-back-button {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  background: rgba(20, 23, 32, 0.82);
  color: #8fa9d8;
  font-size: 1rem;
}

.custom-builder-panel {
  width: 100%;
  display: grid;
  justify-items: center;
  padding: 0 0 16px;
  background: #07090f;
}

.custom-builder-panel h3 {
  width: min(1220px, calc(100% - 48px));
  margin: 0 0 20px;
  color: #f8f9ff;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.2;
}

.custom-builder-panel--homepage {
  padding: 52px 0 64px;
  border-top: 1px solid rgba(123, 133, 166, 0.12);
}

.requirements-card {
  width: min(1220px, calc(100% - 48px));
  overflow: visible;
  border: 1px solid rgba(123, 133, 166, 0.17);
  border-radius: 18px;
  background: rgba(20, 23, 32, 0.82);
}

.requirements-card__header {
  position: relative;
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(123, 133, 166, 0.08);
  padding: 0 25px;
  background: transparent;
  color: #2f82ff;
  font-family: inherit;
  font-size: 1.18rem;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.requirements-card__header svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8fa1c2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.requirements-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 92px;
  row-gap: 16px;
  padding: 18px 26px 22px;
}

.requirements-options[hidden] {
  display: none;
}

.requirements-card__header[aria-expanded="false"] svg {
  transform: rotate(180deg);
}

.requirements-options label {
  position: relative;
  min-height: 22px;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  color: #8192af;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.requirements-option-text {
  position: relative;
  display: inline-block;
}

.requirements-tooltip {
  position: absolute;
  left: calc(100% + 38px);
  top: 50%;
  z-index: 30;
  width: min(360px, calc(100vw - 72px));
  max-width: max-content;
  border: 1px solid rgba(123, 133, 166, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(12, 16, 28, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  color: #dce7ff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.requirements-tooltip::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  border: 7px solid transparent;
  border-right-color: rgba(12, 16, 28, 0.98);
  transform: translateY(-50%);
}

.requirements-option:hover .requirements-tooltip,
.requirements-option:focus-within .requirements-tooltip,
.requirements-option.is-tooltip-visible .requirements-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
  visibility: visible;
}

.requirements-options input {
  appearance: none;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid #374155;
  border-radius: 3px;
  background: rgba(10, 14, 24, 0.68);
  cursor: pointer;
}

.requirements-options input:checked {
  border-color: #3e86ff;
  background:
    linear-gradient(135deg, #3e86ff, #8c5cff);
  box-shadow: 0 0 0 3px rgba(62, 134, 255, 0.16);
}

.requirements-options input:checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  margin: 1px 0 0 5px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.requirements-list {
  width: min(1220px, calc(100% - 48px));
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.requirements-disclosure {
  overflow: visible;
  border: 1px solid rgba(123, 133, 166, 0.17);
  border-radius: 18px;
  background: rgba(20, 23, 32, 0.82);
}

.requirements-disclosure summary {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.requirements-disclosure summary::-webkit-details-marker {
  display: none;
}

.requirements-disclosure summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #8fa1c2;
  border-bottom: 2px solid #8fa1c2;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.requirements-disclosure[open] summary {
  border-bottom: 1px solid rgba(123, 133, 166, 0.08);
}

.requirements-disclosure[open] summary::after {
  transform: rotate(225deg);
}

.requirements-disclosure--purple summary {
  color: #9a5cff;
}

.requirements-disclosure--blue summary {
  color: #2f82ff;
}

.requirements-options--section-two {
  grid-template-rows: repeat(10, auto);
  row-gap: 15px;
  padding: 20px 26px 24px;
}

.requirements-row {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(123, 133, 166, 0.17);
  border-radius: 18px;
  padding: 0 25px;
  background: rgba(20, 23, 32, 0.82);
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.requirements-row--blue {
  color: #2f82ff;
}

.requirements-row--purple {
  color: #9a5cff;
}

.requirements-row svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #8fa1c2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-action-row {
  width: min(1220px, calc(100% - 48px));
  display: flex;
  justify-content: center;
  padding: 48px 0 12px;
}

.builder-submit-button {
  min-width: min(560px, 100%);
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  color: #fff;
  font-family: inherit;
  font-size: 1.24rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(62, 134, 255, 0.34);
}

.builder-submit-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.large-spaced-image-attachment {
  overflow: hidden;
  margin-top: 18px;
  padding: 4in 0;
  border: 1px solid #22283a;
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.large-spaced-image-attachment img {
  display: block;
  width: 100%;
  height: auto;
}

.generated-page-shell {
  min-height: 100vh;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.14), transparent 32rem),
    #050914;
  color: #f7f8ff;
}

.generated-header {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 8px;
  padding: 0 28px;
  background: rgba(19, 21, 28, 0.96);
}

.generated-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  color: #8090ac;
  font-weight: 900;
}

.generated-back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 12px;
  padding: 0 18px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-hero,
.generated-section,
.generated-contact {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 23, 38, 0.94), rgba(9, 12, 22, 0.9)),
    rgba(11, 14, 24, 0.82);
}

.generated-hero {
  margin-top: 18px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 7vw, 112px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(62, 134, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(18, 23, 38, 0.96), rgba(8, 11, 20, 0.92));
}

.generated-hero > p:first-child,
.generated-section > div > p,
.generated-contact > p {
  margin: 0;
  color: #3e86ff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-hero h1,
.generated-section h2,
.generated-contact h2 {
  max-width: 1000px;
  margin: 18px 0 0;
  font-size: clamp(1.9rem, 3.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
}

.generated-hero h1 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.generated-hero-uploaded-image {
  width: min(100%, 1120px);
  height: auto;
  margin: 28px auto 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.generated-hero > p:last-of-type {
  max-width: 760px;
  margin: 22px auto 0;
  color: #88a4d2;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}

.generated-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
}

.generated-actions a,
.generated-contact a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  padding: 0 26px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-actions a + a {
  background: rgba(20, 23, 32, 0.82);
}

.generated-back-link:hover,
.generated-back-link:focus-visible,
.generated-actions a:hover,
.generated-actions a:focus-visible,
.generated-contact a:hover,
.generated-contact a:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.95), rgba(140, 92, 255, 0.95));
  box-shadow: 0 14px 34px rgba(62, 134, 255, 0.24);
  transform: translateY(-1px);
}

.generated-section {
  margin-top: 18px;
  padding: clamp(44px, 6vw, 76px) clamp(24px, 6vw, 80px);
}

.generated-video-games {
  display: grid;
  gap: 28px;
}

.generated-video-games-panel {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 16px;
  padding: clamp(12px, 2vw, 18px);
  background:
    radial-gradient(circle at 50% 14%, rgba(62, 134, 255, 0.24), transparent 42rem),
    linear-gradient(145deg, rgba(14, 20, 38, 0.96), rgba(6, 9, 20, 0.94));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.generated-video-games-panel img {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.generated-video-games-showcase {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.generated-video-game-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 22px);
  position: absolute;
  top: clamp(108px, 10.6vw, 156px);
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 clamp(8px, 1.5vw, 18px);
  pointer-events: none;
}

.generated-video-game-labels p {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.84);
}

.generated-books-preview-link-map {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.generated-books-preview-link-map img {
  width: 100%;
}

.generated-books-preview-link {
  position: absolute;
  display: block;
  border-radius: 12px;
}

.generated-books-preview-link:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.92);
  outline-offset: 4px;
}

.generated-books-preview-link--consciousness {
  left: 1.8%;
  top: 3.2%;
  width: 20.2%;
  height: 92.4%;
}

.generated-books-preview-link--black-hebrew {
  left: 27.8%;
  top: 3.2%;
  width: 19.4%;
  height: 92.4%;
}

.generated-books-preview-link--about-time {
  left: 53.4%;
  top: 3.2%;
  width: 19.8%;
  height: 92.4%;
}

.generated-elena-games {
  margin-top: -22px;
}

.generated-elena-games .generated-video-games-panel {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.generated-elena-games-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.generated-elena-games-copy h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.generated-elena-games-copy p {
  margin: 0;
  color: #9db1d4;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.generated-elena-games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}

.generated-elena-games-grid img {
  width: 100%;
  height: clamp(210px, 22vw, 340px);
  object-fit: contain;
  object-position: center;
  background: rgba(2, 6, 18, 0.68);
}

.generated-elena-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.generated-elena-extra-grid img {
  width: 100%;
  height: clamp(210px, 22vw, 340px);
  object-fit: cover;
  object-position: center;
  background: rgba(2, 6, 18, 0.68);
}

.generated-books-gallery {
  margin-top: -22px;
}

.generated-books-gallery .generated-video-games-panel {
  aspect-ratio: 1669 / 469;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.8vw, 24px);
}

.generated-book-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 78px);
  align-items: center;
  width: min(100%, 1120px);
  height: 100%;
  padding: clamp(10px, 1.3vw, 18px) clamp(18px, 2.5vw, 32px);
  box-sizing: border-box;
  border: 1px solid rgba(83, 114, 255, 0.42);
  border-radius: 14px;
  background: #05033f;
}

.generated-book-cover-grid a {
  display: block;
  width: 100%;
  height: 100%;
}

.generated-book-cover-grid img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: clamp(190px, 21vw, 300px);
  aspect-ratio: 0.72;
  object-fit: contain;
  object-position: center;
  margin: 0;
  border-radius: 14px;
  background: transparent;
}

.generated-youtube-grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.generated-youtube-grid a {
  display: block;
  width: 100%;
}

.generated-youtube-grid img,
.generated-youtube-grid .generated-youtube-banner {
  width: 100%;
  max-width: 100%;
  height: clamp(190px, 21vw, 320px);
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 12px;
  background: rgba(2, 6, 18, 0.72);
  display: block;
}

.generated-youtube-grid .generated-youtube-banner--fit {
  object-fit: contain;
  padding: clamp(8px, 1.1vw, 16px);
  box-sizing: border-box;
}

.generated-youtube-grid .generated-youtube-banner--same-size {
  height: clamp(190px, 21vw, 320px);
  aspect-ratio: 16 / 5;
  object-fit: fill;
  padding: 0;
  box-sizing: border-box;
}

.generated-youtube-grid .generated-youtube-banner--zoom-out-5 {
  object-fit: fill;
  padding: 0 2.5%;
  background: #020617;
}

.generated-education-grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

.generated-education-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  object-position: center;
  margin: 0;
  border-radius: 12px;
  background: rgba(2, 6, 18, 0.72);
}

.generated-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.generated-feature-grid article {
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: rgba(20, 23, 32, 0.76);
}

.generated-feature-grid h3 {
  margin: 0 0 18px;
  color: #f7f8ff;
  font-size: 1.28rem;
}

.generated-feature-grid ul,
.generated-blueprint ol {
  margin: 0;
  padding-left: 20px;
  color: #8fa6cc;
  font-weight: 700;
  line-height: 1.8;
}

.generated-blueprint ol {
  max-width: 900px;
  margin-top: 34px;
  font-size: 1.2rem;
}

.generated-game-pricing-heading {
  text-align: center;
}

.generated-game-pricing-heading h2 span {
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.generated-game-pricing-heading > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #88a4d2;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.generated-game-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(34px, 4vw, 56px);
}

.generated-game-price-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 16px;
  padding: clamp(24px, 2.4vw, 34px);
  background: linear-gradient(145deg, rgba(18, 22, 34, 0.96), rgba(9, 12, 22, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.generated-game-price-card--featured {
  border-color: rgba(62, 134, 255, 0.44);
  box-shadow: 0 24px 70px rgba(62, 134, 255, 0.18);
}

.generated-game-price-card--featured > span {
  position: absolute;
  top: -17px;
  left: 50%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #3e86ff, #8c5cff);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.generated-game-price-card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}

.generated-game-price {
  margin: 26px 0 10px;
  color: #f8fafc;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.generated-game-price-card > p:not(.generated-game-price) {
  margin: 0;
  color: #8ba4ca;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.generated-game-price-card ul {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 28px 0 0;
  color: #91a8cc;
  list-style: none;
}

.generated-game-price-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  line-height: 1.4;
}

.generated-game-price-card li::before {
  content: "✓";
  color: #60a5fa;
  font-weight: 900;
}

.generated-la-sites-showcase {
  display: grid;
  gap: 28px;
}

.generated-business-development-stack {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.generated-business-development-stack .generated-builder-proposal,
.generated-business-development-stack .generated-la-sites-showcase {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(7, 11, 22, 0.42);
}

.generated-la-sites-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 78% 8%, rgba(62, 134, 255, 0.18), transparent 34rem),
    rgba(10, 15, 28, 0.74);
}

.generated-la-sites-panel p {
  margin: 0;
  color: #9db1d4;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
}

.generated-la-sites-panel a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  padding: 0 24px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-la-sites-panel a:hover,
.generated-la-sites-panel a:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.95), rgba(140, 92, 255, 0.95));
  box-shadow: 0 14px 34px rgba(62, 134, 255, 0.24);
  transform: translateY(-1px);
}

.generated-la-sites-panel iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  background: #050914;
}

.generated-builder-proposal {
  display: grid;
  gap: 28px;
}

.generated-builder-proposal > div:first-child > p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: #9db1d4;
  font-size: clamp(1rem, 1.45vw, 1.26rem);
  font-weight: 800;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.generated-builder-proposal-panel {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 20% 0%, rgba(62, 134, 255, 0.18), transparent 34rem),
    rgba(10, 15, 28, 0.74);
}

.generated-builder-proposal-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  object-fit: cover;
  background: #050914;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.generated-builder-proposal-panel p {
  margin: 0;
  color: #9db1d4;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
}

.generated-builder-proposal-panel a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  padding: 0 24px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-builder-proposal-panel a:hover,
.generated-builder-proposal-panel a:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.95), rgba(140, 92, 255, 0.95));
  box-shadow: 0 14px 34px rgba(62, 134, 255, 0.24);
  transform: translateY(-1px);
}

.generated-proposal-page {
  padding-bottom: 18px;
}

.generated-proposal-hero {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.generated-proposal-hero h1 {
  max-width: 1120px;
}

.generated-proposal-content {
  display: grid;
  gap: 20px;
}

.generated-proposal-content > p,
.generated-proposal-content li {
  max-width: 1120px;
  margin: 0;
  color: #9db1d4;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.65;
}

.generated-proposal-content ul {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 0;
  padding-left: 24px;
}

.generated-proposal-grid,
.generated-proposal-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.generated-proposal-grid article,
.generated-proposal-table div {
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 16px;
  padding: 24px;
  background: rgba(20, 23, 32, 0.82);
}

.generated-proposal-grid h3,
.generated-proposal-table strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
}

.generated-proposal-grid p,
.generated-proposal-table span {
  display: block;
  margin: 12px 0 0;
  color: #8ba4ca;
  font-weight: 800;
  line-height: 1.5;
}

.generated-proposal-pricing article p {
  color: #f8fafc;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

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

.generated-contact {
  margin-top: 18px;
  padding: clamp(44px, 6vw, 76px) clamp(24px, 6vw, 80px);
}

.generated-customer-contact {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.24), transparent 38rem),
    linear-gradient(145deg, rgba(18, 23, 38, 0.98), rgba(8, 11, 20, 0.94));
}

.generated-customer-contact-panel {
  display: grid;
  gap: clamp(36px, 4.75vw, 68px);
  width: min(100%, 1420px);
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.16), transparent 32rem),
    rgba(11, 15, 27, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.generated-customer-contact-heading {
  display: grid;
  justify-items: center;
}

.generated-customer-contact-heading > p:first-child {
  margin: 0;
  color: #3e86ff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.generated-customer-contact-heading > p:last-child {
  max-width: 780px;
  margin: 20px auto 0;
  color: #9db1d4;
  font-size: clamp(0.95rem, 1.33vw, 1.16rem);
  font-weight: 700;
  line-height: 1.6;
}

.generated-customer-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.25fr);
  gap: clamp(34px, 5vw, 80px);
  width: min(100%, 1320px);
  align-items: stretch;
  text-align: left;
}

.generated-company-info {
  display: grid;
  gap: 28px;
  align-content: center;
}

.generated-company-info article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
}

.generated-company-info article > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(21, 58, 101, 0.72);
  color: #60a5fa;
  font-weight: 900;
}

.generated-company-info p,
.generated-contact-form span {
  margin: 0 0 10px;
  color: #9db8e9;
  font-size: 0.95rem;
  font-weight: 900;
}

.generated-company-info a,
.generated-company-info strong {
  color: #fff;
  font-size: clamp(1.14rem, 1.71vw, 1.57rem);
  font-weight: 900;
  line-height: 1.25;
}

.generated-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(20, 27, 43, 0.78);
}

.generated-contact-form label {
  display: grid;
}

.generated-contact-form-wide,
.generated-contact-form button {
  grid-column: 1 / -1;
}

.generated-contact-form input,
.generated-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(123, 133, 166, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  background: rgba(20, 28, 46, 0.92);
  color: #f8fafc;
  font: inherit;
  font-weight: 800;
}

.generated-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.generated-contact-form input::placeholder,
.generated-contact-form textarea::placeholder {
  color: #7392c8;
}

.generated-contact-form button {
  min-height: 58px;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-contact-form button:hover,
.generated-contact-form button:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.95), rgba(140, 92, 255, 0.95));
  box-shadow: 0 14px 34px rgba(62, 134, 255, 0.24);
  transform: translateY(-1px);
}

.generated-resources-panel {
  display: grid;
  gap: clamp(48px, 5vw, 74px);
  margin-bottom: 18px;
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(42px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(8, 12, 24, 0.98), rgba(5, 8, 17, 0.96)),
    rgba(11, 14, 24, 0.92);
}

.generated-resources-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(130px, 1fr));
  gap: clamp(26px, 4vw, 70px);
  width: 100%;
}

.generated-resources-logo-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.generated-resources-logo-row h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2.05rem);
  line-height: 1;
}

.generated-resources-brand > p {
  max-width: 270px;
  margin: 34px 0 0;
  color: #7ba7ed;
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  font-weight: 800;
  line-height: 1.48;
}

.generated-resources-panel nav {
  display: grid;
  align-content: start;
  gap: 22px;
}

.generated-resources-panel h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(0.62rem, 0.82vw, 0.78rem);
  line-height: 1.1;
}

.generated-resources-panel a {
  color: #7ba7ed;
  font-size: clamp(0.52rem, 0.7vw, 0.66rem);
  font-weight: 850;
  line-height: 1.1;
}

.generated-founder-link {
  width: fit-content;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 0.5rem !important;
}

.generated-resources-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(123, 133, 166, 0.16);
  padding-top: clamp(28px, 3vw, 44px);
  color: #7ba7ed;
}

.generated-resources-bottom p {
  margin: 0;
  font-size: clamp(0.52rem, 0.62vw, 0.62rem);
  font-weight: 800;
}

.generated-resources-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.5vw, 38px);
  justify-content: flex-end;
}

.generated-empty-state {
  min-height: calc(100vh - 32px);
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid rgba(123, 133, 166, 0.16);
  border-radius: 8px;
  padding: clamp(44px, 8vw, 110px);
  background:
    radial-gradient(circle at 40% 20%, rgba(62, 134, 255, 0.16), transparent 28rem),
    rgba(11, 14, 24, 0.88);
}

.generated-empty-state p {
  margin: 0;
  color: #3e86ff;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generated-empty-state h1 {
  max-width: 900px;
  margin: 18px 0 28px;
  color: #f7f8ff;
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.generated-empty-state a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(123, 133, 166, 0.2);
  border-radius: 14px;
  padding: 0 26px;
  background: rgba(20, 23, 32, 0.82);
  color: #fff;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-empty-state a:hover,
.generated-empty-state a:focus-visible {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.95), rgba(140, 92, 255, 0.95));
  box-shadow: 0 14px 34px rgba(62, 134, 255, 0.24);
  transform: translateY(-1px);
}

.generated-page-shell--light {
  background:
    radial-gradient(circle at 82% 15%, rgba(218, 230, 255, 0.86), transparent 28rem),
    radial-gradient(circle at 16% 92%, rgba(247, 229, 255, 0.76), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 50%, #fbf8ff 100%);
  color: #111827;
}

.generated-page-shell--light .generated-header {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.generated-page-shell--light .brand,
.generated-page-shell--light .generated-hero h1,
.generated-page-shell--light .generated-section h2,
.generated-page-shell--light .generated-contact h2,
.generated-page-shell--light .generated-feature-grid h3,
.generated-page-shell--light .generated-blueprint li {
  color: #111827;
}

.generated-page-shell--light .generated-nav {
  color: #4b5563;
}

.generated-page-shell--light .generated-back-link {
  color: #fff;
}

.generated-page-shell--light .generated-hero,
.generated-page-shell--light .generated-section,
.generated-page-shell--light .generated-contact {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.generated-page-shell--light .generated-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 234, 254, 0.9), transparent 22rem),
    rgba(255, 255, 255, 0.76);
}

.generated-page-shell--light .generated-hero > p:first-child,
.generated-page-shell--light .generated-section > div > p,
.generated-page-shell--light .generated-contact > p {
  color: #2563eb;
}

.generated-page-shell--light .generated-hero > p:last-of-type,
.generated-page-shell--light .generated-feature-grid ul,
.generated-page-shell--light .generated-blueprint ol {
  color: #4b5563;
}

.generated-page-shell--light .generated-feature-grid article {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.generated-page-shell--light .generated-actions a + a {
  border-color: #d7dce5;
  background: rgba(255, 255, 255, 0.72);
  color: #111827;
}

.pricing-hero-block {
  min-height: clamp(300px, 34vw, 430px);
  display: grid;
  place-content: center;
  gap: 28px;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(56px, 7vw, 96px) 24px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.pricing-hero-block p {
  margin: 0;
}

.pricing-hero-block > p:first-child {
  color: #4388f4;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-hero-block h2 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(4rem, 8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.pricing-hero-block h2 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-hero-block > p:last-child {
  color: #87a0cc;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 700;
}

.future-ai-block {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 50vw, 640px);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 28px;
  padding: clamp(72px, 8vw, 110px) 24px;
  background:
    radial-gradient(circle at 20% 40%, rgba(62, 134, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(140, 92, 255, 0.2), transparent 28rem),
    linear-gradient(125deg, rgba(18, 32, 58, 0.9), rgba(34, 24, 54, 0.88) 45%, rgba(10, 15, 27, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.future-ai-block::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgba(116, 135, 185, 0.22) 1px, transparent 1px);
  background-size: 31px 31px;
  opacity: 0.25;
  pointer-events: none;
}

.future-ai-block > * {
  position: relative;
  z-index: 1;
}

.future-ai-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(123, 133, 166, 0.26);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(22, 25, 39, 0.72);
  color: #8ea0bf;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 900;
}

.future-ai-badge span {
  color: #4388f4;
}

.future-ai-block h2 {
  max-width: 900px;
  margin: 0;
  color: #fbfcff;
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.future-ai-block h2 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.future-ai-block > p:not(.future-ai-badge) {
  max-width: 760px;
  margin: 0;
  color: #87a0cc;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.42;
}

.future-ai-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
}

.future-ai-button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(123, 133, 166, 0.22);
  border-radius: 14px;
  padding: 0 38px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 900;
  cursor: pointer;
}

.future-ai-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #4388f4, #8957ef);
  box-shadow: 0 18px 34px rgba(82, 107, 255, 0.28);
}

.future-ai-button--ghost {
  background: rgba(24, 27, 39, 0.7);
}

.social-proof-block {
  min-height: clamp(380px, 42vw, 560px);
  display: grid;
  place-content: center;
  gap: clamp(44px, 7vw, 84px);
  margin-top: 18px;
  border: 1px solid #22283a;
  border-radius: 8px;
  padding: clamp(68px, 9vw, 122px) 24px;
  background: #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.social-proof-block p {
  margin: 0;
  color: #4388f4;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-proof-block h2 {
  margin: 0;
  color: #fbfcff;
  font-size: clamp(4.4rem, 8.8vw, 8.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.social-proof-block h2 span {
  background: linear-gradient(100deg, #3789ff 0%, #7569ff 52%, #985cff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 4.6vw, 70px);
  color: #30405c;
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schema-page {
  overflow: hidden;
  min-height: calc(100vh - 32px);
  border: 1px solid #22283a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 10%, rgba(62, 134, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 82% 6%, rgba(140, 92, 255, 0.16), transparent 28rem),
    #07090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.schema-header {
  display: flex;
  width: min(1280px, calc(100% - 64px));
  height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.schema-hero {
  width: min(1120px, calc(100% - 48px));
  margin: 72px auto 0;
  text-align: center;
}

.schema-kicker,
.schema-section__heading p {
  margin: 0;
  color: #3d8bff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schema-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.94;
}

.schema-hero > p {
  max-width: 820px;
  margin: 28px auto 0;
  color: #7890ba;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
}

.schema-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.schema-hero__stats span,
.schema-chip-grid span,
.schema-list-card span {
  border: 1px solid rgba(96, 125, 190, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(21, 28, 47, 0.78);
  color: #8fa2c7;
  font-size: 0.92rem;
  font-weight: 800;
}

.schema-download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 42px auto 0;
  border: 1px solid rgba(62, 134, 255, 0.24);
  border-radius: 14px;
  padding: 24px;
  background: rgba(18, 31, 58, 0.74);
  text-align: left;
}

.schema-download-card h2 {
  margin: 0;
  color: #f8f9ff;
  font-size: 1.4rem;
}

.schema-download-card p {
  margin: 8px 0 0;
  color: #8fa2c7;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.sample-db-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sample-db-page .schema-table-card table {
  min-width: 760px;
}

.migration-intro > p,
.migration-closing {
  max-width: 940px;
  color: #8fa2c7;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

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

.platform-card {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  padding: 26px;
  background: rgba(20, 23, 32, 0.78);
}

.platform-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(62, 134, 255, 0.16);
  color: #78a7ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.platform-card h3 {
  margin: 22px 0 0;
  color: #f8f9ff;
  font-size: 1.32rem;
  line-height: 1.2;
}

.platform-company {
  margin: 8px 0 0;
  color: #4b93ff;
  font-size: 0.92rem;
  font-weight: 900;
}

.platform-card p:not(.platform-company) {
  margin: 16px 0 0;
  color: #8fa2c7;
  font-weight: 700;
  line-height: 1.55;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.platform-tags span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(39, 51, 84, 0.68);
  color: #8fa2c7;
  font-size: 0.78rem;
  font-weight: 800;
}

.migration-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.migration-stack div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(20, 23, 32, 0.74);
}

.migration-stack span {
  color: #78a7ff;
  font-weight: 900;
}

.migration-stack strong {
  color: #dbe5ff;
}

.schema-section {
  width: min(1280px, calc(100% - 48px));
  margin: 84px auto 0;
}

.schema-section:last-child {
  margin-bottom: 96px;
}

.schema-section__heading {
  max-width: 820px;
}

.schema-section__heading h2 {
  margin: 14px 0 0;
  color: #f8f9ff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.schema-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.schema-chip-grid--compact span {
  border-radius: 8px;
}

.relationship-map {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  margin-top: 30px;
}

.relationship-node,
.relationship-lines span,
.schema-list-card,
.schema-feature-list {
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.74);
}

.relationship-node {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: #f8f9ff;
  font-size: 1.5rem;
  font-weight: 900;
}

.relationship-node--primary {
  background: linear-gradient(135deg, rgba(62, 134, 255, 0.26), rgba(140, 92, 255, 0.22));
}

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

.relationship-lines span {
  padding: 16px;
  color: #8fa2c7;
  font-size: 0.95rem;
  font-weight: 800;
}

.schema-table-grid {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.schema-table-card {
  overflow: hidden;
  border: 1px solid rgba(123, 133, 166, 0.14);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.82);
}

.schema-table-card h3 {
  margin: 0;
  padding: 26px 28px 0;
  color: #f8f9ff;
  font-size: 1.5rem;
}

.schema-table-card > p {
  margin: 10px 0 0;
  padding: 0 28px 22px;
  color: #7d8fb0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.schema-table-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schema-table-card th,
.schema-table-card td {
  border-top: 1px solid rgba(123, 133, 166, 0.12);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.schema-table-card th {
  color: #dbe5ff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schema-table-card td {
  color: #8fa2c7;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.schema-table-card td:first-child {
  color: #78a7ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.schema-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 34px;
}

.schema-list-card {
  margin-top: 20px;
  padding: 24px;
}

.schema-list-card h3 {
  margin: 0;
  color: #f8f9ff;
}

.schema-list-card p {
  margin: 12px 0 18px;
  color: #7d8fb0;
  font-weight: 700;
  line-height: 1.5;
}

.schema-list-card span {
  display: inline-flex;
  margin: 6px 6px 0 0;
}

.schema-feature-list {
  margin: 28px 0 0;
  padding: 26px 28px;
  list-style: none;
}

.schema-feature-list li {
  position: relative;
  padding-left: 26px;
  color: #8fa2c7;
  font-weight: 800;
  line-height: 1.8;
}

.schema-feature-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #4b93ff;
}

.build-heading h2,
.toolkit-heading h2,
.use-cases-copy h2,
.builder-launch-copy h2,
.marketing-funnel-block h2,
.social-proof-block h2,
.pricing-hero-block h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

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

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

  .nav-links {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 7vw, 4.6rem);
  }

  .build-heading h2,
  .toolkit-heading h2,
  .use-cases-copy h2,
  .builder-launch-copy h2,
  .marketing-funnel-block h2,
  .social-proof-block h2,
  .pricing-hero-block h2 {
    font-size: clamp(2.65rem, 7vw, 4.6rem);
    line-height: 0.98;
  }

  .relationship-map,
  .schema-section--split,
  .faq-takeaway,
  .email-info-panel__body {
    grid-template-columns: 1fr;
  }

  .business-chooser-options,
  .business-chooser-options--budget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .business-report-grid,
  .business-report-top-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .use-case-display {
    grid-template-columns: 1fr;
  }

  .use-case-display__metrics {
    max-width: 640px;
  }

  .use-case-preview__header {
    grid-template-columns: 1fr auto;
  }

  .use-case-preview__nav {
    display: none;
  }

  .use-case-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, calc(100% - 44px));
  }

  .use-case-story {
    grid-template-columns: 1fr;
  }

  .use-case-metrics {
    align-self: stretch;
  }

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

@media (max-width: 680px) {
  .page-shell {
    padding: 0;
  }

  .hero {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .site-header {
    width: 100%;
    min-height: 76px;
    padding: 0 18px;
  }

  .brand {
    font-size: 1rem;
  }

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

  .login {
    display: none;
  }

  .button--small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-top: 22px;
  }

  .status-pill {
    max-width: 100%;
    font-size: 0.78rem;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero-preview {
    max-height: 220px;
    margin-top: 22px;
    border-radius: 14px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    min-width: 0;
  }

  .hero .button--schema {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .build-section {
    padding: 64px 18px;
  }

  .build-heading h2 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .build-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .build-card {
    grid-template-columns: 42px 1fr;
    padding: 24px;
  }

  .future-ai-block {
    min-height: 520px;
    border-radius: 0;
    padding: 68px 18px;
  }

  .future-ai-block h2 {
    font-size: clamp(3.25rem, 15vw, 5.8rem);
  }

  .future-ai-actions {
    width: 100%;
  }

  .future-ai-button {
    width: min(360px, 100%);
  }

  .toolkit-section {
    border-radius: 0;
    padding: 72px 18px;
  }

  .toolkit-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4.6rem);
  }

  .toolkit-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .toolkit-cta {
    margin-top: 48px;
    padding: 40px 18px;
  }

  .toolkit-cta h3 {
    font-size: clamp(2.9rem, 14vw, 5.2rem);
  }

  .automation-prompt-section {
    padding: 72px 18px;
  }

  .automation-prompt-input-row {
    grid-template-columns: 1fr;
  }

  .automation-send-button {
    width: 100%;
  }

  .use-cases-section {
    padding: 64px 18px;
  }

  .use-cases-nav {
    justify-content: flex-start;
    gap: 12px 18px;
    margin-bottom: 48px;
  }

  .use-cases-copy {
    text-align: left;
  }

  .use-cases-copy h2 {
    font-size: clamp(3.2rem, 16vw, 5.8rem);
  }

  .use-cases-copy h1 {
    font-size: clamp(3.35rem, 16vw, 6rem);
  }

  .use-cases-copy > p:last-child {
    margin-top: 24px;
  }

  .use-cases-audiences {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .use-cases-audiences--page {
    grid-template-columns: 1fr;
  }

  .use-case-pill {
    justify-content: flex-start;
    min-height: 72px;
    padding: 0 22px;
  }

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

  .use-case-showcase {
    gap: 18px;
  }

  .use-case-display {
    min-height: 0;
    padding: 28px 22px;
  }

  .use-case-display__label--solution,
  .use-case-display__label--outcome {
    margin-top: 30px;
  }

  .use-case-display__metrics {
    grid-template-columns: 1fr;
  }

  .use-case-display__metrics div {
    min-height: 96px;
  }

  .use-case-page-shell {
    padding: 0;
  }

  .use-case-preview {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .use-case-preview::before {
    inset: 76px 0 auto;
  }

  .use-case-preview__header {
    min-height: 76px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 18px;
  }

  .use-case-brand {
    font-size: 1.05rem;
  }

  .use-case-brand span {
    width: 36px;
    height: 36px;
  }

  .use-case-preview__actions {
    display: none;
  }

  .use-case-page-hero {
    width: calc(100% - 36px);
    padding-top: 46px;
    text-align: left;
  }

  .use-case-page-hero h1 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .use-case-tabs {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
  }

  .use-case-tab {
    justify-content: flex-start;
    padding: 0 20px;
  }

  .use-case-story {
    width: calc(100% - 36px);
    min-height: 0;
    margin-top: 42px;
    padding: 34px 24px 24px;
  }

  .use-case-story__label--solution {
    margin-top: 34px;
  }

  .use-case-metrics {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .use-case-metrics div {
    min-height: 96px;
  }

  .use-case-chat {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .pricing-cards-section {
    grid-template-columns: 1fr;
    padding: 48px 18px;
  }

  .pricing-hero-block {
    min-height: 300px;
    gap: 22px;
    padding: 56px 18px;
  }

  .pricing-hero-block h2 {
    font-size: clamp(3.1rem, 15vw, 5.6rem);
  }

  .social-proof-block {
    min-height: 360px;
    gap: 36px;
    padding: 62px 18px;
  }

  .social-proof-block h2 {
    font-size: clamp(3.2rem, 15vw, 5.8rem);
  }

  .social-proof-logos {
    gap: 18px 28px;
    justify-content: flex-start;
    text-align: left;
  }

  .marketing-funnel-block {
    min-height: 390px;
    gap: 18px;
    padding: 46px 18px;
  }

  .marketing-funnel-block h2 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .marketing-funnel-console {
    width: 100%;
  }

  .marketing-funnel-console__bar {
    grid-template-columns: repeat(3, 14px);
    padding: 0 18px;
  }

  .marketing-funnel-console__bar p {
    display: none;
  }

  .marketing-funnel-console__body {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .marketing-funnel-console__body a {
    width: 100%;
  }

  .builder-launch-section {
    padding: 62px 18px 68px;
  }

  .builder-launch-copy {
    margin-bottom: 28px;
  }

  .builder-launch-copy > p:first-child {
    font-size: 1rem;
  }

  .builder-launch-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.35rem);
    line-height: 1;
  }

  .builder-launch-copy__subtext {
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .builder-launch-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .builder-style-options {
    grid-template-columns: 1fr;
  }

  .builder-launch-form input {
    min-height: 62px;
    font-size: 1.04rem;
  }

  .builder-launch-button {
    width: min(520px, 100%);
    font-size: 1.06rem;
  }

  .features-page-builder-intro {
    width: calc(100% - 36px);
    padding: 58px 0 44px;
  }

  .features-page-builder-copy h1 {
    font-size: clamp(2.51rem, 9.3vw, 4.13rem);
    line-height: 0.94;
  }

  .features-page-builder-copy p {
    font-size: clamp(1.09rem, 3.68vw, 1.58rem);
    line-height: 1.32;
  }

  .features-page-business-panel {
    gap: 28px;
    margin-top: 44px;
    padding: 34px 24px;
  }

  .features-page-business-panel > p {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .features-page-business-fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-page-business-fields input {
    min-height: 78px;
    font-size: clamp(1.25rem, 4.8vw, 1.7rem);
  }

  .pricing-card {
    min-height: 0;
    padding: 34px 28px;
  }

  .email-info-panel {
    padding: 54px 18px;
  }

  .email-info-panel__body {
    margin-top: 42px;
  }

  .email-info-form__row {
    grid-template-columns: 1fr;
  }

  .custom-builder-panel {
    padding: 0 0 18px;
  }

  .custom-builder-panel h3,
  .requirements-card,
  .requirements-list,
  .builder-action-row {
    width: calc(100% - 36px);
  }

  .builder-page-shell img {
    width: calc(100% - 36px);
  }

  .builder-submit-button {
    min-width: 0;
    width: min(378px, 100%);
  }

  .generated-page-shell {
    padding: 0;
  }

  .generated-header {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 0;
    padding: 18px;
  }

  .generated-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .generated-hero,
  .generated-section,
  .generated-contact {
    border-radius: 0;
    padding: 56px 18px;
  }

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

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

  .generated-la-sites-panel {
    grid-template-columns: 1fr;
  }

  .generated-builder-proposal-panel,
  .generated-proposal-grid,
  .generated-proposal-table {
    grid-template-columns: 1fr;
  }

  .generated-resources-grid {
    grid-template-columns: 1fr;
  }

  .generated-game-price-card {
    min-height: 0;
  }

  .generated-customer-contact-layout,
  .generated-contact-form {
    grid-template-columns: 1fr;
  }

  .generated-resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  .generated-resources-bottom {
    flex-direction: column;
  }

  .generated-resources-bottom div {
    justify-content: flex-start;
  }

  .generated-company-info article {
    grid-template-columns: 64px 1fr;
  }

  .generated-company-info article > span {
    width: 64px;
    height: 64px;
  }

  .requirements-options {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    row-gap: 16px;
    padding: 18px;
  }

  .chat-button {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .schema-header {
    width: calc(100% - 32px);
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .schema-hero,
  .schema-section,
  .faq-hero,
  .faq-grid,
  .faq-takeaway {
    width: calc(100% - 28px);
  }

  .faq-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .faq-back-link {
    margin-left: 18px;
  }

  .faq-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .faq-card,
  .faq-takeaway {
    padding: 22px;
  }

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

  .business-chooser-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .business-chooser-back-link {
    margin-left: 18px;
  }

  .business-chooser-hero,
  .business-chooser-form {
    width: calc(100% - 28px);
  }

  .business-chooser-options,
  .business-chooser-options--two,
  .business-chooser-options--budget {
    grid-template-columns: 1fr;
  }

  .business-functions-grid {
    grid-template-columns: 1fr;
  }

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

  .business-results__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-results__grid {
    grid-template-columns: 1fr;
  }

  .business-analysis-report__grid,
  .business-source-summary__grid {
    grid-template-columns: 1fr;
  }

  .business-resource-links {
    width: calc(100% - 28px);
  }

  .business-resource-links__grid {
    grid-template-columns: 1fr;
  }

  .business-report-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .business-report-back-link {
    margin-left: 18px;
  }

  .business-report-hero,
  .business-report-grid,
  .business-report-top-list {
    width: calc(100% - 28px);
  }

  .business-report-card {
    overflow-x: auto;
  }

  .business-report-card table {
    min-width: 620px;
  }

  .generated-report-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .generated-report-back-link {
    margin-left: 18px;
  }

  .generated-report-card {
    width: calc(100% - 28px);
  }

  .generated-report-meta,
  .generated-report-metrics {
    grid-template-columns: 1fr;
  }

  .sales-report-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .sales-report-back-link {
    margin-left: 18px;
  }

  .sales-report-sheet {
    width: calc(100% - 28px);
  }

  .sales-kpi-grid,
  .sales-report-grid {
    grid-template-columns: 1fr;
  }

  .sandbox-report-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .sandbox-report-back-link {
    margin-left: 18px;
  }

  .sandbox-report-card {
    width: calc(100% - 28px);
  }

  .sandbox-report-grid,
  .sandbox-stack div {
    grid-template-columns: 1fr;
  }

  .sandbox-report-grid article,
  .sandbox-report-summary,
  .sandbox-stack {
    padding: 20px;
  }

  .sales-report-panel {
    padding: 20px;
  }

  .sales-bar-chart {
    height: 220px;
    gap: 8px;
  }

  .generated-report-table-wrap {
    overflow-x: auto;
  }

  .generated-report-table-wrap table {
    min-width: 620px;
  }

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

  .site-footer-panel__brand {
    grid-column: 1 / -1;
  }

  .site-footer-panel__bottom {
    flex-direction: column;
  }

  .founder-page {
    border: 0;
    border-radius: 0;
    padding-bottom: 64px;
  }

  .founder-back-link {
    margin-left: 18px;
  }

  .founder-hero,
  .founder-answer-box,
  .founder-grid,
  .founder-faq {
    width: calc(100% - 28px);
  }

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

  .business-report-top-list {
    padding: 24px;
  }

  .business-report-top-list ol {
    columns: 1;
  }

  .site-footer-panel {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .schema-hero {
    margin-top: 44px;
  }

  .schema-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .schema-download-card {
    grid-template-columns: 1fr;
  }

  .sample-db-actions {
    justify-content: stretch;
  }

  .relationship-lines {
    grid-template-columns: 1fr;
  }

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

  .schema-table-card table {
    min-width: 720px;
  }

  .migration-stack div {
    grid-template-columns: 1fr;
  }

  .build-heading h2,
  .toolkit-heading h2,
  .use-cases-copy h2,
  .builder-launch-copy h2,
  .marketing-funnel-block h2,
  .social-proof-block h2,
  .pricing-hero-block h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
    line-height: 0.98;
  }
}

.requirements-options.requirements-options--section-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(10, auto);
  grid-auto-flow: column;
}

.generated-youtube-grid img.generated-zoom-out-10 {
  width: 100%;
  max-width: 100%;
  height: clamp(190px, 21vw, 320px);
  aspect-ratio: 16 / 5;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
  background: #020617;
}
.live-builder-form {
  width: min(1120px, calc(100% - 32px));
  margin: 30px auto 36px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(130, 170, 255, 0.24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(12, 22, 48, 0.94), rgba(18, 12, 42, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.live-builder-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.live-builder-kicker {
  margin: 0 0 8px;
  color: #7fe8ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.live-builder-heading h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.live-builder-heading p {
  color: rgba(230, 238, 255, 0.78);
  line-height: 1.65;
}

.webpage-builder-form {
  margin-top: 20px;
}

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

.live-builder-form .form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(240, 246, 255, 0.9);
  font-weight: 750;
  font-size: 0.94rem;
}

.live-builder-form .form-grid__wide {
  grid-column: 1 / -1;
}

.live-builder-form .form-grid input,
.live-builder-form .form-grid select,
.live-builder-form .form-grid textarea {
  width: 100%;
  border: 1px solid rgba(160, 190, 255, 0.28);
  border-radius: 16px;
  background: rgba(5, 10, 26, 0.76);
  color: #ffffff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.live-builder-form .form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.live-builder-form .form-grid input:focus,
.live-builder-form .form-grid select:focus,
.live-builder-form .form-grid textarea:focus {
  border-color: rgba(91, 222, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(91, 222, 255, 0.14);
}

.background-color-options {
  border: 1px solid rgba(160, 190, 255, 0.22);
  border-radius: 18px;
  padding: 16px;
  background: rgba(5, 10, 26, 0.5);
}

.background-color-options legend {
  padding: 0 8px;
  color: rgba(240, 246, 255, 0.94);
  font-weight: 800;
}

.background-color-options__bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.background-color-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.background-color-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #31d8ff;
}

.background-color-option:has(input:checked) {
  border-color: rgba(127, 232, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(49, 216, 255, 0.16);
  transform: translateY(-1px);
}

.background-color-option--dark-blue {
  background: linear-gradient(135deg, #071a44, #020814);
}

.background-color-option--beige-yellowish {
  background: linear-gradient(135deg, #fff2c4, #d9b96f);
  color: #2d2411;
}

.background-color-option--white {
  background: linear-gradient(135deg, #ffffff, #edf2f8);
  color: #111827;
}

.background-color-option--light-lavender {
  background: linear-gradient(135deg, #f1e7ff, #d7c4ff);
  color: #271a47;
}

.background-color-option--dark-lavender {
  background: linear-gradient(135deg, #3b155f, #140720);
}

.background-color-option--light-metallic-green {
  background: linear-gradient(135deg, #dff4df, #91bfa2 50%, #effaf0);
  color: #12301d;
}

.live-builder-form .builder-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.live-builder-form .builder-action {
  border: 1px solid rgba(160, 190, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

.live-builder-form .builder-action--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #31d8ff, #8f5cff);
  box-shadow: 0 18px 40px rgba(49, 216, 255, 0.18);
}

.live-builder-form .builder-output {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(83, 238, 255, 0.26);
  border-radius: 22px;
  background: rgba(4, 12, 28, 0.78);
  color: rgba(240, 248, 255, 0.9);
  line-height: 1.65;
}

.live-builder-form .builder-output h3,
.live-builder-form .builder-output h4 {
  color: #ffffff;
  margin-top: 0;
}

.live-builder-form .builder-output ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

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

  .background-color-options__bar {
    grid-template-columns: 1fr;
  }

  .live-builder-form {
    width: min(100% - 24px, 1120px);
    border-radius: 22px;
  }
}

.generated-page-shell--bg-dark-blue {
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #061a42 0%, #061225 48%, #020814 100%);
}

.generated-page-shell--bg-beige-yellowish {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 245, 189, 0.95), transparent 28rem),
    linear-gradient(180deg, #fff4ca 0%, #f7e1a4 50%, #dcc171 100%);
  color: #1f2937;
}

.generated-page-shell--bg-white {
  background:
    radial-gradient(circle at 82% 15%, rgba(218, 230, 255, 0.72), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #ffffff 100%);
  color: #111827;
}

.generated-page-shell--bg-light-lavender {
  background:
    radial-gradient(circle at 75% 10%, rgba(245, 229, 255, 0.98), transparent 28rem),
    linear-gradient(180deg, #f5ecff 0%, #e5d4ff 52%, #faf7ff 100%);
  color: #20113a;
}

.generated-page-shell--bg-dark-lavender {
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 107, 255, 0.24), transparent 32rem),
    linear-gradient(180deg, #3b155f 0%, #241034 50%, #10061c 100%);
}

.generated-page-shell--bg-light-metallic-green {
  background:
    radial-gradient(circle at 78% 14%, rgba(231, 255, 228, 0.92), transparent 28rem),
    linear-gradient(135deg, #e9f8e8 0%, #b8d1bf 48%, #f6fff4 100%);
  color: #102419;
}

.generated-page-shell--bg-dark-blue .generated-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 134, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #061a42 0%, #061225 48%, #020814 100%);
}

.generated-page-shell--bg-beige-yellowish .generated-hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 245, 189, 0.95), transparent 28rem),
    linear-gradient(180deg, #fff4ca 0%, #f7e1a4 50%, #dcc171 100%);
}

.generated-page-shell--bg-white .generated-hero {
  background:
    radial-gradient(circle at 82% 15%, rgba(218, 230, 255, 0.72), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #ffffff 100%);
}

.generated-page-shell--bg-light-lavender .generated-hero {
  background:
    radial-gradient(circle at 75% 10%, rgba(245, 229, 255, 0.98), transparent 28rem),
    linear-gradient(180deg, #f5ecff 0%, #e5d4ff 52%, #faf7ff 100%);
}

.generated-page-shell--bg-dark-lavender .generated-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 107, 255, 0.24), transparent 32rem),
    linear-gradient(180deg, #3b155f 0%, #241034 50%, #10061c 100%);
}

.generated-page-shell--bg-light-metallic-green .generated-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(231, 255, 228, 0.92), transparent 28rem),
    linear-gradient(135deg, #e9f8e8 0%, #b8d1bf 48%, #f6fff4 100%);
}

.generated-page-shell--bg-beige-yellowish .generated-section,
.generated-page-shell--bg-beige-yellowish .generated-contact,
.generated-page-shell--bg-white .generated-section,
.generated-page-shell--bg-white .generated-contact,
.generated-page-shell--bg-light-lavender .generated-section,
.generated-page-shell--bg-light-lavender .generated-contact,
.generated-page-shell--bg-light-metallic-green .generated-section,
.generated-page-shell--bg-light-metallic-green .generated-contact {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.generated-page-shell--bg-beige-yellowish .generated-hero > p:last-of-type,
.generated-page-shell--bg-white .generated-hero > p:last-of-type,
.generated-page-shell--bg-light-lavender .generated-hero > p:last-of-type,
.generated-page-shell--bg-light-metallic-green .generated-hero > p:last-of-type {
  color: #4b5563;
}
