:root {
  --gcg-navy: #063247;
  --gcg-deep: #041923;
  --gcg-blue: #0b5fc7;
  --gcg-cyan: #00a8d8;
  --gcg-teal: #008b87;
  --gcg-orange: #f27619;

  --gcg-white: #ffffff;
  --gcg-ice: #f5fbfc;
  --gcg-soft: #eef7f9;
  --gcg-text: #102a3a;
  --gcg-muted: #627888;

  --gcg-border: rgba(6, 50, 71, 0.14);
  --gcg-glass: rgba(255, 255, 255, 0.78);
  --gcg-shadow: 0 24px 70px rgba(6, 50, 71, 0.14);
  --gcg-shadow-strong: 0 40px 110px rgba(6, 50, 71, 0.24);

  --gcg-container: 1180px;
  --gcg-container-wide: 1440px;

  --gcg-safe-left: env(safe-area-inset-left);
  --gcg-safe-right: env(safe-area-inset-right);
  --gcg-safe-bottom: env(safe-area-inset-bottom);
  --gcg-safe-top: env(safe-area-inset-top);

  --gcg-transition: 220ms ease;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
  background: var(--gcg-white);
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gcg-text);
  background: #ffffff;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

::selection {
  color: white;
  background: var(--gcg-cyan);
}
