/* ==========================================================================
   MovieJack — Engelmann Software GmbH
   Stylesheet
   ========================================================================== */

:root {
  --bg: #fafaf7;
  --bg-2: #f3f2ee;
  --paper: #ffffff;
  --surface: rgba(0, 0, 0, 0.025);
  --surface-2: rgba(0, 0, 0, 0.045);
  --border: rgba(15, 15, 20, 0.08);
  --border-2: rgba(15, 15, 20, 0.14);
  --ink: #0e0e10;
  --ink-2: #52524d;
  --ink-3: #8a8780;
  --ink-4: #b9b6ae;
  --accent: #d62f3a;
  --accent-deep: #a51c25;
  --accent-soft: #e8484f;
  --warm: #c2691f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmosphere — subtle warm gradient overlay */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 85% -5%, rgba(214, 47, 58, 0.07), transparent 60%),
    radial-gradient(900px 500px at 5% 25%, rgba(194, 105, 31, 0.04), transparent 60%);
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.3;
  mix-blend-mode: multiply;
}

em.it { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ==========================================================================
   Navigation
   ========================================================================== */

nav.top {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 24px -8px rgba(15, 15, 20, 0.08);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(214, 47, 58, 0.3);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 50%);
}
.brand-mark span {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
  transform: translateY(-1px);
}
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.brand-name small { display: block; font-size: 10px; color: var(--ink-3); font-weight: 400; letter-spacing: 0.04em; margin-top: 1px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 8px; }

.lang-switcher { position: relative; }
.lang-toggle {
  font-size: 12px;
  color: var(--ink-2);
  padding: 8px 10px 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.lang-toggle:hover { background: var(--surface-2); border-color: var(--border); }
.lang-toggle[aria-expanded="true"] { background: var(--surface-2); border-color: var(--border-2); }
.lang-toggle b { color: var(--ink); font-weight: 600; font-family: 'Geist Mono'; letter-spacing: 0.04em; }
.lang-toggle svg { transition: transform 0.2s; opacity: 0.6; }
.lang-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--paper);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(15, 15, 20, 0.18);
  padding: 6px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 200;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-menu li { list-style: none; margin: 0; }
.lang-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.lang-menu a:hover { background: var(--surface-2); color: var(--ink); }
.lang-menu a.current {
  background: rgba(214, 47, 58, 0.06);
  color: var(--accent);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(15, 15, 20, 0.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 20px rgba(15, 15, 20, 0.25); }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  box-shadow: 0 1px 0 rgba(15, 15, 20, 0.04);
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-accent {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 20px rgba(214, 47, 58, 0.35);
}
.btn-accent:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding: 160px 0 90px; position: relative; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 6px 6px 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(15, 15, 20, 0.04);
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(214, 47, 58, 0.18); }
.hero-pill .badge {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.95fr; gap: 80px; align-items: center; }
h1.hero-h {
  font-family: 'Geist';
  font-weight: 500;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--ink);
}
h1.hero-h em {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--ink-2); max-width: 520px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.hero-meta { display: flex; gap: 28px 36px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; align-items: flex-start; }
.hero-meta div { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Geist Mono'; }
.hero-meta strong { display: block; color: var(--ink); font-size: 18px; font-weight: 500; text-transform: none; letter-spacing: -0.015em; margin-bottom: 4px; font-family: 'Geist'; }

.hero-meta .rating { display: flex; flex-direction: column; gap: 6px; }
.rating-row { display: flex; align-items: center; gap: 8px; }
.rating-num { font-family: 'Geist'; font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.015em; }
.rating-stars { display: inline-flex; gap: 1px; color: var(--accent); }
.rating-stars svg { display: block; }
.rating-count { font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: none; }
.rating-count b { color: var(--ink-2); font-weight: 600; }

/* ==========================================================================
   Hero product visual — simulated software UI
   ========================================================================== */

.product-stage { position: relative; aspect-ratio: 1 / 1.05; }
.product-glow {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 60% 40%, rgba(214, 47, 58, 0.18), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(194, 105, 31, 0.1), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.ui-window {
  position: absolute;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 30px 60px -20px rgba(15, 15, 20, 0.18),
    0 60px 100px -40px rgba(214, 47, 58, 0.18);
  overflow: hidden;
  z-index: 2;
  top: 8%;
  left: 0;
  right: 0;
}
.ui-titlebar {
  height: 36px;
  background: #f7f6f2;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.ui-dot { width: 11px; height: 11px; border-radius: 50%; background: #d4d2cc; }
.ui-dot.r { background: #ed5e5e; }
.ui-dot.y { background: #e0b13a; }
.ui-dot.g { background: #5cb85c; }
.ui-titlebar .title { flex-grow: 1; text-align: center; font-size: 11px; color: var(--ink-3); font-family: 'Geist Mono'; }
.ui-toolbar {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafaf7;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ui-input {
  flex-grow: 1;
  background: var(--paper);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Geist Mono';
  font-size: 11px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(15, 15, 20, 0.02);
}
.ui-btn-add {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(214, 47, 58, 0.3);
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}
.ui-list { padding: 8px; background: var(--paper); }
.ui-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
}
.ui-row + .ui-row { border-top: 1px solid rgba(15, 15, 20, 0.04); }
.ui-thumb {
  width: 48px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ui-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
}
.ui-thumb.t1 { background: linear-gradient(135deg, #a8504e, #3a1a1a); }
.ui-thumb.t2 { background: linear-gradient(135deg, #506a8a, #1a2a3a); }
.ui-thumb.t3 { background: linear-gradient(135deg, #a89060, #2a2a1a); }
.ui-thumb.t4 { background: linear-gradient(135deg, #5a8060, #1a3a2a); }
.ui-meta { min-width: 0; }
.ui-name { font-size: 12.5px; color: var(--ink); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.ui-info { font-size: 10px; color: var(--ink-3); font-family: 'Geist Mono'; display: flex; gap: 10px; }
.ui-info b { color: var(--accent); font-weight: 500; }
.ui-info b.done { color: #3a8a3a; }
.ui-progress { width: 100px; height: 4px; background: rgba(15, 15, 20, 0.06); border-radius: 100px; overflow: hidden; position: relative; }
.ui-progress::after { content: ""; position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, var(--accent), var(--warm)); border-radius: 100px; }
.p25::after { width: 25%; }
.p52::after { width: 52%; }
.p78::after { width: 78%; }
.p100::after { width: 100%; background: #3a8a3a; }
.ui-pct { font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-2); min-width: 36px; text-align: right; font-weight: 500; }
.ui-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: #fafaf7;
  font-size: 11px;
  color: var(--ink-3);
  font-family: 'Geist Mono';
}
.ui-status b { color: var(--accent); font-weight: 500; }

.ui-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 15, 20, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  z-index: 3;
}
.ui-card.left { left: -30px; top: 48%; width: 200px; }
.ui-card.right { right: -20px; bottom: 8%; width: 180px; }
.ui-card .label { font-size: 10px; color: var(--ink-3); font-family: 'Geist Mono'; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.ui-card .value { font-family: 'Instrument Serif'; font-size: 32px; color: var(--ink); line-height: 1; font-style: italic; letter-spacing: -0.02em; }
.ui-card .value b { color: var(--accent); font-weight: 400; }
.ui-card .value .unit { font-size: 14px; color: var(--ink-3); font-style: normal; font-family: 'Geist Mono'; }
.ui-card .sub { font-size: 11px; color: var(--ink-2); margin-top: 6px; }

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  background: var(--bg-2);
  margin-top: 60px;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee span {
  font-family: 'Instrument Serif';
  font-size: 28px;
  font-style: italic;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Sections
   ========================================================================== */

section.s { padding: 120px 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono';
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  font-weight: 500;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
h2.title {
  font-family: 'Geist';
  font-weight: 500;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 760px;
  color: var(--ink);
}
h2.title em { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; color: var(--warm); }
.title-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.title-row p { font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 420px; }

/* ==========================================================================
   Bento grid
   ========================================================================== */

.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 14px; }
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(15, 15, 20, 0.04);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 15, 20, 0.08); }
.card .label { font-family: 'Geist Mono'; font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: auto; font-weight: 500; }
.card h3 { font-family: 'Geist'; font-weight: 500; font-size: 24px; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; margin-top: auto; margin-bottom: 8px; }
.card h3 em { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; color: var(--warm); }
.card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

.c-4k { grid-column: span 3; grid-row: span 2; background: radial-gradient(circle at 80% 20%, rgba(214, 47, 58, 0.06), transparent 50%), var(--paper); }
.c-mp3 { grid-column: span 3; grid-row: span 2; background: radial-gradient(circle at 20% 80%, rgba(194, 105, 31, 0.06), transparent 50%), var(--paper); }
.c-parallel { grid-column: span 2; grid-row: span 2; background: var(--paper); }
.c-playlist { grid-column: span 2; grid-row: span 1; }
.c-offline { grid-column: span 2; grid-row: span 1; }
.c-data { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #fff8ed 0%, var(--paper) 60%); }
.c-windows { grid-column: span 2; grid-row: span 2; background: var(--paper); }

.quality-stack { position: absolute; top: 32px; right: 32px; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.q-pill { font-family: 'Geist Mono'; font-size: 11px; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--border); background: #fafaf7; color: var(--ink-3); font-weight: 500; }
.q-pill.active { background: linear-gradient(180deg, var(--accent), var(--accent-deep)); border-color: transparent; color: #fff; box-shadow: 0 6px 14px rgba(214, 47, 58, 0.35); }
.resolution-display { position: absolute; left: 32px; top: 80px; font-family: 'Instrument Serif'; font-style: italic; font-size: 96px; line-height: 0.9; letter-spacing: -0.03em; color: var(--ink); }
.resolution-display sub { font-family: 'Geist Mono'; font-style: normal; font-size: 14px; color: var(--ink-3); vertical-align: super; letter-spacing: 0.05em; }

.waveform { position: absolute; left: 32px; right: 32px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 3px; height: 80px; z-index: 0; }
.waveform i { flex: 1; background: linear-gradient(180deg, var(--warm), var(--accent)); border-radius: 2px; opacity: 0.85; display: block; }
.audio-meta { position: absolute; bottom: 32px; left: 32px; right: 32px; display: flex; justify-content: space-between; align-items: center; font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-3); z-index: 1; font-weight: 500; }

.parallel-bars { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.pbar { display: grid; grid-template-columns: 14px 1fr 32px; gap: 10px; align-items: center; }
.pbar .num { font-family: 'Geist Mono'; font-size: 10px; color: var(--ink-3); font-weight: 500; }
.pbar .track { height: 4px; background: rgba(15, 15, 20, 0.06); border-radius: 100px; overflow: hidden; position: relative; }
.pbar .track::after { content: ""; position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, var(--accent), var(--warm)); border-radius: 100px; }
.pbar .pct { font-family: 'Geist Mono'; font-size: 10px; color: var(--ink-2); font-weight: 500; }
.pbar.b1 .track::after { width: 88%; }
.pbar.b2 .track::after { width: 64%; }
.pbar.b3 .track::after { width: 42%; }
.pbar.b4 .track::after { width: 23%; }

.c-playlist h3, .c-offline h3 { font-size: 20px; }
.mini-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(214, 47, 58, 0.07); border: 1px solid rgba(214, 47, 58, 0.18); display: grid; place-items: center; color: var(--accent); margin-bottom: auto; }

.data-stat { font-family: 'Instrument Serif'; font-style: italic; font-size: 84px; line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 8px; background: linear-gradient(180deg, var(--warm) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.data-stat small { font-family: 'Geist Mono'; font-size: 14px; font-style: normal; color: var(--ink-3); -webkit-text-fill-color: var(--ink-3); margin-left: 4px; letter-spacing: 0.05em; font-weight: 500; }
.c-data .desc { font-size: 13px; color: var(--ink-2); }

.win-versions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
.win-pill { background: #fafaf7; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-family: 'Geist Mono'; font-size: 11px; color: var(--ink-2); font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.win-pill .check { color: #3a8a3a; }

/* ==========================================================================
   How it works
   ========================================================================== */

.how { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(15, 15, 20, 0.04); }
.step { background: var(--paper); padding: 48px 40px; }
.step-num { font-family: 'Instrument Serif'; font-style: italic; font-size: 64px; line-height: 1; color: var(--accent); margin-bottom: 32px; }
.step h3 { font-family: 'Geist'; font-weight: 500; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--ink-2); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.step .code { display: inline-block; font-family: 'Geist Mono'; font-size: 11.5px; color: var(--accent-deep); background: rgba(214, 47, 58, 0.06); border: 1px solid rgba(214, 47, 58, 0.15); padding: 6px 12px; border-radius: 7px; font-weight: 500; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-frame {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(214, 47, 58, 0.08), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(194, 105, 31, 0.06), transparent 60%),
    var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(15, 15, 20, 0.15);
}
.price-product { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1.1; }
.price-product img { max-width: 100%; max-height: 100%; filter: drop-shadow(0 30px 50px rgba(15, 15, 20, 0.18)) drop-shadow(0 0 60px rgba(214, 47, 58, 0.1)); }
.price-content h2 { margin-bottom: 24px; font-size: 48px; }
.price-content > p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 32px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.price-amount .cur { font-family: 'Instrument Serif'; font-style: italic; font-size: 32px; color: var(--ink-2); }
.price-amount .num { font-family: 'Instrument Serif'; font-style: italic; font-size: 88px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.price-amount .once { font-size: 13px; color: var(--ink-3); margin-left: auto; text-align: right; font-family: 'Geist Mono'; letter-spacing: 0.02em; }
.price-amount .once b { display: block; color: var(--ink); font-weight: 500; font-size: 13px; margin-bottom: 2px; font-family: 'Geist'; text-transform: uppercase; letter-spacing: 0.06em; }
.price-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-bottom: 36px; list-style: none; padding: 0; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); list-style: none; }
.price-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(58, 138, 58, 0.12);
  border: 1px solid rgba(58, 138, 58, 0.35);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='%233a8a3a' stroke-width='2' stroke-linecap='round'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.price-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: 'Geist'; font-weight: 500; font-size: 18px; letter-spacing: -0.015em; cursor: pointer; color: var(--ink); user-select: none; }
.faq-q::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 3v10M3 8h10' stroke='%2352524d' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-size: contain;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h10' stroke='%23d62f3a' stroke-width='1.5' stroke-linecap='round'/></svg>");
}
.faq-a { margin-top: 12px; color: var(--ink-2); font-size: 15px; line-height: 1.65; max-width: 90%; display: none; }
.faq-item.open .faq-a { display: block; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final { text-align: center; padding: 140px 0 100px; position: relative; }
.final h2 { font-family: 'Geist'; font-weight: 500; font-size: clamp(56px, 7vw, 96px); line-height: 1; letter-spacing: -0.035em; margin-bottom: 32px; color: var(--ink); }
.final h2 em { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; background: linear-gradient(180deg, var(--accent), var(--accent-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.final p { font-size: 18px; color: var(--ink-2); max-width: 520px; margin: 0 auto 40px; }
.final .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

footer { border-top: 1px solid var(--border); padding: 60px 0 40px; margin-top: 40px; background: var(--bg-2); }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.foot-brand p { color: var(--ink-3); font-size: 13px; line-height: 1.65; margin-top: 18px; max-width: 340px; }
footer h4 { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Geist Mono'; font-weight: 500; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; list-style: none; }
footer ul a, footer ul button {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-align: left;
}
footer ul a:hover, footer ul button:hover { color: var(--ink); }
.foot-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; color: var(--ink-3); font-size: 12px; flex-wrap: wrap; gap: 16px; }
.foot-bottom .made { display: flex; align-items: center; gap: 8px; }
.foot-bottom .made img { width: 18px; height: 18px; border-radius: 4px; opacity: 0.85; }
.foot-social { display: flex; gap: 8px; }
.foot-social a { color: var(--ink-3); transition: color 0.15s; }
.foot-social a:hover { color: var(--accent); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .wrap { padding: 0 20px; }
  nav.top { padding: 8px 8px 8px 16px; }
  .nav-links { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-meta { gap: 20px; }
  .product-stage { aspect-ratio: 1 / 1.1; }
  .ui-card.left { left: -10px; width: 160px; }
  .ui-card.right { right: -10px; width: 150px; }
  .marquee { margin-top: 40px; }
  section.s { padding: 80px 0; }
  .title-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .c-4k, .c-mp3, .c-parallel, .c-playlist, .c-offline, .c-data, .c-windows {
    grid-column: span 2;
  }
  .c-4k, .c-mp3, .c-parallel, .c-data, .c-windows { grid-row: span 2; }
  .c-playlist, .c-offline { grid-row: span 1; }
  .resolution-display { font-size: 64px; top: 70px; }
  .data-stat { font-size: 64px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-frame { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .price-product { aspect-ratio: 1 / 1; max-width: 340px; margin: 0 auto; }
  .price-amount .num { font-size: 64px; }
  .price-features { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .foot { grid-template-columns: 1fr 1fr; gap: 32px; }
  .final { padding: 80px 0 60px; }
}

@media (max-width: 520px) {
  .brand-name { display: none; }
  .lang-toggle { display: none; }
  .hero h1.hero-h { font-size: 48px; }
  .hero-meta div:nth-child(n+3) { display: none; }
  .bento { grid-template-columns: 1fr; }
  .c-4k, .c-mp3, .c-parallel, .c-playlist, .c-offline, .c-data, .c-windows {
    grid-column: span 1;
  }
}

@media print {
  .atmosphere, nav.top, .marquee, .product-glow, .ui-card { display: none; }
  body { background: white; }
}
