:root {
  --bg: #0d0f12;
  --panel: #171b20;
  --panel-2: #20262d;
  --text: #f7f4ee;
  --muted: #b9c0c8;
  --soft: #838b95;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #a78bff;
  --brand-2: #7dd3fc;
  --danger: #ffcf73;
  --ok: #bda7ff;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(167, 139, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 80% 8%, rgba(125, 211, 252, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 100%);
  background-size: auto, auto, 28px 28px;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 15, 18, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 15, 18, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.header-cta {
  border-radius: 6px;
  padding: 9px 12px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.header-cta {
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 800;
}

.lang-switcher {
  flex: 0 0 auto;
}

.lang-switcher select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 8px;
}

.lang-switcher select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 24px 56px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0.2;
  filter: saturate(0.82) brightness(0.58);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13,15,18,0.98), rgba(13,15,18,0.72) 42%, rgba(13,15,18,0.18)),
    linear-gradient(180deg, transparent 40%, var(--bg));
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

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

.hero-demo {
  min-width: 0;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #0b0d10;
  box-shadow: var(--shadow);
}

.app-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.app-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.app-window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.app-window-body img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-demo-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.hero-demo-note strong {
  flex: 0 0 auto;
}

.hero-demo-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

:lang(ja) h1,
:lang(ko) h1,
:lang(zh-Hans) h1 {
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(247, 244, 238, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.hero-actions,
.pro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
}

.button-primary {
  background: var(--brand);
  color: #100b22;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-proof li,
.effect-rail span,
.tech-card li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 750;
}

.proof-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 27, 32, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 680px;
  font-size: 18px;
}

.show-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 16px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.demo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.demo-card-large {
  grid-row: span 2;
}

.demo-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050607;
}

.demo-card:not(.demo-card-large) video {
  aspect-ratio: 16 / 11;
}

.demo-card div {
  padding: 18px;
}

.demo-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.product-shot-large {
  grid-row: span 2;
}

.product-shot img,
.product-shot video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050607;
}

.product-shot:not(.product-shot-large) img,
.product-shot:not(.product-shot-large) video {
  aspect-ratio: 16 / 11;
}

figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
}

figcaption strong {
  font-size: 18px;
}

figcaption span {
  color: var(--muted);
  line-height: 1.45;
}

.workflow-grid,
.use-grid,
.mode-grid,
.privacy-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

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

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

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

.use-card,
.workflow-step,
.mode-card,
.privacy-item,
.faq-item,
.tech-card,
.pro-card,
.batch-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.use-card,
.workflow-step,
.mode-card,
.privacy-item,
.faq-item {
  min-height: 210px;
  padding: 22px;
}

.workflow-step {
  min-height: 240px;
  background:
    linear-gradient(160deg, rgba(167, 139, 255, 0.16), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.workflow-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 56px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #100b22;
  font-weight: 950;
}

.mode-card span {
  display: inline-block;
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.mode-thumb {
  overflow: hidden;
  margin: -22px -22px 18px;
  border-bottom: 1px solid var(--line);
  background: #050607;
}

.mode-thumb img,
.mode-thumb video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.9;
}

.simple-hero .hero-content {
  padding-bottom: 0;
}

.method-showcase,
.studio-grid {
  display: grid;
  gap: 16px;
}

.method-showcase {
  grid-template-columns: repeat(4, 1fr);
}

.method-card,
.studio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.method-card video,
.method-card img,
.studio-media video,
.studio-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050607;
}

.method-card div,
.studio-copy {
  padding: 20px;
}

.method-card span,
.studio-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safety-strip {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(167, 139, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(167, 139, 255, 0.1);
}

.safety-strip strong {
  font-size: 22px;
}

.safety-strip p {
  margin: 0;
}

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

.studio-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
}

.studio-card-wide .studio-media img {
  height: 100%;
  min-height: 420px;
}

.studio-batch {
  display: grid;
  min-height: 260px;
  align-items: stretch;
  padding: 12px;
  background: #050607;
}

.studio-batch .batch-board {
  align-self: stretch;
}

.trust-pro {
  display: grid;
  gap: 16px;
}

.local-design {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 28%, rgba(167, 139, 255, 0.13), transparent 23rem),
    radial-gradient(circle at 75% 42%, rgba(125, 211, 252, 0.08), transparent 22rem),
    rgba(255,255,255,0.025);
  overflow: hidden;
}

.local-panel {
  display: grid;
  align-content: space-between;
  min-height: 620px;
  padding: clamp(28px, 5vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.local-panel:first-child {
  border-left: 0;
}

.local-panel-main {
  gap: 44px;
}

.local-panel h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.local-panel h3 {
  max-width: 360px;
  font-size: clamp(28px, 3vw, 42px);
}

.local-panel p {
  max-width: 430px;
  font-size: 18px;
}

.local-visual {
  position: relative;
  min-height: 250px;
}

.lottie-mark {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(167, 139, 255, 0.36);
  border-radius: 50%;
  background: #d9b3ff;
  color: #1a1028;
  padding: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 42px rgba(167, 139, 255, 0.25);
  animation: lottie-float 4.8s ease-in-out infinite;
}

.lottie-cloud {
  top: 10%;
  left: 8%;
}

.lottie-chip {
  top: 8%;
  left: 6%;
  animation-delay: 0.6s;
}

.lottie-shield {
  top: 4%;
  right: 6%;
  animation-delay: 1.1s;
}

.local-visual-rings {
  display: grid;
  place-items: center;
}

.privacy-orbit,
.privacy-orbit::before,
.privacy-orbit::after {
  position: absolute;
  border: 1px solid rgba(167, 139, 255, 0.75);
  border-radius: 50%;
}

.privacy-orbit {
  width: 160px;
  height: 74px;
  animation: orbit-breathe 4.2s ease-in-out infinite;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  inset: 14px -28px;
}

.privacy-orbit::after {
  inset: 30px -56px;
  opacity: 0.5;
  animation: orbit-fade 4.2s ease-in-out infinite;
}

.privacy-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: #d9b3ff;
  color: #160d24;
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 0 42px rgba(167, 139, 255, 0.38);
  animation: core-pulse 2.8s ease-in-out infinite;
}

.local-visual-rings span {
  position: absolute;
  right: 8%;
  bottom: 12%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 900;
}

.local-visual-pipeline {
  display: grid;
  align-content: center;
  gap: 18px;
}

.local-visual-pipeline::before {
  content: "";
  position: absolute;
  inset: 50% 10% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167,139,255,0.22), var(--brand), var(--brand-2), rgba(167,139,255,0.22), transparent);
  background-size: 220% 100%;
  transform: translateY(-50%);
  animation: pipeline-sweep 4.6s linear infinite;
}

.local-visual-pipeline span {
  position: relative;
  width: max-content;
  border: 1px solid rgba(167, 139, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  color: var(--text);
  font-weight: 850;
  animation: pipeline-node 4.6s ease-in-out infinite;
}

.local-visual-pipeline span:nth-of-type(2) {
  justify-self: center;
  animation-delay: 0.25s;
}

.local-visual-pipeline span:nth-of-type(3) {
  justify-self: end;
  animation-delay: 0.5s;
}

.local-visual-status {
  display: grid;
  align-content: center;
  gap: 12px;
}

.local-visual-status div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  padding: 15px 16px;
  animation: status-glow 5s ease-in-out infinite;
}

.local-visual-status div:nth-of-type(2) {
  animation-delay: 0.35s;
}

.local-visual-status div:nth-of-type(3) {
  animation-delay: 0.7s;
}

.local-visual-status strong {
  color: var(--text);
}

.local-visual-status em {
  border-radius: 999px;
  background: rgba(167, 139, 255, 0.18);
  color: #ddd4ff;
  padding: 6px 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

/* Four-block local-first section */
.local-design {
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.95fr) minmax(440px, 1.35fr);
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  min-height: 730px;
}

.local-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-width: 0;
  padding: clamp(28px, 4.8vw, 58px);
  overflow: hidden;
}

.local-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 38%, rgba(167,139,255,0.08), transparent 18rem);
}

.local-upload {
  grid-column: 1;
  grid-row: 1 / 3;
}

.local-native {
  grid-column: 2;
  grid-row: 1 / 3;
  border-left: 1px solid rgba(255,255,255,0.14);
}

.local-stream {
  grid-column: 3;
  grid-row: 1;
  align-content: center;
  gap: 18px;
  border-left: 1px solid rgba(255,255,255,0.14);
}

.local-security {
  grid-column: 3;
  grid-row: 2;
  grid-template-columns: minmax(210px, 0.9fr) minmax(170px, 0.9fr);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
}

.local-stream,
.local-security {
  padding: clamp(26px, 2.5vw, 34px);
}

.local-copy {
  position: relative;
  z-index: 2;
}

.local-copy-top {
  align-self: start;
  text-align: center;
}

.local-card h2 {
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.03;
}

.local-card h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.08;
}

.local-stream h3,
.local-security h3 {
  font-size: clamp(32px, 3vw, 46px);
}

.local-stream .local-copy {
  order: -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
}

.local-stream .local-copy h3 {
  max-width: 320px;
  margin-bottom: 0;
  font-size: clamp(34px, 2.7vw, 42px);
}

.local-stream .local-copy p {
  max-width: 260px;
  font-size: 16px;
  line-height: 1.45;
}

.local-card p {
  max-width: 430px;
  margin-bottom: 0;
  font-size: 18px;
}

.local-upload .local-copy {
  align-self: end;
}

.local-upload h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.local-visual {
  z-index: 1;
}

.animated-icon {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(167,139,255,0.38);
  border-radius: 50%;
  background: #d9b3ff;
  color: #190f29;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.32), 0 0 42px rgba(167,139,255,0.26);
  animation: lottie-float 4.7s ease-in-out infinite;
}

.upload-icon {
  top: 8%;
  left: 4%;
}

.chip-icon {
  top: 54%;
  left: 10%;
}

.camera-icon {
  top: 2%;
  left: 2%;
}

.shield-icon {
  top: -2%;
  left: 2%;
}

.upload-visual {
  min-height: 310px;
}

.mac-device {
  position: absolute;
  left: 50%;
  top: 13%;
  width: min(72%, 260px);
  transform: translateX(-50%);
}

.mac-screen {
  display: grid;
  gap: 12px;
  min-height: 178px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(167,139,255,0.38);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(167,139,255,0.18), rgba(255,255,255,0.06)),
    #15141c;
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

.mac-screen span {
  color: var(--brand);
  font-size: 15px;
  font-weight: 950;
}

.mac-screen strong {
  max-width: 160px;
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
}

.zero-upload {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  padding: 6px 12px 6px 8px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.zero-upload b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #d9b3ff;
  color: #160d24;
  font-size: 22px;
  font-weight: 950;
}

.zero-upload small {
  max-width: 72px;
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.mac-base {
  width: 42%;
  height: 10px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  background: rgba(255,255,255,0.16);
}

.local-files {
  position: absolute;
  left: 0;
  bottom: 8%;
  display: grid;
  gap: 9px;
}

.local-files span {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  animation: file-float 4.8s ease-in-out infinite;
}

.local-files span:nth-child(2) {
  margin-left: 26px;
  animation-delay: 0.25s;
}

.local-files span:nth-child(3) {
  margin-left: 10px;
  animation-delay: 0.5s;
}

.blocked-cloud {
  position: absolute;
  right: 0;
  bottom: 9%;
  display: grid;
  justify-items: center;
  gap: 4px;
  border: 1px solid rgba(167,139,255,0.3);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  padding: 12px 14px;
  animation: lottie-float 5s ease-in-out infinite;
}

.blocked-cloud svg {
  width: 42px;
  height: 42px;
  color: #d9b3ff;
}

.blocked-cloud strong {
  font-size: 14px;
}

.blocked-cloud em {
  color: var(--brand);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.native-visual {
  min-height: 390px;
  display: grid;
  align-items: center;
}

.native-track {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 28px 0;
}

.native-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167,139,255,0.28), var(--brand), var(--brand-2), transparent);
  background-size: 220% 100%;
  transform: translateY(-50%);
  animation: pipeline-sweep 4.8s linear infinite;
}

.native-track span {
  position: relative;
  width: max-content;
  justify-self: start;
  border: 1px solid rgba(167,139,255,0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  padding: 14px 24px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
  animation: pipeline-node 4.8s ease-in-out infinite;
}

.native-track span:nth-child(2) {
  justify-self: center;
  animation-delay: 0.25s;
}

.native-track span:nth-child(3) {
  justify-self: end;
  animation-delay: 0.5s;
}

.stream-visual {
  min-height: 205px;
  display: grid;
  align-items: center;
}

.virtual-camera-flow {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.virtual-camera-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46px;
  bottom: 78px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  opacity: 0.6;
  transform: translateX(-50%);
  animation: flow-pulse 2.8s ease-in-out infinite;
}

.raw-source,
.oculta-output {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  border: 1px solid rgba(167,139,255,0.34);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  padding: 8px 11px;
}

.raw-source {
  color: #d9b3ff;
  background: rgba(15,17,22,0.7);
}

.raw-source svg {
  width: 24px;
  height: 24px;
}

.oculta-output img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.raw-source strong,
.oculta-output strong {
  white-space: nowrap;
  color: var(--text);
  font-size: 14px;
}

.raw-source span,
.oculta-output span {
  border-radius: 999px;
  background: rgba(167,139,255,0.18);
  color: #e9ddff;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-icons {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 300px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.app-icon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-height: 70px;
  justify-items: center;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  color: white;
  font-weight: 950;
  padding: 9px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  animation: app-pop 4.2s ease-in-out infinite;
}

.app-icon svg {
  width: 28px;
  height: 28px;
}

.app-icon strong {
  color: white;
  font-size: 12px;
}

.app-icon.zoom { background: #2d8cff; }
.app-icon.meet { background: linear-gradient(135deg, #00ac47, #fbbc04 55%, #4285f4); color: #4285f4; animation-delay: .18s; }
.app-icon.teams { background: #6264a7; animation-delay: .36s; }
.app-icon.obs { background: #2b2b31; animation-delay: .54s; }

.security-visual {
  min-height: 250px;
  display: grid;
  align-content: center;
}

.security-status {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.security-status div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  padding: 17px 18px;
  animation: status-glow 5s ease-in-out infinite;
}

.security-status div:nth-child(2) {
  animation-delay: 0.35s;
}

.security-status div:nth-child(3) {
  animation-delay: 0.7s;
}

.security-status strong {
  color: var(--text);
  font-size: 18px;
}

.security-status span {
  border-radius: 999px;
  background: rgba(167,139,255,0.18);
  color: #ddd4ff;
  padding: 8px 12px;
  font-weight: 950;
}

@keyframes bar-rise {
  0%, 100% { transform: scaleY(0.78); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

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

@keyframes file-float {
  0%, 100% { transform: translateX(0); opacity: 0.78; }
  50% { transform: translateX(10px); opacity: 1; }
}

@keyframes flow-pulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scaleY(0.86); }
  50% { opacity: 0.9; transform: translateX(-50%) scaleY(1); }
}

@keyframes app-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes lottie-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes orbit-breathe {
  0%, 100% { transform: scale(1); opacity: 0.78; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes orbit-fade {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

@keyframes core-pulse {
  0%, 100% { box-shadow: 0 0 34px rgba(167, 139, 255, 0.28); }
  50% { box-shadow: 0 0 70px rgba(167, 139, 255, 0.5); }
}

@keyframes pipeline-sweep {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@keyframes pipeline-node {
  0%, 100% { transform: translateY(0); border-color: rgba(167, 139, 255, 0.28); }
  50% { transform: translateY(-6px); border-color: rgba(167, 139, 255, 0.7); }
}

@keyframes status-glow {
  0%, 100% { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.07); }
  50% { border-color: rgba(167,139,255,0.42); background: rgba(167,139,255,0.1); }
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.batch-board {
  overflow: hidden;
}

.batch-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.batch-row:last-child {
  border-bottom: 0;
}

.batch-row span {
  color: var(--muted);
}

.batch-row em {
  justify-self: start;
  border-radius: 999px;
  background: rgba(167, 139, 255, 0.16);
  color: #ddd4ff;
  padding: 6px 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.batch-row .warn {
  background: rgba(255, 207, 115, 0.16);
  color: var(--danger);
}

.batch-row .done {
  background: rgba(141, 240, 163, 0.14);
  color: var(--ok);
}

.batch-head {
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.privacy-copy {
  position: sticky;
  top: 120px;
}

.tech-card,
.pro-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
}

.tech-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-card li {
  color: var(--muted);
}

.faq-item {
  min-height: 170px;
}

.pro-card {
  background:
    linear-gradient(135deg, rgba(167, 139, 255, 0.18), rgba(125, 211, 252, 0.08)),
    var(--panel);
}

.pro-card p {
  max-width: 680px;
}

.support-hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: 72svh;
  margin: 0 auto;
  padding: 132px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.support-hero-copy h1 {
  max-width: 820px;
}

.support-status,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.support-status {
  display: grid;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.support-status div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.support-status div:last-child {
  border-bottom: 0;
}

.support-status span,
.support-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-status strong {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}

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

.support-card {
  min-height: 280px;
  padding: 24px;
}

.support-card span {
  display: block;
  margin-bottom: 34px;
}

.support-card p {
  margin-bottom: 0;
}

.support-contact {
  padding-top: 46px;
}

.support-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(142, 215, 198, 0.12), rgba(242, 193, 107, 0.05)),
    var(--panel);
  padding: clamp(24px, 5vw, 44px);
}

.support-form-panel h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.support-form {
  display: grid;
  gap: 16px;
}

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

.support-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}

.support-form label span {
  font-size: 14px;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
}

.support-form textarea {
  min-height: 170px;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: rgba(183, 192, 203, 0.68);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(142, 215, 198, 0.58);
  outline: 2px solid rgba(142, 215, 198, 0.22);
  outline-offset: 2px;
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.file-drop {
  border: 1px dashed rgba(142, 215, 198, 0.36);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  padding: 16px;
  cursor: pointer;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.file-drop strong {
  font-size: 18px;
}

.file-drop small,
.file-list,
.form-security p,
.form-status {
  color: var(--muted);
  line-height: 1.45;
}

.file-list {
  margin: -4px 0 0;
  font-size: 14px;
}

.file-list[data-type="error"],
.form-status[data-type="error"] {
  color: var(--danger);
}

.file-list[data-type="ok"],
.form-status[data-type="success"] {
  color: var(--ok);
}

.form-security {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  padding: 14px;
}

.form-security p,
.form-status {
  margin: 0;
  font-size: 14px;
}

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

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.privacy-hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: 72svh;
  margin: 0 auto;
  padding: 132px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.privacy-hero-copy h1 {
  max-width: 880px;
}

.privacy-summary {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(167, 139, 255, 0.14), rgba(125, 211, 252, 0.06)),
    rgba(255,255,255,0.035);
  box-shadow: var(--shadow);
}

.privacy-summary div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.privacy-summary div:last-child {
  border-bottom: 0;
}

.privacy-summary span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-summary strong {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}

.privacy-legal {
  padding-top: 46px;
}

.legal-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
}

.legal-panel section {
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.legal-panel section:last-child {
  border-bottom: 0;
}

.legal-panel h3 {
  max-width: 760px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-panel p {
  max-width: 880px;
  margin-bottom: 12px;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-contact a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  padding: 10px 13px;
  color: var(--text);
  font-weight: 850;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 80px auto 0;
  padding: 32px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.site-footer a:hover {
  color: var(--text);
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 600ms ease, opacity 600ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

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

  .hero-demo {
    order: 2;
  }

  .hero-demo-note {
    flex-direction: column;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13,15,18,0.58), var(--bg) 86%),
      linear-gradient(90deg, rgba(13,15,18,0.96), rgba(13,15,18,0.55));
  }

  .proof-strip,
  .show-grid,
  .demo-grid,
  .method-showcase,
  .studio-grid,
  .support-hero,
  .support-grid,
  .support-form-panel,
  .privacy-hero,
  .workflow-grid,
  .use-grid,
  .mode-grid,
  .privacy,
  .privacy-grid,
  .faq-grid,
  .split,
  .tech-card,
  .pro-card {
    grid-template-columns: 1fr;
  }

  .studio-card-wide,
  .local-design,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .local-design {
    min-height: 0;
  }

  .local-panel {
    min-height: 440px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .local-panel:first-child {
    border-top: 0;
  }

  .local-card,
  .local-upload,
  .local-native,
  .local-stream,
  .local-security {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .local-upload {
    border-top: 0;
  }

  .local-stream,
  .local-security {
    align-items: stretch;
  }

  .studio-card-wide .studio-media img {
    min-height: 0;
  }

  .safety-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .product-shot-large {
    grid-row: auto;
  }

  .demo-card-large {
    grid-row: auto;
  }

  .privacy-copy {
    position: static;
  }

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

  .support-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .privacy-hero {
    min-height: auto;
    padding-top: 112px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .header-cta {
    padding-inline: 10px;
  }

  .lang-switcher select {
    max-width: 82px;
  }

  .hero {
    min-height: auto;
    padding: 92px 16px 34px;
  }

  .support-hero {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 104px;
  }

  .privacy-hero {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  :lang(ja) h1,
  :lang(ko) h1,
  :lang(zh-Hans) h1 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-media img {
    object-position: 72% 50%;
  }

  .hero-demo-note {
    display: none;
  }

  .button,
  .hero-actions,
  .pro-actions {
    width: 100%;
  }

  .hero-proof li {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .simple-hero .hero-proof {
    display: none;
  }

  .simple-hero .hero-content {
    gap: 24px;
  }

  .batch-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .batch-head {
    display: none;
  }

  .form-grid,
  .support-form-panel {
    grid-template-columns: 1fr;
  }

  .form-actions {
    width: 100%;
  }
}

/* Clean conversion layout */
:root {
  --bg: #0e1116;
  --panel: #171b21;
  --panel-2: #1d232b;
  --text: #f7f5ef;
  --muted: #b7c0cb;
  --soft: #87909c;
  --brand: #8ed7c6;
  --brand-2: #f2c16b;
  --ok: #8ed7c6;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

body::before {
  background:
    linear-gradient(180deg, rgba(142, 215, 198, 0.08), transparent 34rem),
    linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 100%);
  background-size: auto, 32px 32px;
}

.site-header {
  top: 18px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(14, 17, 22, 0.86);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.header-cta,
.button-primary {
  background: var(--brand);
  color: #081411;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.055);
}

.button {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.hero {
  min-height: 86svh;
  padding-bottom: 88px;
}

.hero-media img {
  opacity: 0.16;
  filter: saturate(0.72) brightness(0.5);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14,17,22,0.98), rgba(14,17,22,0.82) 45%, rgba(14,17,22,0.38)),
    linear-gradient(180deg, transparent 52%, var(--bg));
}

.hero-content {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 82px);
}

h1 {
  max-width: 700px;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1;
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  font-size: clamp(20px, 2vw, 25px);
}

.eyebrow {
  color: var(--brand);
  letter-spacing: 0.05em;
}

.hero-lead {
  max-width: 620px;
  font-size: clamp(18px, 1.8vw, 21px);
}

.hero-proof {
  max-width: 540px;
}

.hero-proof li {
  border-radius: 7px;
  background: rgba(255,255,255,0.055);
  color: rgba(247, 245, 239, 0.92);
}

.app-window {
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.app-window-body {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.app-window-body img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
}

.proof-strip {
  margin-top: -52px;
  background: rgba(23, 27, 33, 0.94);
}

.proof-strip strong {
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
}

.proof-strip span {
  max-width: 210px;
}

.section {
  padding-top: clamp(68px, 8vw, 104px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 4vw, 52px);
  max-width: none;
  margin-bottom: 28px;
  align-items: end;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 3px;
  font-size: 16px;
}

.method-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.76fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 220px;
  background: rgba(255,255,255,0.04);
}

.method-card video,
.method-card img {
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
}

.method-card div,
.studio-copy {
  padding: clamp(18px, 3vw, 28px);
}

.method-card p,
.studio-copy p {
  margin-bottom: 0;
}

.safety-strip {
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  margin-top: 12px;
  background: rgba(142, 215, 198, 0.08);
  border-color: rgba(142, 215, 198, 0.22);
}

.studio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.studio-card-wide {
  grid-column: span 2;
  grid-template-columns: 1fr;
}

.studio-card {
  background: rgba(255,255,255,0.04);
}

.studio-card-wide .studio-media img,
.studio-media video,
.studio-media img {
  min-height: 0;
  aspect-ratio: 16 / 11;
}

.studio-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050607;
}

.studio-media img,
.studio-media video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.studio-batch {
  min-height: 214px;
}

.batch-row {
  padding: 14px 16px;
}

.trust-pro {
  gap: 12px;
}

.local-design {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  min-height: 0;
  background: rgba(255,255,255,0.035);
}

.local-card {
  min-height: 0;
  padding: clamp(24px, 4vw, 42px);
  gap: 22px;
}

.local-card::before {
  background: none;
}

.local-upload {
  grid-column: 1;
  grid-row: 1;
}

.local-native {
  grid-column: 2;
  grid-row: 1;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.local-stream {
  grid-column: 1;
  grid-row: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.local-security {
  grid-column: 2;
  grid-row: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.local-security {
  grid-template-columns: 1fr;
}

.local-copy-top,
.local-stream .local-copy {
  text-align: left;
}

.local-stream .local-copy {
  order: 0;
  display: block;
}

.local-card h2,
.local-card h3,
.local-stream .local-copy h3,
.local-stream h3,
.local-security h3 {
  max-width: 560px;
  font-size: clamp(28px, 3vw, 42px);
}

.local-card p,
.local-stream .local-copy p {
  max-width: 540px;
  font-size: 16px;
}

.upload-visual {
  min-height: 230px;
}

.native-visual,
.stream-visual,
.security-visual {
  min-height: 0;
}

.native-visual {
  align-items: start;
}

.native-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
}

.native-track::before,
.virtual-camera-flow::before {
  display: none;
}

.native-track span {
  width: auto;
  justify-self: stretch;
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  animation: none;
}

.virtual-camera-flow {
  align-items: stretch;
  justify-items: stretch;
}

.raw-source,
.oculta-output {
  justify-self: stretch;
  border-radius: 8px;
}

.app-icons {
  width: 100%;
}

.app-icon {
  min-height: 62px;
  border-radius: 8px;
  animation: none;
}

.animated-icon,
.blocked-cloud,
.local-files span,
.security-status div {
  animation: none;
}

.chip-icon,
.shield-icon {
  display: none;
}

.security-status {
  margin-top: 0;
}

.security-status div {
  padding: 13px 14px;
}

.security-status strong {
  font-size: 15px;
}

.security-status span {
  padding: 6px 9px;
  font-size: 13px;
}

.pro-card {
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    linear-gradient(135deg, rgba(142, 215, 198, 0.16), rgba(242, 193, 107, 0.08)),
    var(--panel);
}

.pro-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.pro-actions {
  justify-content: end;
}

@media (max-width: 1080px) {
  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-demo {
    width: 100%;
  }

  .section-head,
  .method-showcase,
  .method-card,
  .studio-grid,
  .local-design,
  .support-form-panel,
  .pro-card {
    grid-template-columns: 1fr;
  }

  .local-upload,
  .local-native,
  .local-stream,
  .local-security {
    grid-column: auto;
    grid-row: auto;
    border-left: 0;
  }

  .local-native,
  .local-stream,
  .local-security {
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .pro-actions {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(38px, 10.4vw, 50px);
  }

  h2 {
    font-size: clamp(29px, 8vw, 40px);
  }

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

  .simple-hero .hero-proof {
    display: grid;
  }

  .proof-strip {
    margin-top: 0;
  }

  .proof-strip div {
    padding: 18px;
  }

  .method-card video,
  .method-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .safety-strip {
    grid-template-columns: 1fr;
  }

  .native-track,
  .app-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
