:root {
  color-scheme: light;
  --bg: #eef5ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(48, 96, 170, 0.12);
  --line-strong: rgba(48, 96, 170, 0.24);
  --text: #122033;
  --muted: #5f7187;
  --accent: #2d6cff;
  --accent-strong: #1f4fcf;
  --accent-soft: #e9f0ff;
  --shadow: 0 24px 70px rgba(34, 77, 148, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at top right, rgba(112, 168, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  color: var(--text);
}

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

.shell {
  width: 100%;
  margin: 0;
  padding: 0 0 0;
}

.topbar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.footer-policy-links a:hover,
.footer-socials a:hover,
.footer-menu-column a:hover,
.footer-support-link:hover {
  color: var(--accent-strong);
}

.site-footer {
  width: 100vw;
  margin: 40px 0 0 calc(50% - 50vw);
  overflow: hidden;
  background: linear-gradient(180deg, #14344b 0%, #102b40 100%);
  border-top: 1px solid rgba(182, 220, 255, 0.12);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  color: #dfeaf7;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.95fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0 34px;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-column,
.footer-brand-block {
  min-height: 100%;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-kicker {
  color: rgba(224, 238, 252, 0.74);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-menu-column a {
  width: fit-content;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 6px;
}

.footer-brand {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand-block p,
.footer-note-column p {
  margin: 0;
  color: rgba(223, 234, 247, 0.82);
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-socials a {
  color: #dfeaf7;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-support-link {
  width: fit-content;
  margin-top: 4px;
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  border-top: 1px solid rgba(182, 220, 255, 0.12);
  background: rgba(7, 22, 35, 0.16);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 22px;
}

.footer-copyright {
  color: rgba(223, 234, 247, 0.74);
  font-size: 13px;
}

.footer-policy-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-policy-links a {
  color: #ffffff;
  font-weight: 600;
}

#app {
  margin-top: 0;
}

.hero,
.section,
.workspace {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero,
.workspace,
.section {
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 48px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 240, 255, 0.92));
}

.hero-bleed {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  display: block;
  min-height: calc(100vh - 73px);
  padding: 0;
}

.hero-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 52px 0 64px;
}

.hero h1,
.section h2,
.panel h2 {
  margin: 0 0 12px;
  line-height: 1.08;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(40px, 6vw, 72px);
}

.hero-bright {
  align-items: stretch;
}

.hero-copy-bright h1 {
  max-width: 8ch;
}

.hero-text,
.section p,
.feature-card p,
.pricing-card p,
.auth-card span,
.status-list,
.product-card p,
.product-story-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.75;
}

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

.hero-slider-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 245, 255, 0.92));
  box-shadow: var(--shadow);
}

.hero-slider-track,
.testimonial-carousel-track {
  position: relative;
}

.hero-slide,
.step-panel,
.testimonial-card[data-testimonial-slide] {
  display: none;
}

.hero-slide.is-active,
.step-panel.is-active,
.testimonial-card[data-testimonial-slide].is-active {
  display: block;
}

.hero-slide-visual {
  min-height: 410px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.room-scene {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 49, 92, 0.08));
}

.room-scene-one {
  background-color: #dbe8ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(20, 63, 122, 0.08)),
    linear-gradient(135deg, #cfe0ff, #f4f8ff 34%, #adc7ff 100%);
}

.room-scene-two {
  background-color: #dff2ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(17, 74, 100, 0.08)),
    linear-gradient(135deg, #d9f0ff, #f8fcff 34%, #b7dfff 100%);
}

.room-scene-three {
  background-color: #e5e9ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(61, 66, 126, 0.08)),
    linear-gradient(135deg, #dfe3ff, #fafbff 34%, #c6cffd 100%);
}

.hero-slide-copy {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.hero-slide-copy span,
.results-card span,
.step-panel-copy span {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide-copy strong {
  font-size: 28px;
  line-height: 1.2;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 79, 207, 0.18);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(79, 54, 35, 0.08);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 77, 43, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

.editorial-intro-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(180deg, #fbfbf9 0%, #f7f7f4 100%);
  border-top: 1px solid rgba(108, 116, 128, 0.08);
  border-bottom: 1px solid rgba(108, 116, 128, 0.08);
}

.editorial-intro-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 56px;
  text-align: center;
}

.editorial-lead,
.editorial-copy,
.editorial-cta-copy {
  margin: 0 auto;
  color: #4f463d;
}

.editorial-lead {
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.editorial-lead.secondary {
  max-width: 22ch;
  margin-top: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #5e544a;
}

.editorial-copy {
  max-width: 700px;
  margin-top: 24px;
  color: #5f584f;
  font-size: 17px;
  line-height: 1.85;
}

.editorial-cta-copy {
  max-width: 34ch;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.65;
  color: #4a4138;
}

.editorial-intro-action {
  margin-top: 18px;
}

.btn-dark {
  background: #5f7a8a;
  color: #fdfbf8;
  border-color: #5f7a8a;
  box-shadow: none;
}

.btn-dark:hover {
  background: #526c7b;
  border-color: #526c7b;
}

.editorial-kicker-block {
  margin-top: 44px;
}

.editorial-kicker {
  display: inline-block;
  color: #8a7d70;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.editorial-kicker-block h2 {
  max-width: 20ch;
  margin: 10px auto 0;
  color: #433c35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.24;
  font-weight: 500;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-pill-row,
.workspace-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-proof-grid,
.feature-grid,
.pricing-grid,
.product-grid,
.legal-link-grid,
.step-grid,
.product-story-grid {
  display: grid;
  gap: 16px;
}

.hero-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.proof-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card,
.panel,
.auth-card,
.feature-card,
.pricing-card,
.product-card,
.legal-link-card,
.step-card,
.product-story-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.hero-card,
.feature-card,
.pricing-card,
.product-card,
.panel,
.legal-link-card,
.step-card,
.product-story-card {
  padding: 24px;
}

.hero-visual-card {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(248, 239, 229, 0.95));
}

.hero-visual-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hero-card-label,
.stage-mini-label,
.product-story-label,
.hero-status {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
}

.hero-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.hero-stage-grid {
  display: grid;
  gap: 14px;
}

.stage-mini {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.stage-mini-box {
  margin-top: 12px;
  min-height: 112px;
  padding: 20px;
  border-radius: 22px;
  border: 1px dashed rgba(125, 77, 43, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #efe2d2 0%, #f8f1e8 100%);
  color: rgba(125, 77, 43, 0.82);
  font-weight: 700;
}

.stage-mini-box.accent {
  background: linear-gradient(135deg, #ddc3a8 0%, #f0e2d3 100%);
}

.constraint-list,
.story-list,
.plan-list,
.status-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.constraint-list {
  margin-top: 12px;
}

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

.mini-product-card {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.mini-product-card span {
  display: block;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-product-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.section,
.workspace {
  padding: 36px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tight {
  padding: 30px;
}

.narrow {
  width: min(700px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 780px;
}

.brand-proof-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.88));
}

.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.proof-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.proof-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.proof-card p {
  margin: 0;
}

.feature-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

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

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.editorial-step-grid {
  margin-top: 28px;
}

.step-card {
  background: rgba(255, 255, 255, 0.72);
}

.editorial-step-card {
  text-align: center;
  min-height: 100%;
}

.step-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.step-card h3,
.feature-card h3,
.product-story-card h3 {
  margin: 18px 0 10px;
  line-height: 1.25;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(250, 244, 237, 0.96), rgba(255, 252, 247, 0.92));
}

.process-shell-section,
.results-showcase-section,
.testimonials-section {
  background: rgba(255, 255, 255, 0.9);
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.showcase-copy {
  padding-top: 8px;
}

.step-tab-shell {
  margin-top: 28px;
}

.step-tab-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-tab-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.step-tab-button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.step-tab-panels {
  margin-top: 22px;
}

.step-panel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.step-panel-visual {
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, #dfe8ff, #ffffff 34%, #c8dcff);
}

.step-visual-one {
  background: linear-gradient(135deg, #dbe8ff, #f7faff 34%, #bbd1ff);
}

.step-visual-two {
  background: linear-gradient(135deg, #d7f0ff, #f7fdff 34%, #bae2ff);
}

.step-visual-three {
  background: linear-gradient(135deg, #e5e4ff, #fafaff 34%, #c8cfff);
}

.step-visual-four {
  background: linear-gradient(135deg, #d9ebff, #ffffff 34%, #9fc4ff);
}

.step-panel-copy {
  margin-top: 18px;
}

.step-panel-copy h3 {
  margin: 10px 0 10px;
  font-size: 30px;
  line-height: 1.18;
}

.step-panel-copy p {
  margin: 0;
}

.product-story-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-top: 24px;
}

.product-story-card {
  background: rgba(255, 250, 245, 0.92);
}

.featured-story {
  border-color: rgba(165, 110, 69, 0.24);
}

.legal-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.legal-link-card {
  display: block;
  background: rgba(255, 255, 255, 0.82);
}

.legal-link-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 22px;
}

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

.legal-link-label,
.stage-label,
.product-tag {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured {
  border-color: rgba(165, 110, 69, 0.26);
  background: rgba(255, 249, 243, 0.96);
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(165, 110, 69, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
}

.plan-price {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 700;
}

.plan-list {
  margin-top: 16px;
}

.auth-card {
  margin-top: 18px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.auth-card input {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  color: var(--muted);
}

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

.google-auth-block {
  display: grid;
  gap: 14px;
}

.google-button-host {
  min-height: 44px;
}

.google-fallback-btn {
  width: 100%;
}

.auth-hint {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.auth-feedback,
.auth-profile {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.auth-feedback {
  color: var(--text);
  line-height: 1.6;
}

.auth-feedback.is-error {
  border-color: rgba(173, 64, 47, 0.22);
  background: rgba(255, 244, 241, 0.95);
  color: #8f3328;
}

.auth-feedback.is-success {
  border-color: rgba(83, 126, 67, 0.22);
  background: rgba(245, 251, 242, 0.95);
  color: #345f28;
}

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

.auth-profile-title {
  font-weight: 700;
}

.auth-profile-meta {
  margin-top: 4px;
  color: var(--muted);
}

.legal-page {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: var(--text);
}

.legal-content h3 {
  margin: 12px 0 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.workspace {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 20px;
}

.workspace-main,
.workspace-side {
  display: grid;
  gap: 20px;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
}

.panel-head {
  margin-bottom: 18px;
}

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

.image-placeholder {
  margin-top: 10px;
  min-height: 240px;
  border-radius: 24px;
  border: 1px dashed rgba(165, 110, 69, 0.24);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9d8c4 0%, #f8f0e5 100%);
  font-size: 28px;
  font-weight: 700;
  color: rgba(125, 77, 43, 0.72);
}

.image-placeholder.accent {
  background: linear-gradient(135deg, #dcc0a2 0%, #f1e4d5 100%);
}

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

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

.results-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.results-card strong {
  display: block;
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.2;
}

.results-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.results-card-large {
  min-height: 240px;
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(219, 232, 255, 0.9), rgba(255, 255, 255, 0.9));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.featured-testimonial {
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.95), rgba(255, 255, 255, 0.88));
}

.testimonial-carousel {
  position: relative;
  margin-top: 28px;
  padding: 0 54px;
}

.testimonial-carousel .testimonial-card {
  min-height: 260px;
}

.testimonial-dots {
  margin-top: 20px;
}

.testimonial-carousel .slider-prev {
  left: 0;
}

.testimonial-carousel .slider-next {
  right: 0;
}

.testimonial-stars {
  margin-bottom: 14px;
  color: var(--accent-strong);
  letter-spacing: 0.2em;
}

.testimonial-card h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

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

.testimonial-meta {
  margin-top: 18px;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero,
  .workspace,
  .product-story-grid,
  .split-showcase,
  .testimonial-grid,
  .brand-proof-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

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

  .footer-brand-block {
    justify-items: flex-start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

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

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

@media (max-width: 960px) {
  .feature-grid,
  .pricing-grid,
  .legal-link-grid,
  .product-grid,
  .stage-grid,
  .hero-proof-grid,
  .hero-product-strip,
  .principle-grid,
  .step-grid,
  .brand-proof-grid,
  .results-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .section,
  .workspace {
    padding: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual-top,
  .auth-profile,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 0 40px;
  }

  .editorial-intro-inner {
    width: calc(100% - 32px);
    padding: 40px 0 44px;
  }

  .editorial-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  .editorial-cta-copy {
    font-size: 18px;
  }

  .hero-copy-bright,
  .hero-slider-card {
    order: initial;
  }

  .hero-slider-card {
    min-height: 460px;
  }

  .hero-slide-visual {
    min-height: 280px;
  }

  .results-card-large {
    grid-column: span 1;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-carousel .slider-prev,
  .testimonial-carousel .slider-next {
    display: none;
  }

  .footer-policy-links {
    justify-content: flex-start;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar,
  .site-footer {
    border-radius: 20px;
  }

  .hero,
  .section,
  .workspace,
  .panel,
  .feature-card,
  .pricing-card,
  .product-card,
  .step-card,
  .legal-link-card,
  .product-story-card,
  .auth-card {
    border-radius: 24px;
  }
}
