/* ================================================   Complete Focus — Landing Page Styles
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-blue: #165dfc;
  --primary-light: #165dfc;
  --primary-gradient: linear-gradient(135deg, #4a7dff, #38b6ff);
  --app-page-bg: #faf8f3;
  --app-page-gradient: radial-gradient(
    ellipse at 60% 0%,
    #e0eaf8 0%,
    #eceff7 35%,
    #f5f2ea 70%,
    #faf8f3 100%
  );
  --bg-light: var(--app-page-bg);
  --bg-section: transparent;
  --dark-navy: #0a1128;
  --text-heading: #1a1a2e;
  --text-body: #6b7280;
  --text-secondary: #6b7280;
  --white: #fff;
  --star-yellow: #f5a623;
  --purple: #9b59b6;
  --blue: #165dfc;
  --green: #0bb980;
  --orange: #e67e22;
  --radius-sm: 8px;
  --radius-md: 33px;
  --radius-lg: 33px;
  --radius-pill: 9999px;
  --max-width: 1280px;
  --section-padding: 80px 24px;
  --font-family: 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
  background: var(--app-page-bg);
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--app-page-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#main-content {
  background-color: var(--app-page-bg);
  background-image: var(--app-page-gradient);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#main-content > section {
  position: relative;
  z-index: 0;
}

#main-content > section:not(.hero) {
  background: transparent;
}

.categories,
.scoring,
.group-mode,
.reviews,
.pricing,
.faq,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: var(--font-family);
  font-weight: 500;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  border-radius: var(--radius-pill);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
  z-index: 1100;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgb(22, 93, 252, 0.25);
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: rgb(22, 93, 252, 0.06);
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-body);
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #4a7dff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
