/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* === Brand Colors === */
  --primary-orange: #f97316;
  --primary-red: #ea580c;
  --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

  /* === Neutral Colors === */
  --dark-charcoal: #1a1a1a;
  --dark-gray: #262626;
  --medium-gray: #525252;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-gray: #f3f4f6;
  --border-color: #e5e7eb;

  /* === Legacy Aliases (mapped to orange brand) === */
  --primary-color: var(--primary-orange);
  --primary-dark: var(--primary-red);
  --primary-light: #fb923c;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;

  /* === Shadows === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* === Transitions === */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-charcoal);
  line-height: 1.6;
  background-color: var(--white);
}

.rating-stars svg {
  fill: var(--primary-orange);
}

.launch-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.launch-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-orange);
}

/* === Skip-to-Content Link (Accessibility) === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  left: 0;
  top: 0;
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}