/* NOVA Brandworks Reviews — brand: #116df8 electric blue on #150438 ink */
:root {
  --ink: #120433;
  --ink-2: #1b0a42;
  --blue: #116df8;
  --blue-soft: #5b9bff;
  --cream: #f4f1ea;
  --cream-dim: rgba(244, 241, 234, 0.64);
  --line: rgba(244, 241, 234, 0.14);
  --gold: #f5b942;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ---------- type ---------- */
h1, h2, .stat-num, .btn-big {
  font-family: "Outfit", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue-soft);
}

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  margin: 20px 0 28px;
}

h1 .accent { color: var(--blue); }

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--cream-dim);
  max-width: 58ch;
}

/* ---------- header ---------- */
header {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}

.logo span { color: var(--blue); }

nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-left: 28px;
  transition: color 0.2s;
}

nav a:hover { color: var(--cream); }

nav a.nav-cta {
  color: var(--ink);
  background: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

nav a.nav-cta:hover { background: var(--blue); color: var(--cream); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero { padding: 96px 0 80px; position: relative; }

.hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -240px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(17, 109, 248, 0.28) 0%, transparent 62%);
  pointer-events: none;
}

.reveal { opacity: 0; transform: translateY(24px); animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.46s; }

@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 72px 0;
}

.stat {
  background: var(--ink);
  padding: 40px 32px 36px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: background 0.25s;
}

.stat:hover { background: var(--ink-2); }

.stat:hover .stat-num { color: var(--blue-soft); }

.stat-num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  transition: color 0.25s;
}

.stat-label {
  margin-top: 14px;
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.5;
}

.stat-client {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  opacity: 0.55;
}

.stat::after {
  content: "→";
  position: absolute;
  top: 32px;
  right: 28px;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-6px);
}

.stat:hover::after { opacity: 1; transform: none; }

/* ---------- platforms ---------- */
.platforms { padding: 40px 0 96px; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.platform-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  background: linear-gradient(160deg, rgba(244, 241, 234, 0.03), transparent 55%);
}

.platform-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(17, 109, 248, 0.45);
}

.platform-name {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.platform-desc { color: var(--cream-dim); font-size: 15px; }

.platform-link { color: var(--blue-soft); font-weight: 600; font-size: 15px; margin-top: auto; padding-top: 8px; }

.stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; }

/* ---------- cta band ---------- */
.cta-band {
  border-top: 1px solid var(--line);
  padding: 88px 0;
  text-align: center;
}

.btn-big {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  margin: 10px 8px 0;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-blue {
  background: var(--blue);
  color: var(--cream);
  box-shadow: 0 12px 32px -12px rgba(17, 109, 248, 0.7);
}

.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(17, 109, 248, 0.85); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}

.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }

/* ---------- review page ---------- */
.review-hero { padding: 80px 0 40px; text-align: center; }

.review-hero .lede { margin: 0 auto; }

.review-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 56px auto 0;
}

.review-btn {
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  background: linear-gradient(170deg, rgba(244, 241, 234, 0.04), transparent 60%);
}

.review-btn:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 28px 56px -28px rgba(17, 109, 248, 0.6); }

.review-btn .platform-name { font-size: 28px; display: block; margin: 14px 0 8px; }

.review-btn .hint { color: var(--cream-dim); font-size: 14px; }

.review-btn .icon { font-size: 34px; }

.tips {
  max-width: 620px;
  margin: 72px auto 96px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
}

.tips h2 { font-size: 22px; }

.tips ul { list-style: none; margin-top: 16px; }

.tips li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--cream-dim);
  font-size: 15px;
}

.tips li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--cream-dim);
  font-size: 14px;
}

footer a { color: var(--cream); text-decoration: none; font-weight: 500; }

footer a:hover { color: var(--blue-soft); }

@media (max-width: 640px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}
