/* PeakTrail Landing — Shared Styles */
/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* JS handles scroll */
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  width: 100vw;
}

/* Language switcher — base styles only, positioning handled by each layout */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 20px;
  padding: 4px;
}

/* Logo */
.pt-logo {
  display: inline-block;
  width: 48px;
  height: 48px;
}

.pt-logo-sm {
  display: inline-block;
  width: 32px;
  height: 32px;
}

/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
