:root {
  --bg: #050507;
  --bg-soft: rgba(255, 255, 255, 0.07);
  --ink: #121116;
  --ink-strong: rgba(12, 12, 16, 0.94);
  --ink-body: rgba(18, 17, 22, 0.68);
  --ink-soft: rgba(18, 17, 22, 0.48);
  --dark-ink: #111111;
  --muted: rgba(18, 17, 22, 0.64);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #c982ff;
  --acid: #dfff65;
  --pink: rgba(255, 216, 239, 0.12);
  --blue: rgba(216, 243, 255, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --font-display: "PingFang SC", "SF Pro Display", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei UI", sans-serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 221, 236, 0.36), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(187, 244, 255, 0.44), transparent 42%),
    radial-gradient(circle at 84% 52%, rgba(183, 145, 255, 0.38), transparent 44%),
    linear-gradient(128deg, rgba(191, 247, 255, 0.28) 0%, rgba(255, 224, 245, 0.34) 34%, rgba(255, 246, 188, 0.24) 58%, rgba(199, 178, 255, 0.3) 100%),
    #f6f3fb;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

main > section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

.prism-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.84;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 213, 235, 0.36), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(191, 247, 255, 0.42), transparent 42%),
    radial-gradient(circle at 72% 34%, rgba(255, 238, 162, 0.32), transparent 40%),
    radial-gradient(circle at 86% 56%, rgba(181, 142, 255, 0.36), transparent 42%),
    linear-gradient(126deg, rgba(191, 247, 255, 0.26) 0%, rgba(255, 224, 245, 0.3) 34%, rgba(255, 246, 188, 0.2) 58%, rgba(199, 178, 255, 0.28) 100%),
    #f6f3fb;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(16px, 3.5vw, 36px);
}

.nav-links a,
.language-toggle,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-ink);
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0;
  color: rgba(12, 12, 16, 0.92);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(18, 17, 22, 0.14);
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a,
.language-toggle,
.download-link {
  height: 34px;
  padding: 0 15px;
  border: 0;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.download-link {
  background: var(--white);
  color: var(--dark-ink);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px 20px 82px;
  text-align: center;
  background: transparent;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.62), inset 0 -38px 58px rgba(126, 148, 255, 0.16);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 216, 236, 0.38), transparent 34%),
    radial-gradient(circle at 20% 28%, rgba(190, 246, 255, 0.34), transparent 42%),
    radial-gradient(circle at 76% 34%, rgba(255, 241, 169, 0.28), transparent 40%),
    radial-gradient(circle at 88% 58%, rgba(190, 154, 255, 0.38), transparent 44%);
}

.hero::after {
  content: "Baize";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -0.12em;
  transform: translateX(-50%);
  color: rgba(18, 17, 22, 0.055);
  font-size: clamp(140px, 26vw, 420px);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1120px;
  transform: translateY(-1.8vh);
}

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

h1 {
  margin: 0;
  max-width: min(1080px, 94vw);
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 108px);
  line-height: 1.04;
  font-weight: 620;
  letter-spacing: 0;
  color: rgba(12, 12, 16, 0.96);
  text-shadow: none;
  text-wrap: balance;
  font-kerning: normal;
}

.blur-text {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  vertical-align: top;
}

.blur-segment {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -0.42em, 0);
  transform-origin: 50% 50%;
  animation: blur-text-in 1.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--blur-index, 0) * var(--blur-delay, 120ms));
  will-change: transform, opacity;
}

.blur-space {
  display: inline-block;
  width: 0.32em;
  white-space: pre;
}

.blur-line {
  display: contents;
}

.hero-subtitle {
  margin: -2px 0 8px;
  color: rgba(18, 17, 22, 0.58);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 520;
  line-height: 1.5;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-dark {
  background: var(--white);
  color: var(--dark-ink);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.phone-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 0.98fr) minmax(300px, 0.58fr);
  gap: clamp(18px, 3.4vw, 44px);
  align-items: center;
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(58px, 5.4vw, 64px) clamp(24px, 5vw, 72px);
  background: transparent;
}

.phone-copy {
  justify-self: end;
  width: min(620px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--ink);
  text-shadow: none;
}

.phone-copy h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.12;
}

.phone-copy h2 span {
  display: block;
}

.value-copy {
  display: grid;
  gap: 18px;
  max-width: 700px;
  min-height: 176px;
  align-content: start;
}

.value-card {
  position: relative;
  margin: 0;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  outline: none;
  transform-origin: center;
  opacity: 0.58;
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.value-card:hover,
.value-card:focus-visible {
  transform: translateY(-2px) scale(1.015);
  opacity: 0.82;
}

.value-card.is-active {
  opacity: 1;
}

.value-card:focus,
.value-card:focus-visible {
  outline: 0 !important;
  box-shadow: none;
}

.value-card:focus-visible strong {
  color: rgba(18, 17, 22, 0.9);
}

.value-card:active {
  transform: translateY(-1px) scale(1.01);
}

.value-copy em,
.value-copy strong,
.value-copy .value-body,
.value-body span {
  display: block;
}

.value-copy em {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: clamp(13px, 0.9vw, 15px);
  font-style: normal;
  font-weight: 760;
  line-height: 1.45;
}

.value-copy strong {
  margin-bottom: 6px;
  color: rgba(18, 17, 22, 0.62);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.38;
  font-weight: 850;
  transition: color 220ms ease;
}

.value-card.is-active strong {
  color: rgba(18, 17, 22, 0.9);
}

.value-body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card.is-active .value-body {
  height: 51px;
  opacity: 1;
  transform: translateY(0);
}

.value-body span {
  color: var(--ink-body);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card.is-active .value-body span {
  opacity: 1;
  transform: translateY(0);
}

.value-card.is-active .value-body span:nth-child(1) {
  transition-delay: 80ms;
}

.value-card.is-active .value-body span:nth-child(2) {
  transition-delay: 160ms;
}

.value-copy:has(.value-card:hover) .value-card.is-active:not(:hover) {
  opacity: 0.58;
}

.value-copy:has(.value-card:hover) .value-card.is-active:not(:hover) strong {
  color: rgba(18, 17, 22, 0.62);
}

.value-copy:has(.value-card:hover) .value-card.is-active:not(:hover) .value-body {
  height: 0;
  opacity: 0;
  transform: translateY(10px);
}

.value-copy:has(.value-card:hover) .value-card.is-active:not(:hover) .value-body span {
  opacity: 0;
  transform: translateY(12px);
  transition-delay: 0ms;
}

.value-card:hover {
  opacity: 1;
}

.value-card:hover strong {
  color: rgba(18, 17, 22, 0.9);
}

.value-card:hover .value-body {
  height: 51px;
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover .value-body span {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover .value-body span:nth-child(1) {
  transition-delay: 80ms;
}

.value-card:hover .value-body span:nth-child(2) {
  transition-delay: 160ms;
}

.phone-copy p:last-child,
.feature-card p,
.inspiration p,
.site-footer {
  color: var(--ink-body);
  font-size: 15px;
  line-height: 1.68;
}

.phone-shell {
  justify-self: start;
  width: min(306px, 88vw);
  aspect-ratio: 390 / 780;
  border-radius: 46px;
  padding: 8px;
  background: linear-gradient(145deg, #18181c, #030304 58%, #141418);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.13),
    inset 0 -18px 34px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 52% 2%, rgba(223, 255, 101, 0.3), transparent 24%),
    radial-gradient(circle at 12% 28%, rgba(201, 130, 255, 0.22), transparent 35%),
    linear-gradient(180deg, #fbfaff, #f1eafd 54%, #fffefd);
  padding: 46px 14px 18px;
}

.phone-screen::before {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 84px;
  height: 25px;
  border-radius: 999px;
  background: #050507;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  content: "";
}

.phone-screen::after {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 4;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 17, 22, 0.18);
  transform: translateX(-50%);
  content: "";
}

.agent-thread {
  position: relative;
  height: 100%;
  margin-top: 0;
  overflow: hidden;
  border-radius: 28px;
}

.conversation-loop {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 2px 0 92px;
}

.message,
.script-card {
  border-radius: 22px;
  padding: 10px 13px;
  line-height: 1.44;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(58, 36, 78, 0.07);
}

.agent-step {
  opacity: 0;
  transform: translateY(10px);
  animation: agentMessageIn 560ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}

.agent-thread .agent-step:nth-child(1) {
  animation-delay: 80ms;
}

.agent-thread .agent-step:nth-child(2) {
  animation-delay: 280ms;
}

.agent-thread .agent-step:nth-child(3) {
  animation-delay: 520ms;
}

.agent-thread .agent-step:nth-child(4) {
  animation-delay: 760ms;
}

.agent-thread .agent-step:nth-child(5) {
  animation-delay: 1000ms;
}

.agent-thread .agent-step:nth-child(6) {
  animation-delay: 1240ms;
}

.ghost-step {
  margin-right: 34px;
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(18, 17, 22, 0.56);
  font-size: 11px;
}

.message.user {
  align-self: flex-end;
  max-width: 78%;
  margin-left: 30px;
  background: var(--dark-ink);
  color: var(--white);
}

.message.user.selected {
  align-self: flex-end;
  min-width: 82px;
  margin-left: 0;
  padding: 9px 14px;
  border-radius: 999px;
  text-align: center;
}

.message.agent {
  display: grid;
  gap: 8px;
  align-self: flex-start;
  max-width: 90%;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(58, 36, 78, 0.08);
  backdrop-filter: blur(18px);
}

.message.agent > span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.agent-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.agent-choice-list span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(18, 17, 22, 0.055);
  color: rgba(18, 17, 22, 0.62);
  font-size: 10.5px;
  font-weight: 680;
  line-height: 1;
}

.agent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-options li {
  position: relative;
  padding-left: 12px;
  color: rgba(18, 17, 22, 0.72);
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 520;
}

.agent-insights {
  position: relative;
  min-height: 54px;
}

.insight-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 9px 11px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 10px 26px rgba(58, 36, 78, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease;
}

.insight-panel strong,
.insight-panel span {
  display: block;
}

.insight-panel strong {
  color: rgba(18, 17, 22, 0.88);
  font-size: 12px;
  font-weight: 880;
  line-height: 1.3;
}

.insight-panel span {
  color: rgba(18, 17, 22, 0.58);
  font-size: 11px;
  line-height: 1.42;
  font-weight: 560;
}

.phone-stage[data-phone-mode="business"] .insight-business,
.phone-stage[data-phone-mode="creator"] .insight-creator {
  opacity: 1;
  transform: translateY(0);
}

.phone-stage[data-phone-mode="business"] .insight-business {
  background: linear-gradient(135deg, rgba(223, 255, 101, 0.64), rgba(255, 255, 255, 0.76));
}

.phone-stage[data-phone-mode="creator"] .insight-creator {
  background: linear-gradient(135deg, rgba(201, 130, 255, 0.18), rgba(255, 255, 255, 0.78));
}

.agent-options li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(18, 17, 22, 0.34);
  content: "";
}

.script-card {
  position: relative;
  margin-top: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(223, 255, 101, 0.94), rgba(255, 255, 255, 0.82) 76%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.66),
    0 13px 30px rgba(58, 36, 78, 0.09);
}

.script-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.script-card p {
  margin: 0;
  color: var(--dark-ink);
  font-size: 13.5px;
  font-weight: 800;
}

.voice-input {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
}

.voice-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.92);
  color: var(--acid);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.voice-ring {
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(223, 255, 101, 0.42);
  animation: voiceRing 1.7s ease-out infinite;
}

.voice-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(223, 255, 101, 0.12);
}

.voice-core i {
  display: block;
  width: 3px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
  animation: voiceIconBars 1.04s ease-in-out infinite;
}

.voice-core i:nth-child(2) {
  height: 17px;
  animation-delay: 0.14s;
}

.voice-core i:nth-child(3) {
  animation-delay: 0.28s;
}

.features-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(68px, 7.4vw, 104px) clamp(24px, 5.6vw, 96px) clamp(56px, 5.8vw, 82px);
  background: transparent;
  overflow: hidden;
}

.features-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1.54fr);
  grid-template-areas:
    "heading cards"
    "showcase showcase";
  align-items: start;
  column-gap: clamp(28px, 4.8vw, 68px);
  row-gap: clamp(22px, 3vw, 34px);
  width: min(1120px, 100%);
}

.features-heading {
  position: relative;
  display: grid;
  grid-area: heading;
  justify-items: start;
  gap: 6px;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  text-align: left;
  isolation: isolate;
}

.features-backdrop {
  position: absolute;
  top: clamp(56px, 5vw, 72px);
  left: -0.04em;
  z-index: -1;
  width: clamp(220px, 24vw, 310px);
  color: rgba(18, 17, 22, 0.032);
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 0.82;
  white-space: normal;
  transform: none;
  pointer-events: none;
}

.features-heading h2 {
  margin-bottom: 0;
  color: var(--ink-strong);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-area: cards;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.45vw, 32px);
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: clamp(7px, 0.82vw, 11px);
  min-width: 0;
  padding: clamp(12px, 1.45vw, 16px) 0 0;
  border-top: 1px solid rgba(18, 17, 22, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card:nth-child(2) {
  background: transparent;
}

.feature-card:nth-child(3) {
  background: transparent;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(22px, 1.72vw, 27px);
  line-height: 1.16;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  max-width: 96%;
  color: rgba(12, 12, 16, 0.9);
  font-size: clamp(13.5px, 0.94vw, 15px);
  line-height: 1.54;
  font-weight: 720;
}

.feature-points {
  display: grid;
  gap: 3px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-body);
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  line-height: 1.46;
  font-weight: 400;
}

.feature-points li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(18, 17, 22, 0.38);
  content: "";
}

.template-showcase {
  grid-area: showcase;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
}

.template-marquee {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding: 0 0 6px;
}

.template-marquee::-webkit-scrollbar {
  display: none;
}

.template-marquee::before,
.template-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(36px, 7vw, 110px);
  height: 100%;
  content: "";
  pointer-events: none;
}

.template-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 248, 251, 0.94), rgba(247, 248, 251, 0));
}

.template-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 248, 251, 0.94), rgba(247, 248, 251, 0));
}

.template-track {
  display: flex;
  width: max-content;
  gap: clamp(10px, 1.3vw, 16px);
  padding: 0 clamp(10px, 2vw, 28px);
  will-change: scroll-position;
}

.template-card {
  flex: 0 0 clamp(138px, 10.8vw, 168px);
  aspect-ratio: 640 / 853;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 1.9vw, 26px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(20, 20, 28, 0.07);
  opacity: 0.58;
  transform: translateZ(0);
  transition: opacity 180ms ease, transform 180ms ease;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.template-card:hover {
  opacity: 1;
  transform: translateY(-2px) translateZ(0);
}

.template-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.94) brightness(1.06);
}

.inspiration {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(74px, 7vw, 92px) clamp(20px, 6vw, 110px) clamp(42px, 5vw, 66px);
  text-align: center;
  background: transparent;
}

.inspiration-main {
  position: relative;
  width: min(980px, 100%);
  transform: translateY(-3vh);
  isolation: isolate;
}

.inspiration-backdrop {
  position: absolute;
  top: -0.55em;
  left: 50%;
  z-index: -1;
  width: min(1040px, 96vw);
  color: rgba(18, 17, 22, 0.032);
  font-size: clamp(54px, 8.6vw, 118px);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.inspiration-main h2 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
}

.tag-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.68);
  color: rgba(247, 244, 255, 0.76);
  font-size: 13px;
  font-weight: 720;
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: blur(14px);
}

.segment-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: clamp(36px, 9vw, 160px);
  text-align: left;
}

.segment-heading h2 {
  margin: 0;
  color: rgba(18, 17, 22, 0.92);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 780;
}

.segment-heading p {
  max-width: 420px;
  margin: 6px 0 0;
  color: rgba(18, 17, 22, 0.68);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.68;
  font-weight: 560;
}

.segment-lens {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.segment-lens span,
.segment-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(18, 17, 22, 0.52);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(18, 17, 22, 0.08);
}

.segment-board {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(26px, 3.6vw, 42px);
  text-align: left;
}

.segment-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: clamp(320px, 27vw, 360px);
  overflow: hidden;
  padding: clamp(20px, 1.9vw, 25px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(244, 242, 250, 0.48)),
    rgba(246, 245, 251, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.74),
    0 22px 52px rgba(45, 39, 69, 0.08);
  backdrop-filter: blur(20px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.segment-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(191, 247, 255, 0.35), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(255, 216, 239, 0.34), transparent 30%);
  opacity: 0.8;
  content: "";
  pointer-events: none;
}

.segment-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 26px 60px rgba(45, 39, 69, 0.11);
}

.segment-card-commercial {
  margin-top: clamp(14px, 2.2vw, 28px);
}

.segment-card-creator {
  min-height: clamp(332px, 28vw, 374px);
}

.segment-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(139, 166, 224, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.segment-corner::before,
.segment-corner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  content: "";
}

.segment-corner::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.segment-corner::after {
  width: 7px;
  transform: translate(-12%, -142%) rotate(45deg);
  transform-origin: right center;
}

.segment-flow {
  position: absolute;
  top: clamp(14px, 1.7vw, 22px);
  right: clamp(32px, 4.4vw, 58px);
  z-index: 1;
  width: min(194px, 38%);
  height: auto;
  margin: 0;
  filter: saturate(1.05);
  animation: segmentFlowFloat 7s ease-in-out infinite;
  pointer-events: none;
}

.segment-card-creator .segment-flow {
  width: min(202px, 39%);
  animation-delay: -2.8s;
}

.segment-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: clamp(78px, 7.2vw, 96px);
}

.segment-label {
  color: rgba(18, 17, 22, 0.42);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
}

.segment-copy h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.05;
  font-weight: 880;
}

.segment-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(18, 17, 22, 0.64);
  font-size: 12.5px;
  line-height: 1.52;
  font-weight: 560;
}

.segment-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin: 4px 0 0;
}

.segment-facts div {
  display: block;
}

.segment-facts dt,
.segment-facts dd {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.36;
}

.segment-facts dt {
  color: rgba(18, 17, 22, 0.42);
  font-weight: 820;
}

.segment-facts dd {
  color: rgba(18, 17, 22, 0.68);
  font-weight: 580;
}

.segment-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.segment-tags span {
  background: rgba(18, 17, 22, 0.055);
  color: rgba(18, 17, 22, 0.58);
}

@keyframes segmentFlowFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(1.5deg);
  }
}

.contact-section {
  position: absolute;
  right: clamp(20px, 6vw, 110px);
  bottom: clamp(4px, 0.7vw, 10px);
  left: clamp(20px, 6vw, 110px);
  display: grid;
  align-items: center;
  padding: 0;
  background: transparent;
}

.business-panel {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 8px 18px 0;
  text-align: center;
}

.business-copy {
  min-width: 0;
}

.business-copy p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(18, 17, 22, 0.68);
  font-size: clamp(15px, 1.05vw, 16px);
  font-weight: 820;
  line-height: 1.6;
}

.business-copy span {
  display: block;
  margin-top: 6px;
  color: rgba(18, 17, 22, 0.48);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
}

.contact-card {
  display: block;
  min-width: 0;
  padding: 0;
  background: transparent;
  color: rgba(18, 17, 22, 0.58);
  box-shadow: none;
  font-size: 12.5px;
  font-weight: 680;
  line-height: 1.45;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-card:hover {
  color: rgba(18, 17, 22, 0.72);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 34px clamp(20px, 6vw, 110px) 42px;
  background: transparent;
  color: rgba(18, 17, 22, 0.48);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(18, 17, 22, 0.48);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(18, 17, 22, 0.78);
}

@keyframes agentMessageIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes voiceRing {
  0% {
    opacity: 0.76;
    transform: scale(0.76);
  }

  70%, 100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes voiceIconBars {
  0%, 100% {
    transform: scaleY(0.56);
    opacity: 0.58;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes blur-text-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -0.42em, 0);
  }

  56% {
    opacity: 0.56;
    transform: translate3d(0, 0.05em, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes blur-text-in-mobile {
  0% {
    opacity: 0;
    transform: translate3d(0, -0.22em, 0);
  }

  56% {
    opacity: 0.56;
    transform: translate3d(0, 0.03em, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  body {
    background-attachment: scroll;
  }

  main > section,
  .site-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .prism-background {
    opacity: 0.78;
  }

  .nav-links {
    display: none;
  }

  .phone-stage,
  .feature-grid,
  .business-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
    gap: 30px;
    padding-top: 90px;
    padding-bottom: 76px;
  }

  .phone-copy {
    justify-self: center;
    text-align: center;
  }

  .phone-copy h2 {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(32px, 7vw, 48px);
    line-height: 1.12;
  }

  .value-copy {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-shell {
    justify-self: center;
  }

  .features-section {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 66px;
  }

  .features-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "cards"
      "showcase";
    row-gap: 22px;
  }

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

  .features-backdrop {
    left: 50%;
    font-size: clamp(62px, 19vw, 92px);
    transform: translate(-50%, -48%);
  }

  .features-heading h2 {
    font-size: 34px;
  }

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

  .feature-card {
    gap: 7px;
  }

  .feature-card + .feature-card {
    margin-top: 12px;
  }

  .feature-card p {
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .feature-points {
    gap: 4px;
  }

  .feature-points li {
    font-size: 13.5px;
    line-height: 1.42;
  }

  .template-marquee {
    overflow-x: auto;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
  }

  .template-marquee::before,
  .template-marquee::after {
    display: none;
  }

  .template-track {
    animation: none;
    padding: 0 20px 10px;
  }

  .template-card {
    flex-basis: min(64vw, 270px);
    scroll-snap-align: none;
    opacity: 0.78;
  }

  .inspiration {
    display: grid;
    min-height: auto;
    align-content: start;
    place-items: stretch;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .inspiration-main {
    transform: none;
  }

  .inspiration-backdrop {
    top: -0.44em;
    font-size: clamp(52px, 16vw, 96px);
  }

  .tag-cloud {
    max-width: 720px;
  }

  .segment-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .segment-heading p {
    max-width: 620px;
  }

  .segment-lens {
    justify-content: center;
  }

  .segment-board {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .segment-card,
  .segment-card-creator {
    min-height: 0;
  }

  .segment-card-commercial {
    margin-top: 0;
  }

  .contact-section {
    position: static;
    padding-top: 34px;
  }

  .business-panel {
    align-items: center;
  }

  .business-copy p:last-child {
    max-width: none;
    text-align: center;
  }

  .contact-grid {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 52% 20%, rgba(255, 231, 245, 0.28), transparent 36%),
      radial-gradient(circle at 10% 30%, rgba(190, 246, 255, 0.32), transparent 42%),
      radial-gradient(circle at 88% 58%, rgba(194, 164, 255, 0.28), transparent 44%),
      linear-gradient(136deg, rgba(191, 247, 255, 0.18) 0%, rgba(255, 224, 245, 0.24) 38%, rgba(255, 246, 188, 0.16) 62%, rgba(199, 178, 255, 0.22) 100%),
      #f8f5fd;
  }

  .prism-background {
    opacity: 0.7;
    filter: saturate(0.92) contrast(0.96);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    padding-right: 10px;
  }

  .brand span {
    display: none;
  }

  .language-toggle {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(44px, 12vw, 64px);
    line-height: 1.08;
  }

  .blur-text[data-mobile-break="true"] {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.08em;
  }

  .blur-text[data-mobile-break="true"] .blur-line {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    line-height: 1;
  }

  .blur-text[data-mobile-break="true"] .blur-segment {
    animation-name: blur-text-in-mobile;
  }

  .button {
    min-width: 132px;
    min-height: 48px;
    font-size: 15px;
  }

  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 34px;
  }

  .inspiration {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .inspiration-main h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .tag-cloud {
    gap: 7px;
    margin-top: 18px;
  }

  .tag-cloud span {
    padding: 7px 10px;
    font-size: 12px;
    background: rgba(8, 8, 12, 0.58);
    color: rgba(247, 244, 255, 0.82);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      0 8px 20px rgba(18, 17, 22, 0.08);
  }

  .segment-heading h2 {
    font-size: 42px;
  }

  .segment-heading p {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .segment-board {
    gap: 18px;
    margin-top: 24px;
  }

  .segment-card {
    padding: 20px;
    border-radius: 24px;
  }

  .segment-flow,
  .segment-card-creator .segment-flow {
    width: min(220px, 72%);
    margin-top: -8px;
  }

  .segment-copy h3 {
    font-size: 25px;
  }

  .segment-copy {
    margin-top: 124px;
  }

  .segment-facts {
    grid-template-columns: 1fr;
  }

  .segment-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .segment-tags {
    gap: 6px;
    margin-top: 12px;
  }

  h2 {
    font-size: 30px;
  }

  .phone-copy h2 {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.16;
  }

  .value-copy {
    gap: 12px;
    min-height: 148px;
  }

  .value-card {
    padding: 4px 0;
  }

  .value-card:hover,
  .value-card:focus-visible {
    transform: translateY(-1px) scale(1.01);
  }

  .value-card:active {
    transform: scale(1.025);
  }

  .value-copy em {
    font-size: 13px;
  }

  .value-copy strong {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .value-body span {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
  }

  .phone-stage {
    gap: 22px;
    padding: 84px 18px 58px;
  }

  .business-panel {
    padding: 4px 8px 0;
  }

  .business-copy p:last-child {
    text-align: center;
    font-size: 15px;
    line-height: 1.52;
  }

  .business-copy span {
    margin-top: 5px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .contact-grid {
    width: 100%;
    gap: 3px;
  }

  .contact-card {
    width: 100%;
    font-size: 12px;
  }

  .phone-shell {
    width: min(264px, 82vw);
    border-radius: 42px;
    padding: 7px;
  }

  .phone-screen {
    border-radius: 35px;
    padding: 42px 12px 16px;
  }

  .phone-screen::before {
    top: 12px;
    width: 76px;
    height: 23px;
  }

  .conversation-loop {
    gap: 7px;
    padding-bottom: 76px;
  }

  .message,
  .script-card {
    padding: 8px 11px;
    border-radius: 19px;
    font-size: 10.6px;
    line-height: 1.38;
  }

  .message.agent {
    gap: 6px;
  }

  .agent-choice-list {
    gap: 4px;
  }

  .agent-choice-list span {
    min-height: 20px;
    padding: 0 7px;
    font-size: 9.5px;
  }

  .insight-panel {
    padding: 8px 10px;
    border-radius: 19px;
  }

  .insight-panel strong {
    font-size: 11px;
  }

  .insight-panel span {
    font-size: 10px;
  }

  .script-card p {
    font-size: 12px;
  }

  .voice-input {
    right: 15px;
    bottom: 16px;
  }

  .voice-button {
    width: 52px;
    height: 52px;
  }

  .voice-core {
    width: 30px;
    height: 30px;
  }

  .features-section {
    padding: 76px 20px 48px;
  }

  .features-shell {
    row-gap: 14px;
  }

  .features-heading {
    gap: 3px;
  }

  .features-heading .eyebrow {
    margin-bottom: 0;
    font-size: 10.5px;
  }

  .features-backdrop {
    top: 38px;
    width: min(100%, 360px);
    font-size: clamp(54px, 18vw, 70px);
    line-height: 0.86;
  }

  .features-heading h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-card {
    gap: 5px;
    padding: 11px 0 10px;
  }

  .feature-card + .feature-card {
    margin-top: 0;
  }

  .feature-card h3 {
    font-size: 20px;
    line-height: 1.12;
  }

  .feature-card p {
    font-size: 12.6px;
    line-height: 1.44;
    font-weight: 720;
  }

  .feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }

  .feature-points li {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(18, 17, 22, 0.055);
    color: rgba(18, 17, 22, 0.62);
    font-size: 11.5px;
    line-height: 1;
  }

  .feature-points li::before {
    display: none;
  }

  .template-showcase {
    margin-top: 2px;
    border-radius: 24px;
  }

  .template-track {
    gap: 10px;
    padding: 0 54px 10px;
  }

  .template-card {
    flex-basis: min(42vw, 164px);
    border-radius: 20px;
    opacity: 0.8;
  }

  .site-footer {
    flex-direction: column;
  }

}

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

  .blur-segment {
    opacity: 1;
    transform: none;
  }

  .agent-step {
    opacity: 1;
    transform: none;
  }
}
