: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.94;
  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;
}

.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;
}

.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(280px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  padding: clamp(76px, 10vw, 140px) clamp(20px, 8vw, 160px);
  background: transparent;
}

.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: 14px;
  max-width: 700px;
}

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

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

.value-card:focus-visible {
  outline: 1px solid rgba(18, 17, 22, 0.22);
  outline-offset: 8px;
}

.value-card:active,
.value-card.is-pressed {
  transform: translateY(-1px) scale(1.04);
}

.value-copy em,
.value-copy strong,
.value-copy 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.84);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.38;
  font-weight: 850;
}

.value-copy span {
  color: var(--ink-body);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
}

.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: center;
  width: min(390px, 90vw);
  aspect-ratio: 390 / 780;
  border-radius: 48px;
  padding: 13px;
  background: #050507;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 255, 101, 0.34), transparent 24%),
    linear-gradient(180deg, #fbfaff, #f1eafd 58%, #ffffff);
  padding: 26px 18px;
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.agent-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #050507;
  overflow: hidden;
}

.agent-avatar img {
  width: 30px;
  height: 30px;
  display: block;
}

.agent-header strong,
.agent-header small {
  display: block;
  text-align: left;
}

.agent-header small {
  margin-top: 2px;
  color: var(--muted);
}

.agent-thread {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 18px;
}

.message,
.script-card {
  border-radius: 20px;
  padding: 13px 14px;
  line-height: 1.48;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(58, 36, 78, 0.1);
}

.message.user {
  margin-left: 42px;
  background: var(--dark-ink);
  color: var(--white);
}

.message.user.selected {
  align-self: flex-end;
  min-width: 92px;
  margin-left: 0;
  padding: 11px 16px;
  text-align: center;
}

.message.agent {
  display: grid;
  gap: 9px;
  margin-right: 18px;
  background: rgba(255, 255, 255, 0.82);
}

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

.agent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 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: 12px;
  line-height: 1.35;
  font-weight: 520;
}

.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;
  background: linear-gradient(135deg, var(--acid), #ffffff 76%);
}

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

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

.voice-input {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.92);
  color: var(--white);
}

.wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 34px;
}

.wave i {
  display: block;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: var(--acid);
  animation: voiceWave 1.1s ease-in-out infinite;
}

.wave i:nth-child(2) { animation-delay: 0.1s; }
.wave i:nth-child(3) { animation-delay: 0.2s; }
.wave i:nth-child(4) { animation-delay: 0.3s; }
.wave i:nth-child(5) { animation-delay: 0.4s; }
.wave i:nth-child(6) { animation-delay: 0.5s; }
.wave i:nth-child(7) { animation-delay: 0.6s; }

.features-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(58px, 6vw, 78px) 0 clamp(58px, 6vw, 78px);
  background: transparent;
  overflow: hidden;
}

.features-heading {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: 0 clamp(20px, 6vw, 110px);
  text-align: center;
}

.features-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  color: rgba(18, 17, 22, 0.038);
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 900;
  line-height: 0.78;
  white-space: nowrap;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 66px);
  padding: 0 clamp(20px, 6vw, 110px);
  background: transparent;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: clamp(6px, 0.72vw, 10px);
  min-width: 0;
  padding: 0;
  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(24px, 2.1vw, 32px);
  line-height: 1.16;
  font-weight: 900;
}

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

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

.feature-points li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-body);
  font-size: 15px;
  line-height: 1.42;
  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 {
  margin-top: clamp(28px, 4vw, 52px);
  overflow: hidden;
}

.template-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 12px;
}

.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(14px, 1.8vw, 24px);
  padding: 0 clamp(20px, 4vw, 70px);
  animation: template-scroll 54s linear infinite;
  will-change: transform;
}

.template-marquee:hover .template-track {
  animation-play-state: paused;
}

.template-card {
  flex: 0 0 clamp(160px, 14vw, 220px);
  aspect-ratio: 640 / 853;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2.2vw, 30px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(20, 20, 28, 0.1);
  opacity: 0.72;
  transform: translateZ(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.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);
}

@keyframes template-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(8px, 1vw, 14px)));
  }
}

.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 {
  width: min(980px, 100%);
  transform: translateY(-3vh);
}

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

.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);
}

.contact-section {
  position: absolute;
  right: clamp(20px, 6vw, 110px);
  bottom: clamp(22px, 3.2vw, 40px);
  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 voiceWave {
  0%, 100% {
    height: 10px;
    opacity: 0.62;
  }
  50% {
    height: 32px;
    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);
  }
}

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

  .nav-links {
    display: none;
  }

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

  .phone-copy {
    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;
  }

  .features-section {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .features-heading {
    margin-bottom: 24px;
  }

  .features-backdrop {
    font-size: clamp(62px, 19vw, 92px);
  }

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

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

  .feature-card {
    gap: 7px;
  }

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

  .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: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

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

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

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

  .inspiration {
    display: grid;
    align-content: center;
    place-items: stretch;
  }

  .inspiration-main {
    transform: none;
  }

  .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) {
  .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;
  }

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

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

  h2 {
    font-size: 30px;
  }

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

  .value-copy {
    gap: 18px;
  }

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

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

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

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

  .value-copy strong {
    font-size: 17px;
  }

  .value-copy span {
    font-size: 13.5px;
    line-height: 1.68;
    font-weight: 400;
  }

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

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

  .contact-grid {
    width: 100%;
  }

  .contact-card {
    width: 100%;
  }

  .phone-stage {
    padding-left: 18px;
    padding-right: 18px;
  }

  .phone-shell {
    width: min(350px, 94vw);
    border-radius: 40px;
  }

  .phone-screen {
    border-radius: 30px;
    padding: 20px 14px;
  }

  .message,
  .script-card {
    font-size: 14px;
  }

  .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;
  }
}
