/* APEX Track Experience — Static Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --radius: 0.125rem;
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --card-foreground: #0a0a0a;
  --popover: #ffffff;
  --popover-foreground: #0a0a0a;
  --primary: #0a0a0a;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f5;
  --secondary-foreground: #0a0a0a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --accent: #c41e1e;
  --accent-foreground: #ffffff;
  --destructive: #c41e1e;
  --destructive-foreground: #ffffff;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #c41e1e;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-sm { max-width: 48rem; }
.container-md { max-width: 64rem; }

/* Typography */
.font-serif {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }
.text-7xl  { font-size: 4.5rem; }

.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }

.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight  { letter-spacing: -0.02em; }
.tracking-wide   { letter-spacing: 0.05em; }
.tracking-wider  { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }

/* Text colors */
.text-foreground        { color: var(--foreground); }
.text-background        { color: var(--background); }
.text-muted-foreground  { color: var(--muted-foreground); }
.text-accent            { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-white             { color: #fff; }
.text-white-70          { color: rgba(255,255,255,0.7); }
.text-white-60          { color: rgba(255,255,255,0.6); }
.text-white-50          { color: rgba(255,255,255,0.5); }

/* Backgrounds */
.bg-background   { background: var(--background); }
.bg-foreground { background: var(--foreground); }
.bg-secondary  { background: var(--secondary); }
.bg-accent     { background: var(--accent); }
.bg-accent-15  { background: rgba(196,30,30,0.15); }
.bg-dark       { background: #0a0a0a; }

/* Borders */
.border          { border: 1px solid var(--border); }
.border-t        { border-top: 1px solid var(--border); }
.border-b        { border-bottom: 1px solid var(--border); }
.border-l-2      { border-left: 2px solid var(--accent); }
.border-0        { border: 0; }

.border-border   { border-color: var(--border); }
.border-white-10 { border-color: rgba(255,255,255,0.1); }
.border-white-40 { border-color: rgba(255,255,255,0.4); }

/* Spacing */
.px-4  { padding-left: 1rem;   padding-right: 1rem; }
.px-5  { padding-left: 1.25rem;padding-right: 1.25rem; }
.px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7  { padding-left: 1.75rem;padding-right: 1.75rem; }
.py-2  { padding-top: 0.5rem;  padding-bottom: 0.5rem; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4  { padding-top: 1rem;    padding-bottom: 1rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8  { padding-top: 2rem;    padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem;  padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem;  padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem;    padding-bottom: 4rem; }
.py-20 { padding-top: 5rem;    padding-bottom: 5rem; }
.py-24 { padding-top: 6rem;    padding-bottom: 6rem; }

.pt-2  { padding-top: 0.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-2  { padding-bottom: 0.5rem; }
.pb-8  { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-3  { padding-left: 0.75rem; }
.pl-5  { padding-left: 1.25rem; }

.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }

.mb-6  { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Gap */
.gap-2   { gap: 0.5rem; }
.gap-3   { gap: 0.75rem; }
.gap-4   { gap: 1rem; }
.gap-6   { gap: 1.5rem; }
.gap-8   { gap: 2rem; }
.gap-10  { gap: 2.5rem; }
.gap-12  { gap: 3rem; }

/* Space */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1-5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Flex / Grid */
.flex          { display: flex; }
.inline-flex   { display: inline-flex; }
.grid          { display: grid; }
.hidden        { display: none; }
.block         { display: block; }
.inline-block  { display: inline-block; }

.items-center     { align-items: center; }
.items-end        { align-items: flex-end; }
.items-start      { align-items: flex-start; }
.justify-between  { justify-content: space-between; }
.justify-center   { justify-content: center; }

.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }

.grid-cols-1   { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2   { grid-template-columns: repeat(2, 1fr); }
.grid-cols-4   { grid-template-columns: repeat(4, 1fr); }

/* Sizing */
.w-full    { width: 100%; }
.h-7       { height: 1.75rem; }
.h-14      { height: 3.5rem; }
.h-16      { height: 4rem; }
.h-28      { height: 7rem; }
.h-60vh    { height: 60vh; }
.h-78vh    { height: 78vh; }

.w-7       { width: 1.75rem; }
.w-14      { width: 3.5rem; }
.w-16      { width: 4rem; }

.max-w-sm  { max-width: 24rem; }
.max-w-md  { max-width: 28rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Position */
.relative  { position: relative; }
.absolute  { position: absolute; }
.sticky    { position: sticky; }
.fixed     { position: fixed; }

.inset-0   { top: 0; right: 0; bottom: 0; left: 0; }

.top-0     { top: 0; }
.z-40      { z-index: 40; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Misc */
.backdrop-blur { backdrop-filter: blur(8px); }
.rounded-none  { border-radius: 0; }
.rounded-full  { border-radius: 9999px; }
.rounded-sm    { border-radius: 2px; }

.text-center   { text-align: center; }
.text-right    { text-align: right; }
.text-left     { text-align: left; }

.not-italic    { font-style: normal; }

.list-disc     { list-style-type: disc; }

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

.cursor-pointer { cursor: pointer; }

.hover-opacity:hover { opacity: 0.9; }

/* Transitions */
.transition {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

/* Header */
.header-bar {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: #fff;
  color: var(--foreground);
}

.btn-dark {
  background: var(--foreground);
  color: var(--background);
  border: 1px solid var(--foreground);
}
.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-border {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--foreground);
  padding: 0.625rem 1.25rem;
}
.btn-border:hover {
  background: var(--foreground);
  color: var(--background);
}

/* Form inputs */
.form-input {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); }

.form-select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
  outline: none;
}
.form-select:focus { border-color: var(--accent); }

.form-textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
  outline: none;
  resize: vertical;
}
.form-textarea:focus { border-color: var(--accent); }

/* Table */
.table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.875rem; }
.table th, .table td { padding: 0.75rem 1rem; }
.table thead { border-bottom: 1px solid var(--border); background: var(--secondary); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.table tbody tr { border-bottom: 1px solid var(--border); }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.1); background: #0a0a0a; color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  text-align: left;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding-bottom: 1.25rem; color: var(--muted-foreground); font-size: 0.9375rem; line-height: 1.625; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--foreground);
  color: var(--background);
  padding: 1rem 1.5rem;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner.show { transform: translateY(0); }

/* Dividers */
.divide-x > * + * { border-left: 1px solid rgba(255,255,255,0.1); }
.divide-y > * + * { border-top: 1px solid var(--border); }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex        { display: flex; }
  .sm\:inline      { display: inline; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row    { flex-direction: row; }
  .sm\:text-5xl    { font-size: 3rem; }
  .sm\:text-lg     { font-size: 1.125rem; }
  .sm\:table-cell  { display: table-cell; }
}

@media (min-width: 768px) {
  .md\:flex        { display: flex; }
  .md\:hidden      { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-12{ grid-template-columns: repeat(12, 1fr); }
  .md\:col-span-1  { grid-column: span 1; }
  .md\:col-span-3  { grid-column: span 3; }
  .md\:col-span-5  { grid-column: span 5; }
  .md\:text-right  { text-align: right; }
  .md\:text-5xl    { font-size: 3rem; }
  .md\:text-7xl    { font-size: 4.5rem; }
  .md\:text-4xl    { font-size: 2.25rem; }
  .md\:text-3xl    { font-size: 1.875rem; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-center{ align-items: center; }
  .md\:table-cell  { display: table-cell; }
  .md\:grid        { display: grid; }
  .md\:py-8        { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:text-xl     { font-size: 1.25rem; }
  .md\:gap-8       { gap: 2rem; }
}
