:root {
  color-scheme: dark;
  --bg: #07090a;
  --ink: #fff7e8;
  --muted: #aeb8b7;
  --line: rgba(255, 247, 232, 0.12);
  --panel: rgba(255, 247, 232, 0.055);
  --panel-strong: rgba(255, 247, 232, 0.085);
  --gold: #f7c96d;
  --gold-2: #ffe6a3;
  --cyan: #47d8d6;
  --blue: #6aa9ff;
  --coral: #ff7c5f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 58% 16%, rgba(71, 216, 214, 0.16), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(247, 201, 109, 0.13), transparent 28%),
    linear-gradient(116deg, rgba(255, 124, 95, 0.1), transparent 36%),
    linear-gradient(180deg, #0b0d0d 0%, #111411 46%, #07090a 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 22px, rgba(247, 201, 109, 0.045) 22px 23px, transparent 23px 44px),
    linear-gradient(0deg, transparent 0 42px, rgba(71, 216, 214, 0.035) 42px 43px, transparent 43px 86px);
  mask-image: radial-gradient(circle at 50% 22%, #000, transparent 68%);
  opacity: 0.8;
}

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

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

.site-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 9, 10, 0.76);
  border-bottom: 1px solid rgba(255, 247, 232, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-brand,
.site-footer-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand-logo {
  width: 174px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(71, 216, 214, 0.22));
}

.site-footer-brand img {
  width: 174px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(71, 216, 214, 0.22));
}

.site-nav-links,
.site-nav-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.site-nav-links {
  color: rgba(255, 247, 232, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.mobile-bottom-nav {
  display: none;
}

.site-language {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.05);
}

.site-language a {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 247, 232, 0.72);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.site-language a.active {
  background: var(--gold);
  color: #11100c;
}

.mobile-label {
  display: none;
}

.site-btn,
.doc-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11100c;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(247, 201, 109, 0.18);
  cursor: pointer;
  white-space: nowrap;
}

.site-btn.secondary {
  background: rgba(255, 247, 232, 0.06);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.nav-cta {
  display: none;
}

.site-main {
  padding-bottom: 24px;
}

.site-hero {
  min-height: min(820px, calc(100svh - 66px));
  display: grid;
  align-items: center;
  padding: 38px 0 56px;
}

.site-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.site-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #ffe2a1;
  font-size: 12px;
  font-weight: 860;
}

.site-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.site-hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(42px, 8.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.site-hero p {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

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

.site-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.site-chips span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 247, 232, 0.1);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.045);
  color: rgba(255, 247, 232, 0.74);
  font-size: 12px;
  font-weight: 780;
}

.site-phone-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.site-phone-stage::before {
  content: "";
  position: absolute;
  width: min(460px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247, 201, 109, 0.18), transparent 58%),
    conic-gradient(from 210deg, rgba(71, 216, 214, 0), rgba(71, 216, 214, 0.34), rgba(255, 124, 95, 0.22), rgba(71, 216, 214, 0));
  z-index: -2;
}

.site-phone-stage::after {
  content: "";
  position: absolute;
  width: min(520px, 96vw);
  height: 170px;
  bottom: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.62), transparent 68%);
  z-index: -1;
}

.site-phone {
  position: relative;
  width: min(284px, 70vw);
  padding: 8px;
  border-radius: 42px;
  background: linear-gradient(145deg, #fff7d7, #5f6259 18%, #060707 58%, #d8c180);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.56), 0 0 50px rgba(71, 216, 214, 0.12);
  transform: rotate(-2.5deg);
}

.site-phone-slider {
  width: 100%;
  aspect-ratio: 660 / 1434;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 34px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-phone-slider::-webkit-scrollbar {
  display: none;
}

.site-phone-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  overflow: hidden;
  background: #050607;
}

.site-phone-slider img,
.site-phone-video {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.site-phone-slider img {
  object-fit: contain;
}

.site-phone-video {
  object-fit: cover;
}

.site-video-audio-toggle {
  position: absolute;
  right: 10px;
  bottom: 12px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 999px;
  background: rgba(7, 9, 10, 0.58);
  color: var(--ink);
  font-size: 10px;
  font-weight: 760;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.site-video-audio-toggle:hover {
  background: rgba(18, 22, 24, 0.72);
}

.site-video-audio-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.site-video-audio-icon {
  font-size: 11px;
  line-height: 1;
}

.site-video-audio-text {
  letter-spacing: 0;
  white-space: nowrap;
}

.site-phone-dots {
  position: absolute;
  left: 50%;
  bottom: -24px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.site-phone-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.32);
}

.site-phone-dots span.active {
  width: 18px;
  background: var(--gold);
}

.site-mini-card {
  position: absolute;
  width: 154px;
  padding: 12px;
  border: 1px solid rgba(255, 247, 232, 0.12);
  border-radius: 8px;
  background: rgba(8, 10, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  color: rgba(255, 247, 232, 0.72);
  font-size: 12px;
  line-height: 1.38;
}

.site-mini-card strong,
.site-mini-card span {
  display: block;
}

.site-mini-card strong {
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 4px;
}

.site-mini-card.one {
  left: 0;
  top: 84px;
}

.site-mini-card.two {
  right: 0;
  bottom: 72px;
}

.site-section {
  padding: 54px 0;
}

.site-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.site-section-head h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 5.4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.site-section-head p,
.site-feature p,
.site-note,
details p,
.site-footer p,
.site-status span {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-feature-grid,
.site-step-grid,
.site-scene-grid,
.site-pricing-grid,
.site-credit-grid,
.site-faq-grid {
  display: grid;
  gap: 10px;
}

.site-flow-section,
.site-scenes-section {
  position: relative;
}

.site-flow-section::before,
.site-scenes-section::before {
  content: "";
  position: absolute;
  inset: 18px -18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 28%, rgba(71, 216, 214, 0.12), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(247, 201, 109, 0.1), transparent 32%);
  opacity: 0.78;
  pointer-events: none;
}

.site-flow-section::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(71, 216, 214, 0), rgba(71, 216, 214, 0.4), rgba(247, 201, 109, 0.34), rgba(71, 216, 214, 0));
  opacity: 0;
  pointer-events: none;
}

.site-feature,
.site-step,
.site-scene,
.site-price-card,
.site-credit,
details {
  border: 1px solid rgba(255, 247, 232, 0.1);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.048);
}

.site-feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.site-feature > div,
.site-step,
.site-scene,
.site-price-card {
  min-width: 0;
}

.site-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  color: #0b0d0d;
  font-weight: 950;
  font-size: 14px;
}

.site-feature h3,
.site-price-card h3 {
  margin: 0 0 5px;
  font-size: 17px;
  letter-spacing: 0;
}

.site-feature p,
.site-note {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-step {
  position: relative;
  min-height: 214px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.09), rgba(255, 247, 232, 0.032)),
    radial-gradient(circle at 16% 12%, rgba(71, 216, 214, 0.18), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(247, 201, 109, 0.12), transparent 30%),
    rgba(255, 247, 232, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.08), 0 20px 46px rgba(0, 0, 0, 0.14);
}

.site-step::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px;
  height: 28px;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(247, 201, 109, 0), rgba(247, 201, 109, 0.7), rgba(71, 216, 214, 0.55), rgba(247, 201, 109, 0)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.5) 0 2px, transparent 2px 10px);
  clip-path: polygon(0 62%, 9% 38%, 18% 68%, 27% 26%, 36% 72%, 45% 45%, 54% 63%, 63% 30%, 72% 69%, 81% 42%, 90% 58%, 100% 50%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 12px rgba(247, 201, 109, 0.22));
}

.site-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.site-step span,
.site-step em {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  font-style: normal;
}

.site-step span {
  border: 1px solid rgba(247, 201, 109, 0.45);
  background: rgba(247, 201, 109, 0.12);
  color: var(--gold-2);
}

.site-step em {
  background: rgba(71, 216, 214, 0.12);
  color: #8ffff1;
}

.site-concept {
  position: relative;
  height: 168px;
  margin: 16px 0 14px;
  border: 1px solid rgba(255, 247, 232, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 24%, rgba(71, 216, 214, 0.2), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(247, 201, 109, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.075), rgba(255, 247, 232, 0.018)),
    rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.site-concept::before,
.site-concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-concept::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0.02), rgba(7, 9, 10, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.07) 0 1px, transparent 1px 22px);
  opacity: 0.72;
}

.site-concept::after {
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 32px;
  background:
    linear-gradient(90deg, rgba(247, 201, 109, 0), rgba(247, 201, 109, 0.58), rgba(71, 216, 214, 0.5), rgba(247, 201, 109, 0)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.45) 0 2px, transparent 2px 11px);
  clip-path: polygon(0 68%, 8% 45%, 16% 72%, 24% 40%, 32% 66%, 40% 26%, 48% 62%, 56% 36%, 64% 72%, 72% 46%, 80% 63%, 88% 34%, 100% 54%, 100% 100%, 0 100%);
  opacity: 0.5;
}

.concept-glow,
.concept-orbit,
.concept-card,
.concept-line,
.concept-badge {
  position: absolute;
  display: block;
  z-index: 1;
}

.concept-glow {
  inset: 22px 20px auto auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 216, 214, 0.42), transparent 68%);
  filter: blur(1px);
}

.concept-orbit {
  left: 50%;
  top: 22px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 247, 232, 0.12);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-18deg);
}

.concept-orbit::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(247, 201, 109, 0.6);
}

.concept-card {
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.2), rgba(255, 247, 232, 0.035)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.concept-card.one {
  left: 18px;
  top: 24px;
  width: 76px;
  height: 96px;
  transform: rotate(-8deg);
}

.concept-card.two {
  left: 74px;
  top: 18px;
  width: 90px;
  height: 108px;
}

.concept-card.three {
  right: 22px;
  top: 50px;
  width: 66px;
  height: 82px;
  transform: rotate(9deg);
}

.concept-line {
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(71, 216, 214, 0), rgba(71, 216, 214, 0.8), rgba(247, 201, 109, 0));
  opacity: 0.55;
}

.concept-line.a {
  top: 54px;
}

.concept-line.b {
  top: 78px;
  left: 44px;
  opacity: 0.4;
}

.concept-line.c {
  top: 104px;
  right: 52px;
  opacity: 0.32;
}

.concept-badge {
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(71, 216, 214, 0.4), rgba(247, 201, 109, 0.3));
  color: #10120f;
  font-weight: 950;
}

.site-concept-step-music .concept-card,
.site-concept-scene-lyric .concept-card {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
}

.site-concept-step-music .concept-card.one {
  left: 40px;
  top: 54px;
  height: 54px;
  transform: none;
}

.site-concept-step-music .concept-card.two {
  left: 66px;
  top: 30px;
  height: 82px;
}

.site-concept-step-music .concept-card.three {
  left: 92px;
  top: 70px;
  height: 42px;
  transform: none;
}

.site-concept-step-music .concept-badge::before,
.site-concept-scene-lyric .concept-badge::before {
  content: "♫";
}

.site-concept-step-photos .concept-card.one,
.site-concept-step-photos .concept-card.two,
.site-concept-step-photos .concept-card.three,
.site-concept-scene-travel .concept-card.one,
.site-concept-scene-travel .concept-card.two,
.site-concept-scene-travel .concept-card.three {
  background:
    radial-gradient(circle at 50% 42%, rgba(247, 201, 109, 0.32), transparent 22%),
    linear-gradient(145deg, rgba(71, 216, 214, 0.24), rgba(255, 247, 232, 0.04));
}

.site-concept-step-photos .concept-card.one {
  left: 26px;
  top: 34px;
  width: 72px;
  height: 74px;
}

.site-concept-step-photos .concept-card.two {
  left: 94px;
  top: 26px;
  width: 82px;
  height: 86px;
}

.site-concept-step-photos .concept-card.three {
  right: 24px;
  top: 42px;
  width: 62px;
  height: 72px;
}

.site-concept-step-photos .concept-line,
.site-concept-scene-travel .concept-line {
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.48) 0 10px, transparent 10px 18px);
}

.site-concept-step-photos .concept-badge::before,
.site-concept-scene-travel .concept-badge::before {
  content: "+";
}

.site-concept-step-theme .concept-card.two,
.site-concept-scene-people .concept-card.two {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 247, 232, 0.3), transparent 22%),
    radial-gradient(circle at 50% 70%, rgba(71, 216, 214, 0.2), transparent 24%),
    rgba(0, 0, 0, 0.18);
}

.site-concept-step-theme .concept-card.one {
  left: 28px;
  top: 36px;
  width: 148px;
  height: 30px;
  transform: none;
}

.site-concept-step-theme .concept-card.two {
  left: 54px;
  top: 78px;
  width: 112px;
  height: 42px;
  border-radius: 999px;
}

.site-concept-step-theme .concept-card.three {
  right: 28px;
  top: 38px;
  width: 58px;
  height: 88px;
}

.site-concept-step-theme .concept-line.a {
  top: 52px;
}

.site-concept-step-theme .concept-line.b {
  top: 93px;
}

.site-concept-step-theme .concept-badge::before,
.site-concept-scene-people .concept-badge::before {
  content: "CC";
  font-size: 13px;
}

.site-concept-step-export .concept-card.two,
.site-concept-scene-social .concept-card.two {
  width: 72px;
  height: 112px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.12), transparent 42%),
    radial-gradient(circle at 50% 56%, rgba(71, 216, 214, 0.22), transparent 32%),
    rgba(0, 0, 0, 0.22);
}

.site-concept-step-export .concept-card.one {
  left: 44px;
  top: 28px;
  width: 64px;
  height: 108px;
  border-radius: 18px;
  transform: rotate(-5deg);
}

.site-concept-step-export .concept-card.two {
  left: 102px;
  top: 20px;
  width: 74px;
  height: 120px;
}

.site-concept-step-export .concept-card.three {
  right: 30px;
  top: 58px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.site-concept-step-export .concept-line {
  height: 4px;
  background: linear-gradient(90deg, rgba(71, 216, 214, 0), var(--cyan), var(--gold), rgba(247, 201, 109, 0));
}

.site-concept-step-export .concept-badge::before,
.site-concept-scene-social .concept-badge::before {
  content: "↑";
}

.site-concept-scene-lyric .concept-line {
  height: 5px;
}

.site-concept-scene-people .concept-card.one,
.site-concept-scene-people .concept-card.three {
  border-radius: 50%;
}

.site-concept-scene-social .concept-card.one {
  width: 54px;
  height: 86px;
  border-radius: 16px;
}

.site-step strong,
.site-scene {
  font-size: 16px;
  font-weight: 860;
}

.site-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.site-step p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.site-scene {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, rgba(71, 216, 214, 0.15), rgba(247, 201, 109, 0.1)),
    #121615;
  box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.08), 0 22px 54px rgba(0, 0, 0, 0.18);
}

.site-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0.08) 0%, rgba(7, 9, 10, 0.25) 38%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 9, 10, 0.42), transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.06) 0 1px, transparent 1px 32px);
  pointer-events: none;
  z-index: 1;
}

.site-scene::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 58px;
  height: 78px;
  border-radius: 10px;
  border: 1px solid rgba(255, 247, 232, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.2), rgba(255, 247, 232, 0.02)),
    radial-gradient(circle at 50% 34%, rgba(247, 201, 109, 0.28), transparent 34%);
  opacity: 0.54;
  transform: rotate(5deg);
  z-index: 1;
}

.site-scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  filter: saturate(0.94) contrast(1.04);
}

.site-scene.scene-2 {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, rgba(255, 124, 95, 0.18), rgba(106, 169, 255, 0.1)),
    #121615;
}

.site-scene.scene-3 {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, rgba(247, 201, 109, 0.14), rgba(71, 216, 214, 0.12)),
    #121615;
}

.site-scene.scene-4 {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, rgba(106, 169, 255, 0.16), rgba(247, 201, 109, 0.12)),
    #121615;
}

.site-scene span,
.site-scene strong,
.site-scene p {
  position: relative;
  z-index: 1;
}

.site-scene span {
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 999px;
  color: rgba(255, 247, 232, 0.7);
  background: rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 850;
}

.site-scene strong {
  font-size: 19px;
}

.site-scene p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.site-price-card {
  padding: 20px;
}

.site-price-card.featured {
  border-color: rgba(247, 201, 109, 0.5);
  background:
    linear-gradient(135deg, rgba(247, 201, 109, 0.16), rgba(255, 247, 232, 0.05) 48%),
    rgba(255, 247, 232, 0.05);
}

.site-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #11100c;
  font-size: 12px;
  font-weight: 920;
}

.site-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 14px;
}

.site-price strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}

.site-price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.site-price-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: 1px;
}

.site-credit-grid {
  margin-top: 12px;
}

.site-credit {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 860;
}

.site-credit span {
  color: var(--gold);
}

.site-note {
  margin-top: 12px;
}

details {
  padding: 16px;
}

summary {
  cursor: pointer;
  font-weight: 860;
}

details p {
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid rgba(255, 247, 232, 0.08);
  padding: 26px 0 38px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.site-footer-brand {
  margin-bottom: 8px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 247, 232, 0.72);
  font-size: 13px;
}

.site-status {
  display: grid;
  gap: 4px;
  font-size: 13px;
}

.doc-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(247, 201, 109, 0.1), transparent 36%),
    radial-gradient(circle at 85% 0%, rgba(71, 216, 214, 0.12), transparent 30%),
    #07090a;
}

.doc-wrap {
  width: min(880px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
  position: relative;
  z-index: 1;
}

.doc-wrap.narrow {
  width: min(720px, calc(100vw - 32px));
}

.doc-card {
  width: 100%;
  max-width: 100%;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid rgba(255, 247, 232, 0.1);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.052);
  overflow-wrap: break-word;
}

.doc-card h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1.06;
}

.doc-meta {
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.doc-card p,
.doc-card li {
  color: var(--muted);
  line-height: 1.68;
  overflow-wrap: break-word;
  word-break: normal;
}

.doc-card section {
  margin-top: 30px;
}

.doc-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.doc-card ul {
  padding-left: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.form-field label {
  color: rgba(255, 247, 232, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.form-row span {
  min-width: 0;
}

.hidden-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.status-message {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.status-message.success {
  color: #bdf7d8;
  background: rgba(71, 216, 133, 0.1);
  border: 1px solid rgba(71, 216, 133, 0.22);
}

.status-message.error {
  color: #ffd0c8;
  background: rgba(255, 124, 95, 0.1);
  border: 1px solid rgba(255, 124, 95, 0.22);
}

.status-ok .status-message.success,
.status-err .status-message.error {
  display: block;
}

@media (min-width: 900px) {
  .site-nav-links,
  .site-nav-actions,
  .nav-cta {
    display: flex;
  }

  .site-hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .site-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-feature {
    grid-template-columns: 1fr;
    min-height: 164px;
  }

  .site-concept {
    height: 138px;
  }

  .site-step-grid,
  .site-scene-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-flow-section::after {
    opacity: 0.52;
  }

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

  .site-credit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-credit {
    display: block;
  }

  .site-credit span {
    display: block;
    margin-top: 6px;
  }
}

@media (min-width: 1140px) {
  .site-phone-stage {
    min-height: 610px;
  }

  .site-phone {
    width: 330px;
  }

  .site-mini-card.one {
    left: 28px;
  }

  .site-mini-card.two {
    right: 8px;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .site-shell {
    width: calc(100vw - 32px);
    max-width: 420px;
  }

  .site-nav-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .site-language a {
    padding: 7px 9px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .site-nav-actions .nav-cta {
    display: none;
  }

  .site-nav-inner {
    display: flex;
    justify-content: space-between;
    min-height: 62px;
    gap: 10px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand-logo {
    width: 138px;
    height: 32px;
  }

  .site-language {
    display: inline-flex;
  }

  .site-language a {
    min-width: 34px;
    text-align: center;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding: 5px;
    border: 1px solid rgba(255, 247, 232, 0.12);
    border-radius: 999px;
    background: rgba(7, 9, 10, 0.82);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    padding: 10px 2px;
    border-radius: 999px;
    color: rgba(255, 247, 232, 0.78);
    font-size: 11px;
    font-weight: 850;
    text-align: center;
    white-space: nowrap;
  }

  .site-hero {
    min-height: auto;
    padding: 28px 0 46px;
  }

  .site-hero-grid {
    gap: 10px;
  }

  .site-eyebrow {
    margin-bottom: 12px;
  }

  .site-hero h1 {
    max-width: 350px;
    font-size: 42px;
    line-height: 1.06;
  }

  .site-hero p {
    max-width: 340px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .site-hero-actions .site-btn {
    width: 100%;
  }

  .site-chips {
    margin-top: 16px;
    gap: 7px;
  }

  .site-chips span {
    padding: 7px 9px;
    font-size: 11px;
  }

  .site-feature {
    padding: 15px;
  }

  .site-phone-stage {
    min-height: 430px;
    margin-top: 2px;
    overflow: hidden;
  }

  .site-phone-stage::before {
    width: min(340px, 86vw);
  }

  .site-phone-stage::after {
    width: min(340px, 86vw);
    height: 118px;
    bottom: 22px;
  }

  .site-phone {
    width: min(202px, 54vw);
    padding: 7px;
    border-radius: 34px;
  }

  .site-phone-slider {
    border-radius: 28px;
  }

  .site-video-audio-toggle {
    right: 8px;
    bottom: 8px;
    min-height: 24px;
    padding: 0 8px;
    gap: 4px;
    font-size: 9px;
  }

  .site-mini-card {
    display: none;
  }

  .site-section {
    padding: 42px 0;
  }

  .site-section-head h2 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.1;
  }

  .site-scene {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .doc-wrap {
    width: calc(100vw - 28px);
    padding: 36px 0 64px;
  }

  .doc-card {
    padding: 22px 24px;
  }

  .doc-card h1 {
    font-size: 38px;
  }

  .doc-meta {
    line-height: 1.55;
  }

  .doc-card h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .form-row {
    align-items: stretch;
  }

  .form-row .doc-btn {
    width: 100%;
  }
}
