@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --parchment: #e4e7e7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --hairline: #d2d2d7;
  --teal: #035965;
  --lime: #b7ce5c;
  --grey: #3c3c3e;
  --dark: #202123;
  --tile-2: #292a2d;
  --action: #035965;
  --brand-bg: #e4e7e7;
  --brand-wordmark: "Bitcheese", "Montserrat", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --brand-url: "Krungthep", "Montserrat", "SF Pro Text", system-ui, -apple-system, sans-serif;
  --font-display: "Montserrat", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --font-body: "Open Sans", "SF Pro Text", system-ui, -apple-system, sans-serif;
  --shadow-product: rgba(0, 0, 0, 0.18) 3px 8px 32px;
  --shadow-card: rgba(0, 0, 0, 0.16) 3px 8px 32px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.01em;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

p + p {
  margin-top: 14px;
}

:where(.lead) {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.24;
  font-weight: 400;
  text-wrap: balance;
}

:where(.copy, .section-note, .note, .sample-body, .sample-detail) {
  font-size: 17px;
  line-height: 1.58;
  text-wrap: pretty;
}

:where(.quote-support, .quote-detail, .story-card p) {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  text-wrap: pretty;
}

:where(.k, .kicker, .label) {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

:where(.h, h1, h2, h3) {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

:where(.h, h1) {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
}

:where(h2) {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.07;
}

:where(h3) {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

:where(.pill, button) {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

:where(.pill) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--action);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

:where(.pill:hover) {
  background: #064e52;
}

.attention-plus {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

:where(.card, .tier, .quote, .swatch) {
  border-radius: 18px;
}

:where(.card) {
  border: 1px solid var(--hairline);
}

:where(.quote) {
  box-shadow: var(--shadow-card);
}

.global-nav {
  height: 44px;
  justify-content: center;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
}

.nav-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  min-width: 0;
}

:where(.brand-mark) {
  width: 32px;
  height: auto;
  display: block;
}

:where(.nav-links a, .mobile-menu a) {
  min-height: 44px;
}

:where(footer) {
  background: var(--parchment);
  color: var(--grey);
}

:where(footer h4) {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

:where(footer a, footer p) {
  display: block;
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey);
}

:where(.scroll-top) {
  width: 48px;
  height: 48px;
  min-height: 48px;
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  :where(.lead) {
    font-size: 20px;
  }

  :where(.copy, .section-note, .note, p) {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  :where(.menu-toggle) {
    display: flex;
  }

  :where(.footer-grid) {
    grid-template-columns: 1fr;
  }
}
