/* ----------------------------------
   AudioCutPro — Marketing Site CSS
---------------------------------- */
:root {
  --bg: #0B0B0F;
  --bg-elev: #121218;
  --bg-card: #16161D;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #F2F3F5;
  --text-dim: #9AA0A8;
  --text-mute: #6B7079;
  --accent: #16FFAD;
  --accent-2: #4DA3FF;
  --accent-soft: rgba(22, 255, 173, 0.14);
  --danger: #FF6B6B;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 40px -20px rgba(0,0,0,0.5);
  --max: 1200px;
  --pad: clamp(20px, 4vw, 56px);
  --font: 'Figtree', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

/* ----- Background glow ----- */
.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.bg-glow__a, .bg-glow__b {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45;
}
.bg-glow__a {
  width: 560px; height: 560px;
  top: -120px; left: -120px;
  background: radial-gradient(closest-side, rgba(22,255,173,0.45), transparent 70%);
}
.bg-glow__b {
  width: 600px; height: 600px;
  top: 320px; right: -160px;
  background: radial-gradient(closest-side, rgba(77,163,255,0.35), transparent 70%);
}
.bg-glow__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.6), transparent 70%);
}

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--pad);
  background: rgba(11, 11, 15, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: 0.2px;
}
.nav__logo {
  width: 28px; height: 28px; border-radius: 8px;
}
.nav__name { font-size: 16px; }
.nav__links {
  display: flex; gap: 22px; margin-left: auto;
  font-size: 14px; color: var(--text-dim);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.lang {
  font-size: 13px; padding: 6px 10px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--text-dim);
}
.lang:hover { color: var(--text); border-color: var(--accent); }
@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent); color: #0A1A14;
  box-shadow: 0 8px 30px -10px rgba(22,255,173,0.6);
}
.btn--primary:hover { background: #2bffba; color: #062018; }
.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--lg { padding: 16px 26px; font-size: 16px; }

/* ----- Hero ----- */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(40px, 6vw, 80px);
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(22,255,173,0.3);
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05; margin: 18px 0 18px;
  font-weight: 800; letter-spacing: -0.02em;
}
.hero__title span { display: block; }
.grad {
  background: linear-gradient(120deg, #16FFAD 10%, #4DA3FF 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim); max-width: 560px;
  margin: 0 0 28px;
}
.hero__sub strong { color: var(--text); }
.hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero__chips li {
  font-size: 12px; color: var(--text-dim);
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-elev);
}

/* Phone mockup */
.hero__mock {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.phone {
  position: relative;
  width: min(340px, 92%);
  aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: linear-gradient(180deg, #1c1c24, #0e0e13);
  padding: 12px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    0 40px 80px -30px rgba(22,255,173,0.25),
    0 30px 60px -20px rgba(0,0,0,0.6);
}
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 999px;
  background: #050507;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(22,255,173,0.18), transparent 60%),
    linear-gradient(180deg, #0F0F14, #08080B);
  padding: 56px 18px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.screen__bar {
  display: flex; gap: 6px; justify-content: flex-end;
}
.screen__bar span {
  width: 18px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.4);
}
.screen__bar span:first-child { width: 6px; }
.screen__title {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
}
.screen__waveform {
  position: relative;
  height: 110px; padding: 8px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  overflow: hidden;
}
.waveform {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 3px;
}
.waveform span {
  flex: 1;
  height: calc(var(--h) * 100%);
  min-width: 2px;
  background: linear-gradient(180deg, var(--accent), #0ea877);
  border-radius: 2px;
  opacity: 0.85;
}
.trim {
  position: absolute; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.trim--l { left: 16%; border-radius: 4px 0 0 4px; }
.trim--r { right: 14%; border-radius: 0 4px 4px 0; }
.playhead {
  position: absolute; top: 0; bottom: 0; left: 48%;
  width: 2px; background: #fff; opacity: 0.85;
  animation: playhead 4s linear infinite;
}
@keyframes playhead {
  0% { left: 16%; }
  100% { left: 84%; }
}
.screen__time {
  display: flex; justify-content: space-between;
  color: var(--text-dim); font-size: 12px; font-variant-numeric: tabular-nums;
}
.screen__transport {
  display: flex; gap: 12px; justify-content: center; align-items: center;
}
.screen__transport button {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--text); cursor: pointer; display: grid; place-items: center;
}
.screen__transport button svg { width: 18px; height: 18px; }
.screen__transport .play {
  width: 52px; height: 52px;
  background: var(--accent); color: #062018; border: none;
  box-shadow: 0 8px 20px -6px rgba(22,255,173,0.55);
}
.screen__transport .play svg { width: 22px; height: 22px; }
.screen__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 4px;
}
.screen__tile {
  aspect-ratio: 1; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 11px; color: var(--text-dim);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__mock { order: -1; }
}

/* ----- Trust strip ----- */
.trust {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.trust__item {
  border-top: 1px solid var(--line);
  padding: 22px 6px; text-align: left;
}
.trust__item b {
  display: block;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800; letter-spacing: -0.02em;
}
.trust__item span {
  font-size: 13px; color: var(--text-dim);
}
@media (max-width: 760px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Section ----- */
.section {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad);
}
.section__head { text-align: center; margin-bottom: 48px; }
.eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.18em; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
}
.section__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 12px 0 14px; line-height: 1.15;
  letter-spacing: -0.02em; font-weight: 800;
}
.section__head p {
  color: var(--text-dim); max-width: 640px; margin: 0 auto;
}

/* ----- Cards ----- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover {
  border-color: rgba(22,255,173,0.4);
  transform: translateY(-3px);
}
.card h3 { margin: 16px 0 8px; font-size: 18px; font-weight: 700; }
.card p { color: var(--text-dim); margin: 0; font-size: 14px; }
.card__ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  position: relative;
}
.card__ico::before {
  content: '';
  width: 22px; height: 22px;
  background-color: var(--accent);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.card__ico[data-ico="trim"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.64 7.64a3 3 0 1 0-2.55-2.55L11 9 7.09 12.91a3 3 0 1 0 2.55 2.55L13.5 11h2L21 5h-3.5L13 9.5 9.64 7.64M5 4a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0 12a1 1 0 1 1 0 2 1 1 0 0 1 0-2m12 1l-3.5-3.5L15 12l6 6h-3l-1-1z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9.64 7.64a3 3 0 1 0-2.55-2.55L11 9 7.09 12.91a3 3 0 1 0 2.55 2.55L13.5 11h2L21 5h-3.5L13 9.5 9.64 7.64M5 4a1 1 0 1 1 0 2 1 1 0 0 1 0-2m0 12a1 1 0 1 1 0 2 1 1 0 0 1 0-2m12 1l-3.5-3.5L15 12l6 6h-3l-1-1z' fill='black'/></svg>");
}
.card__ico[data-ico="multi"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 5h12v3H3V5m0 5h18v3H3v-3m0 5h9v3H3v-3z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 5h12v3H3V5m0 5h18v3H3v-3m0 5h9v3H3v-3z' fill='black'/></svg>");
}
.card__ico[data-ico="ai"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a4 4 0 0 1 4 4v6a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4m7 10a7 7 0 0 1-6 6.92V21h3v2H8v-2h3v-2.08A7 7 0 0 1 5 12h2a5 5 0 0 0 10 0h2z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a4 4 0 0 1 4 4v6a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4m7 10a7 7 0 0 1-6 6.92V21h3v2H8v-2h3v-2.08A7 7 0 0 1 5 12h2a5 5 0 0 0 10 0h2z' fill='black'/></svg>");
}
.card__ico[data-ico="noise"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 9v6h4l5 5V4L7 9H3m13.5 3a4.5 4.5 0 0 0-2.5-4v8c1.5-.7 2.5-2.2 2.5-4z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 9v6h4l5 5V4L7 9H3m13.5 3a4.5 4.5 0 0 0-2.5-4v8c1.5-.7 2.5-2.2 2.5-4z' fill='black'/></svg>");
}
.card__ico[data-ico="video"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4.5l4 4v-11l-4 4z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2v-4.5l4 4v-11l-4 4z' fill='black'/></svg>");
}
.card__ico[data-ico="ring"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2m6-6V11a6 6 0 0 0-5-5.91V4a1 1 0 1 0-2 0v1.09A6 6 0 0 0 6 11v5l-2 2v1h16v-1l-2-2z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2m6-6V11a6 6 0 0 0-5-5.91V4a1 1 0 1 0-2 0v1.09A6 6 0 0 0 6 11v5l-2 2v1h16v-1l-2-2z' fill='black'/></svg>");
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ----- Matrix ----- */
.matrix {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.matrix__col h4 {
  font-size: 14px; font-weight: 700; margin: 0 0 12px;
  color: var(--text);
}
.matrix__col h4.matrix__sub { margin-top: 24px; }
.matrix__col ul {
  list-style: none; padding: 0; margin: 0;
}
.matrix__col li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--text-dim); font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.matrix__col li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@media (max-width: 760px) { .matrix { grid-template-columns: 1fr; padding: 24px; } }

/* ----- Spotlight ----- */
.spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.spotlight--reverse .spotlight__visual { order: -1; }
.spotlight__copy h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 12px 0 16px; font-weight: 800;
}
.spotlight__copy p { color: var(--text-dim); margin: 0 0 22px; }
.check {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.check li {
  position: relative; padding-left: 30px;
  color: var(--text);
}
.check li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19l12-12-1.41-1.41z' fill='%2316FFAD'/></svg>") center/12px no-repeat;
}

/* Track visual */
.spotlight__visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.track { display: flex; align-items: stretch; gap: 12px; margin-bottom: 12px; }
.track__head {
  width: 110px; flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
}
.track__name { font-weight: 700; }
.track__solo, .track__mute {
  margin-left: auto;
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: var(--text-dim);
  font-size: 11px; font-weight: 700;
}
.track__solo { margin-left: auto; }
.track__bar {
  flex: 1; position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 40px),
    rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 64px;
  overflow: hidden;
}
.track__clip {
  position: absolute; top: 6px; bottom: 6px;
  left: var(--l); width: var(--w);
  background: linear-gradient(180deg, rgba(22,255,173,0.45), rgba(22,255,173,0.18));
  border: 1px solid rgba(22,255,173,0.5);
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.track__clip.alt {
  background: linear-gradient(180deg, rgba(77,163,255,0.45), rgba(77,163,255,0.18));
  border-color: rgba(77,163,255,0.5);
}
.track__clip.alt2 {
  background: linear-gradient(180deg, rgba(255,170,77,0.4), rgba(255,170,77,0.18));
  border-color: rgba(255,170,77,0.5);
}
.mini-wave { display: flex; gap: 2px; height: 70%; align-items: center; padding: 0 6px; width: 100%; }
.mini-wave span {
  flex: 1; min-width: 2px;
  height: calc(var(--h) * 100%);
  background: rgba(255,255,255,0.85); border-radius: 1px;
}
.track__playhead {
  position: absolute; top: 24px; bottom: 24px; left: 42%;
  width: 2px; background: #fff; opacity: 0.6;
  pointer-events: none;
}

/* AI card */
.ai-card {
  background: linear-gradient(180deg, rgba(22,255,173,0.06), transparent), var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.ai-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.ai-card__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(22,255,173,0.25);
}
.ai-card__pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.ai-card__time { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ai-stems { display: flex; flex-direction: column; gap: 14px; }
.ai-stem { display: flex; align-items: center; gap: 14px; }
.ai-stem__label {
  width: 60px; font-size: 13px; color: var(--text-dim);
}
.ai-stem__bar {
  flex: 1; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.ai-stem__bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  animation: grow 2.4s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes grow {
  from { transform: scaleX(0.7); transform-origin: left; }
  to { transform: scaleX(1); }
}
.ai-card__hint {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-mute); font-size: 12px;
}

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; gap: 32px; }
  .spotlight--reverse .spotlight__visual { order: 0; }
}

/* ----- Formats ----- */
.formats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.formats__col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.formats__col h4 {
  margin: 0 0 14px; font-size: 13px;
  color: var(--text-dim); font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span {
  font-size: 12px; font-weight: 600;
  padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
}
@media (max-width: 760px) { .formats { grid-template-columns: 1fr; } }

.import {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.import h4 {
  margin: 0 0 18px; font-size: 18px; font-weight: 700;
}
.import__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.import__item {
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.import__item b { display: block; font-size: 14px; margin-bottom: 4px; }
.import__item span { font-size: 13px; color: var(--text-dim); }
@media (max-width: 760px) { .import__grid { grid-template-columns: 1fr; } }

/* ----- Privacy ----- */
.privacy { padding-top: 0; }
.privacy__inner {
  background:
    radial-gradient(ellipse at top right, rgba(22,255,173,0.18), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
}
.privacy__inner h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 12px 0 14px; letter-spacing: -0.02em;
}
.privacy__inner p {
  color: var(--text-dim); max-width: 720px; margin: 0 auto 28px;
}
.privacy__chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.privacy__chips span {
  padding: 8px 14px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(22,255,173,0.3);
  font-size: 13px; font-weight: 600;
}

/* ----- CTA ----- */
.cta__inner {
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(22,255,173,0.2), transparent 70%),
    linear-gradient(180deg, #14141B, #0E0E13);
  border: 1px solid rgba(22,255,173,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px);
}
.cta__inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.cta__inner p { color: var(--text-dim); margin: 0 0 24px; }
.cta__row {
  display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.cta__or { color: var(--text-mute); font-size: 14px; }

/* ----- FAQ ----- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(22,255,173,0.3); }
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--accent); font-weight: 800; font-size: 22px;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '–'; }
.faq p { color: var(--text-dim); margin: 12px 0 0; }

/* ----- Footer ----- */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 28px;
  margin-top: 32px;
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.footer__top {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex; gap: 12px; align-items: center;
}
.footer__brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer__brand strong { display: block; font-size: 16px; }
.footer__brand span { font-size: 13px; color: var(--text-dim); }
.footer__links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer__links h5 {
  margin: 0 0 12px; font-size: 12px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}
.footer__links a {
  display: block; padding: 4px 0; font-size: 14px; color: var(--text);
}
.footer__links a:hover { color: var(--accent); }
.footer__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 12px; color: var(--text-mute);
  flex-wrap: wrap; gap: 8px;
}
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Reveal animations ----- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}
