:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --elevated: #f6f8fb;
  --border: #dfe5ee;
  --text: #102033;
  --muted: #5b6878;
  --faint: #7b8796;
  --blue: #245cff;
  --red: #d61f3c;
  --gold: #b47a12;
  --shadow: rgba(16, 32, 51, 0.12);
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

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

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: 54px;
  min-height: 590px;
  padding: 44px 0 64px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  margin-top: 14px;
  font-size: clamp(38px, 5.8vw, 64px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 880;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 820;
}

.hero-text {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(36, 92, 255, 0.18);
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--muted);
  background: white;
}

.product-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 12px;
  box-shadow: 0 24px 80px var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-card,
.feature-grid article,
.pro-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.preview-card {
  overflow: hidden;
  margin-top: 10px;
}

.preview-card.is-live {
  border-color: color-mix(in srgb, #159a5e 38%, var(--border));
}

.preview-card.is-hidden {
  border-color: color-mix(in srgb, var(--red) 24%, var(--border));
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 750;
}

.preview-body {
  padding: 12px;
}

.preview-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.preview-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.preview-logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px var(--border);
}

.preview-score {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 8px;
  min-width: 74px;
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.preview-score span:first-child { text-align: right; }
.preview-score span:last-child { text-align: left; }

.score-separator {
  color: var(--faint);
  font-size: 19px;
  font-weight: 800;
}

.preview-status,
.hidden-result-pill {
  width: fit-content;
  margin: 0 auto 10px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 900;
}

.preview-status.live {
  color: #159a5e;
  background: color-mix(in srgb, #159a5e 13%, transparent);
  border: 1px solid color-mix(in srgb, #159a5e 24%, transparent);
}

.preview-status.live::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 999px;
  background: #159a5e;
  vertical-align: 1px;
}

.hidden-result-pill {
  color: var(--red);
  background: color-mix(in srgb, var(--red) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--red) 28%, var(--border));
}

.preview-shield {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.preview-shield strong,
.preview-shield span {
  display: block;
}

.preview-shield strong {
  color: var(--text);
  font-size: 13px;
}

.preview-shield span {
  color: var(--muted);
  font-size: 12px;
}

.preview-shield button {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--text);
  padding: 7px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.preview-venue {
  border-top: 1px solid var(--border);
  padding-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.preview-shield + .preview-venue {
  border-top: 0;
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 12px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.preview-tabs span {
  padding: 7px 4px;
  border-radius: 8px;
  background: var(--elevated);
}

.preview-tabs .active {
  color: white;
  background: var(--blue);
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.policy h1 {
  margin-top: 10px;
}

.section-heading p:not(.eyebrow),
.contact p,
.policy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.feature-grid,
.pro-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pro-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.06);
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--blue) 36%, var(--border));
}

.pricing-top {
  display: grid;
  gap: 4px;
}

.pricing-name,
.pricing-top small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.pricing-top strong {
  color: var(--text);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 8px;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.5;
}

.feature-grid article,
.pro-card {
  padding: 18px;
}

.feature-grid p,
.pro-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.disclaimer {
  max-width: 760px;
  font-size: 14px !important;
}

.policy {
  max-width: 760px;
  padding-top: 54px;
}

.policy section {
  margin-top: 34px;
}

.policy h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.policy h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 24px;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

@media (max-width: 800px) {
  .site-header,
  footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .feature-grid,
  .pro-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
