@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600&family=Crimson+Pro:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  --bg: #ffffff;
  --bg2: #f7f4fb;
  --purple: #7b2fa0;
  --purple-light: #9b4dca;
  --purple-dim: #c8a0e0;
  --text: #2a2a35;
  --text-dim: #7a7090;
  --border: rgba(123, 47, 160, 0.15);
  --glow: rgba(123, 47, 160, 0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 20px;
  transition: color 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); }
nav a.current { color: var(--purple); }
nav a.current::after { transform: scaleX(1); }

/* HEADER */
.site-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header img {
  max-width: 340px;
  height: auto;
  display: block;
}

.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}

/* MAIN CONTENT */
main {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

/* PAGE TITLE */
.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.hero-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-text p { margin-bottom: 16px; font-size: 17px; }

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--glow);
}

.screenshot-caption {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 10px;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.08em;
}

/* ARCHIVE NOTICE */
.archive-notice {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text-dim);
  font-style: italic;
}

.archive-notice a { color: var(--purple); text-decoration: none; }
.archive-notice a:hover { text-decoration: underline; }

/* REVIEW BLOCK */
.review-featured {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative;
}

.review-featured::before {
  content: '"';
  position: absolute;
  top: -24px;
  left: 24px;
  font-size: 80px;
  color: var(--purple-dim);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-featured .source {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.review-featured blockquote {
  color: var(--text);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

/* REVIEW GRID */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 20px 24px;
}

.review-card .source {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.review-card p { font-size: 16px; font-style: italic; color: var(--text); }

/* USER QUOTES */
.user-quotes { margin-bottom: 48px; }

.user-quotes h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.user-quotes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-quotes li {
  padding: 14px 18px;
  border-left: 2px solid var(--purple-dim);
  font-style: italic;
  color: var(--text);
  font-size: 16px;
  background: var(--bg2);
}

/* VIDEO SECTION */
.video-section { margin-bottom: 48px; }

.video-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--glow);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* PROSE */
.prose p { margin-bottom: 1.2em; color: var(--text); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--purple); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* DOWNLOAD CTA */
.download-cta {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  padding: 24px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.download-cta p { font-size: 16px; color: var(--text); margin: 0; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.btn:hover { background: var(--purple-light); }

/* TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: 32px;
}

.data-table th {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:hover td { background: var(--bg2); }
.data-table a { color: var(--purple); text-decoration: none; }
.data-table a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  text-align: center;
  padding: 24px 40px;
  border-top: 1px solid var(--border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

footer a { color: var(--text-dim); }
footer a:hover { color: var(--purple); }

/* RESPONSIVE */
@media (max-width: 680px) {
  nav { padding: 0 16px; overflow-x: auto; }
  nav a { padding: 14px 10px; font-size: 12px; }
  .site-header { padding: 16px 20px; }
  .site-header-inner { gap: 16px; }
  .site-header img { max-width: 220px; }
  main { padding: 32px 20px 60px; }
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .download-cta { flex-direction: column; align-items: flex-start; }
}
