/* =====================================================
   JoinMyBoat — Design System
   ===================================================== */

:root {
  /* Section colors */
  --color-work:    #F5A623;
  --color-connect: #2D7DD2;
  --color-explore: #3BB273;

  /* Neutrals */
  --color-bg:         #0A1628;
  --color-bg-card:    #0F1F3D;
  --color-bg-nav:     #060E1E;
  --color-surface:    #132240;
  --color-border:     rgba(255, 255, 255, 0.08);

  /* Text */
  --color-text:       #E8EDF5;
  --color-text-muted: #7A8BA8;
  --color-text-dim:   #4A5C78;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Typography */
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-work:    0 0 32px rgba(245, 166, 35, 0.15);
  --shadow-glow-connect: 0 0 32px rgba(45, 125, 210, 0.15);
  --shadow-glow-explore: 0 0 32px rgba(59, 178, 115, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* =====================================================
   Reset & Base
   ===================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   Typography helpers
   ===================================================== */

.text-work    { color: var(--color-work); }
.text-connect { color: var(--color-connect); }
.text-explore { color: var(--color-explore); }
.text-muted   { color: var(--color-text-muted); }

/* =====================================================
   Layout helpers
   ===================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* =====================================================
   Section badges
   ===================================================== */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.section-badge--work {
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-work);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.section-badge--connect {
  background: rgba(45, 125, 210, 0.12);
  color: var(--color-connect);
  border: 1px solid rgba(45, 125, 210, 0.3);
}

.section-badge--explore {
  background: rgba(59, 178, 115, 0.12);
  color: var(--color-explore);
  border: 1px solid rgba(59, 178, 115, 0.3);
}
