:root {
  --bg: #09111f;
  --bg2: #0d1728;
  --card: rgba(17, 29, 50, 0.9);
  --line: rgba(113, 128, 150, 0.34);
  --text: #f2f7ff;
  --muted: #b7c5d8;
  --accent: #22d3ee;
  --accent2: #67e8f9;
  --accent-warm: #f6c453;
  --danger: #ff6b7a;
  --radius: clamp(16px, 1.2vw, 20px);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Sora", "Outfit", system-ui, sans-serif;
  --max: min(1180px, 100%);
  --gutter: clamp(16px, 3.2vw, 40px);
  --section-y: clamp(40px, 6vw, 72px);
  --hero-y: clamp(36px, 5.5vw, 72px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 8% -10%, rgba(94, 176, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 5%, rgba(94, 240, 200, 0.12), transparent 50%),
    linear-gradient(170deg, #04070f, var(--bg) 42%, var(--bg2));
  line-height: 1.5;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #0b1220;
}
.hero-visual,
.split-media,
.media-band {
  min-width: 0;
  width: 100%;
}
.split-media img,
.band-img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.band-img {
  aspect-ratio: 21 / 10;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: var(--muted); }
.err { color: var(--danger); min-height: 1.2em; }
.mono {
  font-family: ui-monospace, Consolas, monospace;
  font-size: clamp(11px, 2.5vw, 12px);
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(0, 0, 0, 0.35);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  min-height: 0;
  overflow-x: auto;
}
.mono:empty { display: none; }

#connect {
  scroll-margin-top: 88px;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  padding: 12px var(--gutter);
  padding-top: max(12px, env(safe-area-inset-top));
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 10, 18, 0.88);
  z-index: 40;
  min-height: 56px;
}
.top-right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
  margin-left: auto;
}
.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 11px/1 var(--font);
  letter-spacing: 0.04em;
  padding: 7px 9px;
  border-radius: 999px;
  cursor: pointer;
  min-width: 36px;
  touch-action: manipulation;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: linear-gradient(120deg, rgba(47, 127, 255, 0.35), rgba(47, 212, 168, 0.35));
  color: var(--text);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  letter-spacing: -0.03em;
  text-decoration: none !important;
  flex-shrink: 0;
  white-space: nowrap;
  color: #f1f5f9;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(45, 212, 239, 0.25);
}
.brand-text {
  background: linear-gradient(120deg, var(--accent-warm), var(--accent2) 55%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav {
  display: flex;
  gap: clamp(10px, 1.4vw, 16px);
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 14px);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  touch-action: manipulation;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(94, 240, 200, 0.45);
}
.btn.primary {
  background: linear-gradient(180deg, var(--accent), #0891b2);
  border-color: transparent;
  color: #042f2e !important;
}
.btn.ghost { background: transparent; }
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
  min-height: 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: var(--hero-y) var(--gutter) clamp(20px, 3vw, 32px);
}
.hero-copy { min-width: 0; }
.hero-sub {
  margin: -6px 0 14px;
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.08rem);
  max-width: 34rem;
  line-height: 1.45;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(11px, 1.5vw, 12px);
  color: var(--accent2);
  margin: 0 0 12px;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 1.1rem + 2.8vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.lead {
  color: var(--muted);
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.1rem);
  max-width: 36rem;
  margin: 0;
}
.hero-lead-hint {
  margin: 0 0 14px;
  font-size: clamp(0.88rem, 0.82rem + 0.25vw, 0.98rem);
  max-width: 36rem;
}
.hero-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 44rem;
  margin: 0;
}
.hero-feat {
  appearance: none;
  margin: 0;
  border: 1px solid rgba(120, 180, 255, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  font: inherit;
  font-size: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  touch-action: manipulation;
}
.hero-feat:hover,
.hero-feat:focus-visible {
  border-color: rgba(94, 240, 200, 0.45);
  background:
    linear-gradient(180deg, rgba(94, 240, 200, 0.14), rgba(94, 176, 255, 0.08));
  color: #dffcf3;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.hero-feat.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, rgba(47, 127, 255, 0.95), rgba(47, 212, 168, 0.92));
  color: #041018;
  box-shadow: 0 12px 28px rgba(47, 180, 200, 0.28);
  transform: translateY(-1px);
}
.feat-panel {
  position: relative;
  margin-top: 16px;
  max-width: 44rem;
  padding: 18px 18px 16px;
  border: 1px solid rgba(120, 180, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(16, 24, 40, 0.96), rgba(8, 12, 22, 0.92));
  overflow: hidden;
  isolation: isolate;
  animation: featPanelIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.feat-panel[hidden] { display: none !important; }
.feat-panel-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(94, 240, 200, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.feat-panel-head,
.feat-panel-lead,
.feat-panel-list,
.feat-panel-more {
  position: relative;
  z-index: 1;
}
@keyframes featPanelIn {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.feat-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.feat-panel-titlewrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.feat-panel-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(94, 240, 200, 0.12);
  border: 1px solid rgba(94, 240, 200, 0.28);
  color: var(--accent2);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.feat-panel-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.32rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.feat-panel-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.feat-panel-close:hover {
  border-color: rgba(94, 240, 200, 0.45);
  background: rgba(94, 240, 200, 0.08);
}
.feat-panel-lead {
  margin: 0 0 14px;
  font-size: 0.95rem;
  max-width: 36rem;
}
.feat-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.feat-panel-list li {
  position: relative;
  margin: 0;
  padding: 12px 12px 12px 38px;
  border-radius: 14px;
  border: 1px solid rgba(120, 180, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  min-width: 0;
}
.feat-panel-list li::before {
  content: attr(data-n);
  position: absolute;
  left: 10px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(94, 240, 200, 0.12);
  color: var(--accent2);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--display);
}
.feat-panel-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(94, 240, 200, 0.28);
  background: rgba(94, 240, 200, 0.08);
  color: var(--accent2);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.feat-panel-more:hover {
  background: rgba(94, 240, 200, 0.14);
  border-color: rgba(94, 240, 200, 0.45);
  transform: translateY(-1px);
}
.feat-panel-more-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.15s ease;
}
.feat-panel-more:hover .feat-panel-more-arrow {
  transform: translateX(3px);
}
@media (max-width: 640px) {
  .feat-panel-list {
    grid-template-columns: 1fr;
  }
  .hero-feat {
    padding: 7px 12px;
  }
}
.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.hero-points li {
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
}
.shell-mock {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(120, 180, 255, 0.22);
  background:
    linear-gradient(165deg, rgba(18, 28, 48, 0.96), rgba(8, 12, 22, 0.98));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  padding: 14px 14px 16px;
  overflow: hidden;
  animation: floatIn 0.85s ease both;
}
.shell-mock::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 55%;
  background: radial-gradient(circle, rgba(94, 176, 255, 0.18), transparent 65%);
  pointer-events: none;
}
.shell-mock-chrome {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 28px;
}
.shell-mock-dots {
  display: inline-flex;
  gap: 5px;
}
.shell-mock-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: block;
}
.shell-mock-dots i:nth-child(1) { background: #ff6b6b; }
.shell-mock-dots i:nth-child(2) { background: #f0c14b; }
.shell-mock-dots i:nth-child(3) { background: #5ef0c8; }
.shell-mock-pc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(238, 243, 255, 0.72);
}
.shell-mock-time {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent2);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(94, 240, 200, 0.1);
  border: 1px solid rgba(94, 240, 200, 0.22);
}
.shell-mock-cats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.shell-mock-cats span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(120, 180, 255, 0.16);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.shell-mock-cats span.is-on {
  color: #041018;
  border-color: transparent;
  background: linear-gradient(120deg, #2f7fff, #2fd4a8);
}
.shell-mock-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.shell-poster {
  margin: 0;
  min-width: 0;
  transition: transform 0.25s ease;
}
.shell-poster:nth-child(1) { animation: posterPop 0.7s 0.05s ease both; }
.shell-poster:nth-child(2) { animation: posterPop 0.7s 0.12s ease both; }
.shell-poster:nth-child(3) { animation: posterPop 0.7s 0.18s ease both; }
.shell-poster:nth-child(4) { animation: posterPop 0.7s 0.24s ease both; }
.shell-poster:nth-child(5) { animation: posterPop 0.7s 0.3s ease both; }
.shell-poster:nth-child(6) { animation: posterPop 0.7s 0.36s ease both; }
.shell-poster:nth-child(7) { animation: posterPop 0.7s 0.42s ease both; }
.shell-poster:nth-child(8) { animation: posterPop 0.7s 0.48s ease both; }
.shell-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(120, 180, 255, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  background: #0b1220;
  display: block;
}
.shell-poster figcaption {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(238, 243, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.shell-poster:hover {
  transform: translateY(-4px);
}
.shell-poster:hover img {
  border-color: rgba(94, 240, 200, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}
.shell-poster-fade {
  opacity: 0.72;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes posterPop {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.trust-strip {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 8px var(--gutter) clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.trust-line {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.trust-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #17243a;
  border: 1px solid rgba(113, 128, 150, 0.28);
}
.trust-stats strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent);
}
.trust-stats span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.section-head h2,
.split-copy h2,
.about-block h2,
#faq h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(10px, 1.5vw, 14px);
}
.feature {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(94, 240, 200, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .feature:hover {
    border-color: rgba(94, 240, 200, 0.4);
    background: rgba(16, 24, 40, 0.55);
    transform: translateY(-2px);
  }
  .feature:hover::before { opacity: 1; }
}
.feature-mark {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent2);
  opacity: 0.85;
}
.feature h3 {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  letter-spacing: -0.02em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 0.85rem + 0.2vw, 0.95rem);
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3.5vw, 36px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-copy { min-width: 0; }
.checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.88rem + 0.2vw, 1rem);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent2), var(--accent));
  box-shadow: 0 0 12px rgba(94, 240, 200, 0.45);
}
.split-media.stack {
  display: grid;
  gap: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent2), var(--accent));
}
.plan h3 { margin: 0 0 8px; font-family: var(--display); }
.plan .price {
  font-family: var(--display);
  font-size: clamp(2.1rem, 1.6rem + 2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 8px 0 4px;
}
.plan .per { color: var(--muted); margin-bottom: 14px; }
.plan ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}
.plan ul li { margin: 6px 0; }

.about-block .about {
  color: var(--muted);
  font-size: clamp(0.98rem, 0.95rem + 0.25vw, 1.08rem);
  max-width: 46rem;
}

.card.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 22px);
  width: 100%;
  max-width: min(520px, 100%);
  display: grid;
  gap: 8px;
}
.card.form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 6px;
}
.card.form input,
.card.form select {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: inherit;
  font-size: 16px; /* iOS zoom prevent */
}
.card.form .btn { margin-top: 10px; width: 100%; }
.connect-enter { text-align: center; gap: 14px; }
.connect-enter .btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; min-height: 48px; }
.connect-enter .muted { margin: 0; line-height: 1.45; }
.support {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: min(720px, 100%);
}
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  touch-action: manipulation;
}
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px var(--gutter);
  padding-bottom: max(28px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
}
#foot-name {
  color: var(--text);
  font-weight: 700;
}

/* —— Large desktops —— */
@media (min-width: 1400px) {
  :root { --max: min(1280px, 100%); }
}

@media (min-width: 1800px) {
  :root {
    --max: min(1360px, 100%);
    --gutter: clamp(28px, 4vw, 56px);
  }
}

/* —— Tablet / small laptop —— */
@media (max-width: 1024px) {
  .hero,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .split.reverse .split-media { order: -1; }
  .hero-visual { order: -1; }
  .shell-mock-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .shell-poster-fade { display: none; }
  .split-media img {
    aspect-ratio: 16 / 9;
    max-height: min(52vh, 420px);
  }
  .band-img {
    aspect-ratio: 16 / 8;
    max-height: min(48vh, 400px);
  }
}

/* —— Compact header earlier so nav doesn't crush —— */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(300px, calc(100vw - 2 * var(--gutter)));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(8, 12, 22, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    z-index: 50;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 14px;
    border-radius: 10px;
    white-space: normal;
  }
  .nav a:hover,
  .nav a:focus {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
  }
  .nav .btn {
    width: 100%;
    margin-top: 4px;
  }
}

/* —— Phones —— */
@media (max-width: 600px) {
  :root {
    --gutter: max(14px, env(safe-area-inset-left, 14px));
  }
  .lang-btn {
    padding: 6px 7px;
    min-width: 32px;
    font-size: 10px;
  }
  .cta .btn { flex: 1 1 auto; min-width: min(100%, 140px); }
  .shell-mock { padding: 12px; }
  .shell-mock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .shell-poster:nth-child(n + 7) { display: none; }
  .split-media img,
  .band-img {
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: 12px;
  }
  .trust-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-stats { grid-template-columns: 1fr; }
  .feature {
    padding: 16px;
  }
  .plan .price { font-size: 2.2rem; }
  .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* —— Very small phones —— */
@media (max-width: 380px) {
  .brand { font-size: 0.98rem; }
  .lang-switch { gap: 0; }
  .lang-btn { min-width: 28px; padding: 6px 5px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shell-mock,
  .shell-poster { animation: none; }
  .feat-panel { animation: none; }
  .hero-feat:hover,
  .hero-feat.is-active,
  .feat-panel-more:hover,
  .btn:hover,
  .feature:hover,
  .shell-poster:hover { transform: none; }
}

/* —— Lightbox —— */
.zoomable {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  background: rgba(2, 6, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  width: auto;
  height: auto;
  max-width: min(96vw, 1600px);
  max-height: min(92vh, 100%);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  background: #0b1220;
  cursor: default;
  aspect-ratio: auto;
}
.lightbox-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.9);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  touch-action: manipulation;
}
.lightbox-close:hover {
  border-color: rgba(94, 240, 200, 0.5);
}
body.lightbox-open {
  overflow: hidden;
}
