:root {
  --bg: #fff9f6;
  --bg-soft: #fff4ee;
  --surface: #ffffff;
  --surface-alt: #fffbf8;
  --surface-strong: #fdf0ea;
  --text: #1f2d3d;
  --text-soft: #6b5b52;
  --line: #f0ddd4;
  --line-strong: #e8cfc0;
  --primary: #e06b3f;
  --primary-deep: #c45a2e;
  --primary-soft: #fdf0ea;
  --purple: #6b4fcf;
  --purple-soft: #f0ebff;
  --amber: #d97706;
  --amber-soft: #fff4e5;
  --green: #1b7a57;
  --green-soft: #e8f5ef;
  --shadow: 0 16px 40px rgba(192, 90, 46, 0.1);
  --shadow-soft: 0 8px 24px rgba(192, 90, 46, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC",
    sans-serif;
  line-height: 1.7;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite;
}

.orb-1 {
  top: -8%;
  right: -4%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(224, 107, 63, 0.35), transparent 70%);
}

.orb-2 {
  top: 38%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(107, 79, 207, 0.18), transparent 70%);
  animation-delay: -6s;
}

.orb-3 {
  bottom: 8%;
  right: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15), transparent 70%);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.06);
  }
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--surface-alt), rgba(255, 251, 248, 0.6));
  border-top: 1px solid rgba(240, 221, 212, 0.7);
  border-bottom: 1px solid rgba(240, 221, 212, 0.7);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p,
ul,
pre {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 246, 0.88);
  border-bottom: 1px solid rgba(240, 221, 212, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand-logo {
  height: 42px;
  width: auto;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--primary);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.header-contact {
  position: relative;
}

.header-contact-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--primary-soft));
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.header-contact-trigger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-qr-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.header-contact:hover .header-qr-panel,
.header-contact:focus-within .header-qr-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-qr-panel img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.header-qr-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.header-qr-panel p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f4a261, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(224, 107, 63, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(224, 107, 63, 0.34);
}

.btn-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(224, 107, 63, 0.28);
  }
  50% {
    box-shadow: 0 12px 32px rgba(224, 107, 63, 0.42);
  }
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line);
  color: var(--text-soft);
}

.btn-header {
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  padding: 48px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 40px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.hero-badge-soft {
  background: var(--primary-soft);
  color: var(--primary-deep);
  border: 1px solid var(--line-strong);
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), #f4a261);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 18px;
  max-width: 560px;
  color: var(--text-soft);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-soft);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.device-stack {
  position: relative;
  height: 440px;
}

.device {
  position: absolute;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}

.device-pc {
  inset: 20px 60px 40px 0;
  border-radius: var(--radius-xl);
}

.device-pc-shot .pc-shot-screen {
  height: calc(100% - 35px);
  background: #f7f3f0;
}

.pc-shot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.device-phone-shot {
  padding: 0;
  background: #1f2d3d;
}

.device-phone-shot .device-notch {
  position: relative;
  z-index: 2;
  background: #2c3b4d;
}

.phone-shot-screen {
  height: calc(100% - 20px);
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.phone-shot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #faf6f3;
  border-bottom: 1px solid var(--line);
}

.device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8cfc0;
}

.device-bar span:first-child {
  background: #f4a261;
}

.device-bar span:nth-child(2) {
  background: #f0c987;
}

.device-bar span:nth-child(3) {
  background: #8bc48a;
}

.device-screen {
  height: calc(100% - 35px);
}

.pc-screen {
  display: grid;
  grid-template-columns: 72px 1fr;
}

.mock-sidebar {
  padding: 12px 10px;
  background: linear-gradient(180deg, #fff8f4, #fff);
  border-right: 1px solid var(--line);
}

.mock-logo {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.mock-nav-item {
  height: 8px;
  margin: 10px 4px;
  border-radius: 4px;
  background: #f0ddd4;
}

.mock-nav-item.active {
  background: linear-gradient(90deg, var(--primary-soft), transparent);
  border-left: 3px solid var(--primary);
  height: 10px;
}

.mock-main {
  padding: 16px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mock-stat {
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-soft);
}

.mock-stat span {
  display: block;
  font-size: 10px;
  color: var(--text-soft);
}

.mock-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  color: var(--primary-deep);
}

.mock-stat.accent {
  background: var(--purple-soft);
}

.mock-stat.accent strong {
  color: var(--purple);
}

.mock-stat.warn {
  background: var(--amber-soft);
}

.mock-stat.warn strong {
  color: var(--amber);
}

.mock-stat.purple strong {
  color: var(--purple);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-alt));
  border: 1px solid var(--line);
}

.chart-bar {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #f4a261, var(--primary));
  animation: barGrow 1.2s ease-out backwards;
}

.chart-bar:nth-child(odd) {
  animation-delay: 0.1s;
}

@keyframes barGrow {
  from {
    height: 0;
  }
}

.device-phone {
  width: 130px;
  height: 240px;
  border-radius: 22px;
}

.staff-phone {
  right: 0;
  top: 60px;
  z-index: 3;
  animation: floatPhone 5s ease-in-out infinite;
}

.parent-phone {
  left: 20px;
  bottom: 0;
  z-index: 2;
  animation: floatPhone 5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.device-notch {
  width: 48px;
  height: 6px;
  margin: 8px auto 6px;
  border-radius: 999px;
  background: #e8cfc0;
}

.phone-screen {
  padding: 10px;
  background: linear-gradient(180deg, #fff8f4, #fff);
}

.phone-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.phone-card {
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.phone-card strong {
  display: block;
  font-size: 11px;
}

.phone-card span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  color: var(--text-soft);
}

.phone-card.done {
  opacity: 0.65;
}

.phone-btn {
  margin-top: 10px;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.phone-screen.parent {
  background: linear-gradient(180deg, var(--purple-soft), #fff);
}

.phone-ledger {
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.phone-ledger strong {
  display: block;
  font-size: 28px;
  color: var(--purple);
}

.phone-ledger span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  color: var(--text-soft);
}

.phone-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.phone-mini-row > div {
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.phone-mini-row small {
  display: block;
  font-size: 8px;
  color: var(--text-soft);
}

.phone-mini-row strong {
  font-size: 14px;
  color: var(--primary-deep);
}

.hero-float-card {
  position: absolute;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-float-card span {
  display: block;
  color: var(--text-soft);
  font-size: 11px;
}

.hero-float-card strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.hero-float-top {
  top: 0;
  left: -10px;
}

.hero-float-bottom {
  right: 40px;
  bottom: 20px;
}

.stats-strip {
  padding: 0 0 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid article {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  color: var(--primary-deep);
}

.stats-grid article span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

.stats-grid article p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
}

.quick-proof {
  padding-bottom: 20px;
}

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

.proof-grid article {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.proof-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 14px;
}

.proof-icon.orange {
  background: var(--primary-soft);
}

.proof-icon.purple {
  background: var(--purple-soft);
}

.proof-icon.amber {
  background: var(--amber-soft);
}

.proof-icon.green {
  background: var(--green-soft);
}

.proof-icon.blue {
  background: #eaf3ff;
}

.proof-icon.coral {
  background: var(--primary-soft);
}

.proof-grid strong {
  display: block;
  font-size: 16px;
}

.proof-grid p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

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

.section-head > div {
  max-width: 640px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.35;
  font-weight: 800;
}

.section-head p:last-child {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 15px;
}

.builder-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.builder-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.builder-tab {
  flex: 1;
  min-width: 120px;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.builder-tab.is-active {
  background: var(--surface);
  color: var(--primary-deep);
  box-shadow: inset 0 -3px 0 var(--primary);
}

.builder-output {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: 0;
}

.builder-copy {
  padding: 32px 28px;
}

.builder-kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.builder-copy h3 {
  margin-top: 10px;
  font-size: 22px;
}

.builder-copy > p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 15px;
}

.builder-copy ul {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--text-soft);
}

.builder-copy li + li {
  margin-top: 6px;
}

.builder-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.builder-link:hover {
  text-decoration: underline;
}

.builder-qr-block {
  margin-top: 20px;
}

.builder-qr-note {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.qr-card {
  margin: 0;
  width: 132px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.qr-card figcaption {
  margin-top: 8px;
}

.qr-card strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.qr-card span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-soft);
}

.preview-shot {
  padding: 12px;
}

.shot-frame {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7f3f0;
}

.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-frame-pc {
  max-height: 220px;
}

.shot-frame-pc img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.shot-frame-phone {
  max-width: 160px;
  margin: 0 auto;
  max-height: 280px;
  border-radius: 18px;
}

.shot-frame-phone img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.parent-mock {
  padding: 4px 2px 2px;
}

.parent-mock-hero {
  text-align: center;
  padding: 22px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff4ee, #fff 55%, #f0ebff);
  border: 1px solid var(--line);
}

.parent-mock-hero span {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
}

.parent-mock-hero strong {
  display: block;
  margin-top: 6px;
  font-size: 40px;
  line-height: 1;
  color: var(--primary-deep);
}

.parent-mock-hero em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 11px;
  color: var(--text-soft);
}

.parent-mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.parent-mock-list > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.parent-mock-list b {
  font-size: 13px;
}

.parent-mock-list span {
  font-size: 11px;
  color: var(--text-soft);
}

.builder-preview {
  padding: 28px;
  background: linear-gradient(180deg, var(--primary-soft), #fff);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-card {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.preview-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.preview-mock {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  min-height: 180px;
}

.pm-sidebar {
  border-radius: 8px;
  background: var(--primary-soft);
}

.pm-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-row {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.pm-row.short {
  width: 60%;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.pm-grid div {
  border-radius: 8px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.preview-phone .preview-mock {
  display: block;
}

.preview-phone-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-card {
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.pp-card strong {
  display: block;
  font-size: 13px;
}

.pp-card span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-soft);
}

.pp-btn {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.pp-ledger {
  text-align: center;
  padding: 20px;
}

.pp-ledger strong {
  font-size: 36px;
  color: var(--purple);
}

.feature-showcase {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.product-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-shot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-shot-wide {
  grid-column: span 2;
}

.product-shot-media {
  background: linear-gradient(180deg, #fff8f4, #f3ebe6);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-shot-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-shot-wide .product-shot-media img {
  height: 340px;
}

.product-shot-phone {
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
  background: linear-gradient(180deg, #fff4ee, #fff);
}

.product-shot-phone img {
  width: min(220px, 70%);
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px 18px 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  box-shadow: var(--shadow-soft);
}

.product-shot-body {
  padding: 20px 22px 22px;
}

.product-shot-body span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.product-shot-body h3 {
  margin-top: 8px;
  font-size: 18px;
}

.product-shot-body p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.feature-main-visual {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface), var(--primary-soft));
  box-shadow: var(--shadow-soft);
}

.feature-ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.ring-center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.ring-center img {
  width: 36px;
  height: 36px;
}

.ring-center strong {
  margin-top: 6px;
  font-size: 13px;
}

.ring-center span {
  font-size: 10px;
  color: var(--text-soft);
}

.ring-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  padding: 8px 6px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  transform: rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg));
  animation: ringPulse 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow: var(--shadow-soft);
  }
  50% {
    box-shadow: 0 8px 20px rgba(224, 107, 63, 0.2);
    border-color: var(--primary);
  }
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 14px;
}

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

.feature-icon.orange {
  background: var(--primary-soft);
  color: var(--primary);
}

.feature-icon.purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.feature-icon.amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.feature-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.feature-card h3 {
  font-size: 17px;
}

.feature-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.flow-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.flow-step {
  flex: 1;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.flow-num {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
}

.flow-step h3 {
  margin-top: 14px;
  font-size: 18px;
}

.flow-step p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-size: 24px;
  font-weight: 300;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.scene-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease;
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.scene-cover {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.scene-cover.dance {
  background: linear-gradient(135deg, #f4a261 0%, #e06b3f 50%, #6b4fcf 100%);
}

.scene-cover.art {
  background: linear-gradient(135deg, #ffd166 0%, #ef476f 50%, #06d6a0 100%);
}

.scene-cover.music {
  background: linear-gradient(135deg, #6b4fcf 0%, #118ab2 50%, #073b4c 100%);
}

.scene-cover.growth {
  background: linear-gradient(135deg, #e06b3f 0%, #c45a2e 40%, #1b7a57 100%);
}

.scene-card-body {
  padding: 22px;
}

.scene-card-body span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.scene-card-body h3 {
  margin-top: 8px;
  font-size: 18px;
}

.scene-card-body p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #c45a2e 0%, var(--primary) 45%, #f4a261 100%);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band .section-kicker {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .section-kicker::before {
  background: rgba(255, 255, 255, 0.6);
}

.cta-band h2 {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
}

.cta-band p:last-of-type {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 15px;
}

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

.cta-band .btn-primary {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(22px, 2.5vw, 28px);
}

.contact-copy > p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
}

.contact-qr-card {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}

.contact-qr-card img {
  width: 110px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.contact-qr-copy strong {
  display: block;
  font-size: 16px;
}

.contact-qr-copy p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.contact-highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-highlights li {
  padding: 6px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-note {
  color: var(--text-soft);
  font-size: 13px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.lead-form fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lead-form fieldset legend {
  padding: 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.lead-form fieldset label {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin-top: 6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-status {
  color: var(--text-soft);
  font-size: 13px;
}

.summary-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-alt);
}

.summary-box strong {
  display: block;
  margin-bottom: 10px;
}

.summary-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0 100px;
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand-block p {
  margin-top: 12px;
  max-width: 520px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--text-soft);
  font-size: 13px;
}

.footer-legal a {
  color: var(--text-soft);
}

.footer-legal a:hover {
  color: var(--primary);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  min-height: 44px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .builder-output,
  .feature-showcase,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .product-shot-wide {
    grid-column: span 1;
  }

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

  .product-shot-wide .product-shot-media img,
  .product-shot-media img {
    height: 220px;
  }

  .product-shot-phone img {
    height: 320px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .device-stack {
    height: 360px;
  }

  .device-pc {
    inset: 10px 40px 30px 0;
  }

  .feature-main-visual {
    position: static;
  }

  .builder-preview {
    border-left: none;
    border-top: 1px solid var(--line);
  }

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

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

  .flow-track {
    flex-direction: column;
  }

  .flow-arrow {
    justify-content: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .header-actions {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: rgba(255, 249, 246, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .header-actions.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-contact {
    align-self: flex-start;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

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

  .feature-card-grid,
  .scene-grid,
  .product-shot-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-cta-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 560px) {
  .stats-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    display: none;
  }

  .staff-phone,
  .parent-phone {
    width: 110px;
    height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
