/* Zoria AI Studio — Bold Creative Register */
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg: #0c0a09;
  --fg: #fafaf9;
  --surface: #1c1917;
  --surface-2: #292524;
  --muted: #a8a29e;
  --muted-2: #78716c;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --border: #292524;
  --border-2: rgba(250, 250, 249, 0.08);

  --font-display: "Bricolage Grotesque", serif;
  --font-body: "Satoshi", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ===== Layout ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(12, 10, 9, 0.78);
  border-bottom: 1px solid var(--border-2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.brand__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 18px var(--accent);
}
.nav { display: none; gap: 28px; font-size: 14px; color: var(--muted); }
@media (min-width: 768px) { .nav { display: flex; } }
.nav a { transition: color .15s ease; }
.nav a:hover { color: var(--fg); }
.btn-mini {
  font-family: var(--font-mono); font-size: 12px;
  padding: 8px 14px; border: 1px solid var(--border-2); border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ===== Hero ===== */
.hero { padding: 64px 0 96px; position: relative; }
@media (min-width: 768px) { .hero { padding: 96px 0 128px; } }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }

.hero__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
}
.hero__label::before {
  content: ""; width: 24px; height: 1px; background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 92;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "wdth" 88;
}

.hero__sub {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
}
@media (min-width: 768px) { .hero__sub { font-size: 20px; } }

.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: var(--accent); color: var(--bg);
  font-weight: 700; font-size: 15px;
  border-radius: 8px;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  box-shadow: 0 8px 30px -8px rgba(249, 115, 22, 0.5);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 12px 36px -6px rgba(249, 115, 22, 0.7); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 22px; font-size: 15px;
  color: var(--fg); border: 1px solid var(--border-2);
  border-radius: 8px;
  transition: border-color .15s ease, background .15s ease;
}
.btn-ghost:hover { border-color: var(--fg); background: var(--surface); }

/* Hero visual — stacked cards */
.hero__visual {
  position: relative;
  height: 460px;
  perspective: 1200px;
}
@media (min-width: 1024px) { .hero__visual { height: 520px; } }

.card-stack { position: absolute; inset: 0; transform-style: preserve-3d; }

.gen-card {
  position: absolute;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.gen-card__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 14px; color: var(--muted);
  border-bottom: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: space-between;
}
.gen-card__label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.gen-card.gc-image {
  top: 0; right: 4%; width: 78%; height: 64%;
  transform: rotate(-3deg);
}
.gen-card.gc-music {
  bottom: 8%; left: 0; width: 70%; height: 38%;
  transform: rotate(2deg);
}
.gen-card.gc-video {
  bottom: 0; right: 6%; width: 56%; height: 32%;
  transform: rotate(-1.5deg);
  z-index: 2;
}

.gen-card__body { padding: 16px; height: calc(100% - 38px); display: flex; align-items: center; justify-content: center; }

/* Image card content */
.gen-image-art {
  width: 100%; height: 100%; border-radius: 6px;
  background:
    radial-gradient(circle at 20% 30%, #fb923c 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, #c2410c 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, #422006 0%, transparent 60%),
    linear-gradient(135deg, #1c1917 0%, #44403c 100%);
  position: relative;
}
.gen-image-art::after {
  content: "prompt: golden hour mountain at dusk";
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(250, 250, 249, 0.6);
  background: rgba(12, 10, 9, 0.6); padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Music card content - waveform */
.waveform { display: flex; align-items: center; gap: 3px; width: 100%; height: 100%; padding: 0 6px; }
.waveform span {
  flex: 1; background: var(--accent); border-radius: 2px;
  animation: wf 1.4s ease-in-out infinite;
  transform-origin: center;
}
.waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 60%; animation-delay: .1s; }
.waveform span:nth-child(3) { height: 90%; animation-delay: .2s; }
.waveform span:nth-child(4) { height: 50%; animation-delay: .3s; }
.waveform span:nth-child(5) { height: 75%; animation-delay: .4s; background: #fbbf24; }
.waveform span:nth-child(6) { height: 40%; animation-delay: .5s; }
.waveform span:nth-child(7) { height: 85%; animation-delay: .6s; }
.waveform span:nth-child(8) { height: 55%; animation-delay: .7s; }
.waveform span:nth-child(9) { height: 70%; animation-delay: .8s; background: #fbbf24; }
.waveform span:nth-child(10) { height: 35%; animation-delay: .9s; }
.waveform span:nth-child(11) { height: 65%; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 80%; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 45%; animation-delay: 1.2s; }
.waveform span:nth-child(14) { height: 90%; animation-delay: 1.3s; }
.waveform span:nth-child(15) { height: 50%; animation-delay: 1.4s; }
@keyframes wf { 0%,100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }

/* Video card content */
.video-frame {
  width: 100%; height: 100%; border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(12,10,9,0) 60%, rgba(12,10,9,0.9) 100%),
    radial-gradient(ellipse at center, #ea580c 0%, #7c2d12 70%, #1c1917 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.video-frame::before {
  content: ""; width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--fg);
  margin-left: 4px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.video-frame::after {
  content: "00:08 / 00:15";
  position: absolute; bottom: 8px; right: 10px;
  font-family: var(--font-mono); font-size: 9px;
  color: rgba(250, 250, 249, 0.8); letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
  .waveform span, .gen-card { animation: none !important; transition: none !important; }
}

/* ===== Section base ===== */
.section { padding: 96px 0; border-top: 1px solid var(--border-2); }
.section__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section__label::before { content: ""; width: 20px; height: 1px; background: var(--accent); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 740px;
  margin-bottom: 48px;
}
.section__title em { font-style: italic; color: var(--muted); font-weight: 400; }

/* ===== Capabilities ===== */
.caps { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--border-2); border: 1px solid var(--border-2); }
@media (min-width: 768px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .caps { grid-template-columns: repeat(4, 1fr); } }
.cap { background: var(--bg); padding: 32px 28px; min-height: 220px; display: flex; flex-direction: column; }
.cap__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 6px;
  margin-bottom: 20px;
}
.cap__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.cap__desc { color: var(--muted); font-size: 15px; line-height: 1.55; }
.cap__tag {
  margin-top: auto; font-family: var(--font-mono); font-size: 11px;
  color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase;
  padding-top: 20px;
}

/* ===== Workflow ===== */
.flow { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .flow { grid-template-columns: repeat(3, 1fr); } }
.flow__step { display: flex; flex-direction: column; gap: 16px; }
.flow__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 96px; line-height: 0.9; color: var(--accent);
  font-weight: 400;
}
.flow__heading { font-size: 22px; font-weight: 700; }
.flow__body { color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ===== Pricing ===== */
.pricing { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.price-card--featured {
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.08) 0%, var(--surface) 60%);
  border-color: rgba(249, 115, 22, 0.35);
}
.price-card h3 { font-size: 20px; font-weight: 700; }
.price-card p { color: var(--muted); font-size: 15px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; }
.price-card li::before { content: "→"; color: var(--accent); font-family: var(--font-mono); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border-2);
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #050403 100%);
}
.site-footer__grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer__col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: var(--muted); font-size: 14px; transition: color .15s; }
.site-footer__col a:hover { color: var(--fg); }
.site-footer__brand .brand { margin-bottom: 16px; }
.site-footer__brand p { color: var(--muted); font-size: 14px; max-width: 320px; line-height: 1.55; }
.site-footer__bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border-2);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== Legal pages (privacy, terms) ===== */
.legal { padding: 80px 0 96px; max-width: 760px; margin: 0 auto; }
.legal__kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.legal__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal__title em { font-style: italic; color: var(--accent); }
.legal__updated { color: var(--muted-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; margin-bottom: 48px; }

.legal h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
}
.legal h2::before { content: "§ "; color: var(--accent); font-family: var(--font-mono); font-size: 20px; }
.legal p { color: #d6d3d1; line-height: 1.7; margin-bottom: 14px; font-size: 16px; }
.legal ul { padding-left: 0; margin: 16px 0 20px; list-style: none; }
.legal li { color: #d6d3d1; padding-left: 24px; position: relative; margin-bottom: 8px; line-height: 1.6; }
.legal li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--fg); font-weight: 700; }
.legal code { font-family: var(--font-mono); font-size: 14px; background: var(--surface-2); padding: 2px 6px; border-radius: 4px; }

/* Reveal animation — CSS-only, no JS required. Default state is visible. */
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .reveal:nth-child(2) { animation-delay: 0.06s; }
  .reveal:nth-child(3) { animation-delay: 0.12s; }
  .reveal:nth-child(4) { animation-delay: 0.18s; }
  .reveal:nth-child(5) { animation-delay: 0.24s; }
}
