@import url('https://fonts.cdnfonts.com/css/clash-display');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-dark:        #0C0C0F;
  --color-dark-2:      #161618;
  --color-dark-3:      #1F1F23;
  --color-accent:      #FF3D5A;
  --color-accent-dim:  #FF3D5A22;
  --color-white:       #FFFFFF;
  --color-off-white:   #F7F7F8;
  --color-text-muted:  #8A8A96;
  --color-border:      #E4E4E8;
  --color-success:     #22C55E;

  /* Typography */
  --font-display: 'Clash Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type scale */
  --text-hero:     clamp(36px, 4vw, 52px);
  --text-headline: clamp(22px, 2.5vw, 32px);
  --text-body-lg:  17px;
  --text-body:     15px;
  --text-label:    11px;
  --text-form:     15px;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    280ms;
  --dur-slow:    500ms;
}

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

html, body {
  height: 100%;
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
