/* Fonts + minimal reset for Figma hero site */

@font-face {
  font-family: "Google Sans Flex";
  src: url("GoogleSansFlex-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("GoogleSansFlex-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("Geist-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("Geist-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: clip;
  background: #fffffe;
}

:root {
  --fg-primary: #161615;
  --fg-secondary: #848483;
  --fg-muted: #737373;
  --fg-body: #525252;
  --title-muted: rgba(22, 22, 21, 0.43);
  --brand-white: #fffffe;
  --surface: #fffffe;
  --surface-muted: #f8f8f7;
  --border: #e8e8e7;
  --border-faq: #f1f1f0;
  --brand-blue: #0065ff;
  --step-num-active: #c9dffe;
  --footer-text: #f0f0f0;
  --footer-muted: #b5b5b5;
  --section-pad-x: 100px;
  --section-max: 1440px;
}

body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--fg-primary);
  background: var(--surface);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.page {
  width: 100%;
  margin: 0 auto;
  background: var(--surface);
}

@media (max-width: 768px) {
  :root {
    --section-pad-x: 48px;
  }
}

@media (max-width: 460px) {
  :root {
    --section-pad-x: 32px;
  }
}
