:root {
  --app-font-native-sans: system-ui, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", -apple-system, Arial, sans-serif;
  --app-font-text: "proxima-nova", var(--app-font-native-sans);
  --font-brand: var(--app-font-text);
  --font-body: var(--app-font-text);
  --font-display: var(--font-brand);
  --font-sans: var(--font-body);
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", "Cascadia Code", Menlo, Consolas, monospace;
  --paper: #ffffff;
  --paper-soft: #f6f4ef;
  --paper-warm: #f1eee8;
  --ink: #151515;
  --ink-soft: #313131;
  --muted: #686868;
  --faint: #8a8a8a;
  --line: #d9d5cb;
  --line-soft: #ebe7df;
  --black: #111111;
  --blue: #497cff;
  --blue-soft: #edf4ff;
  --content: 1120px;
  --article: 784px;
  font-family: var(--font-sans);
  font-synthesis-weight: none;
}

html.wf-inactive {
  --app-font-text: var(--app-font-native-sans);
  --font-brand: var(--app-font-native-sans);
  --font-body: var(--app-font-native-sans);
  --font-display: var(--app-font-native-sans);
  --font-sans: var(--app-font-native-sans);
}

html.wf-loading .gh-page {
  visibility: hidden;
}

html.wf-active .gh-page,
html.wf-inactive .gh-page {
  visibility: visible;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.gh-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.gh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(217, 213, 203, 0.58);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.gh-header-inner,
.gh-hero,
.gh-proof,
.gh-section,
.gh-footer-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.gh-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.gh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  white-space: nowrap;
}

.gh-brand:hover {
  text-decoration: none;
}

.gh-brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
}

.gh-brand-icon {
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  object-fit: cover;
  flex: none;
}

.gh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.gh-nav a:hover {
  color: var(--ink);
}

.gh-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gh-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.gh-button:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  text-decoration: none;
}

.gh-button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.gh-button.secondary:hover {
  background: var(--paper-soft);
  border-color: #c9c3b8;
}

.gh-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.gh-menu-button span,
.gh-menu-button::before,
.gh-menu-button::after {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.gh-menu-button span {
  margin: 4px 0;
}

.gh-hero {
  padding: 86px 0 76px;
  text-align: center;
}

.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.gh-hero h1,
.gh-article-title {
  max-width: 980px;
  margin: 18px auto 0;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.muted {
  color: #898989;
}

.gh-lead {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  text-wrap: balance;
}

.gh-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gh-proof {
  padding: 0 0 92px;
}

.gh-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.gh-panel,
.gh-card,
.gh-price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.gh-panel {
  padding: 28px;
}

.gh-panel.soft {
  background: var(--paper-soft);
}

.gh-panel h2,
.gh-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.gh-panel h3,
.gh-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
}

.gh-panel p,
.gh-section p,
.gh-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.gh-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 26px;
}

.gh-metric strong {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 400;
  line-height: 0.95;
}

.gh-bars {
  display: grid;
  gap: 9px;
}

.gh-bar {
  height: 14px;
  border-radius: 999px;
  background: var(--paper-warm);
  overflow: hidden;
}

.gh-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--blue);
}

.gh-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.gh-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.gh-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--black);
}

.gh-section {
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}

.gh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.gh-card-grid,
.gh-pricing-grid {
  display: grid;
  gap: 16px;
}

.gh-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gh-card {
  padding: 24px;
}

.gh-pricing {
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 92px;
}

.gh-pricing-grid {
  grid-template-columns: 1fr 1fr;
}

.gh-price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
}

.gh-price-card.featured {
  border-color: #aac9ff;
  background: var(--blue-soft);
}

.gh-price-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.gh-price {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.gh-price span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 15px;
}

.gh-price-card .gh-button {
  width: 100%;
  margin-top: 24px;
}

.gh-article-shell {
  width: min(var(--article), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.gh-article-kicker,
.gh-effective {
  text-align: center;
  color: var(--faint);
  font-size: 14px;
}

.gh-effective {
  margin: 18px 0 48px;
}

.gh-legal {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.gh-legal h2 {
  margin: 42px 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
}

.gh-legal p {
  margin: 0 0 18px;
}

.gh-legal ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.gh-legal li {
  margin: 0 0 10px;
}

.gh-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gh-note {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.gh-footer {
  background: var(--paper-warm);
  padding: 72px 0 34px;
}

.gh-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) repeat(3, minmax(130px, 0.34fr));
  gap: 52px;
}

.gh-footer-brand {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.gh-footer-note {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.gh-footer-column h2 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.gh-footer-column a {
  display: block;
  min-height: 30px;
  padding: 3px 0;
  color: var(--ink);
  font-size: 15px;
}

.gh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 68px;
  color: var(--muted);
  font-size: 14px;
}

.gh-footer-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid #d3cec3;
  border-radius: 999px;
  padding: 0 12px;
  background: #e7e3da;
  color: var(--ink);
}

@media (max-width: 900px) {
  .gh-header-inner {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    min-height: 66px;
    padding: 10px 0;
  }

  .gh-nav {
    order: 3;
    display: none;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 10px;
  }

  .gh-header[data-open="true"] .gh-nav {
    display: grid;
  }

  .gh-nav a {
    padding: 9px 0;
  }

  .gh-menu-button {
    display: inline-flex;
    flex-direction: column;
  }

  .gh-hero h1,
  .gh-article-title {
    font-size: 52px;
    line-height: 1.02;
  }

  .gh-proof-grid,
  .gh-section-head,
  .gh-pricing-grid,
  .gh-card-grid,
  .gh-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gh-header-inner,
  .gh-hero,
  .gh-proof,
  .gh-section,
  .gh-pricing,
  .gh-footer-inner,
  .gh-article-shell {
    width: min(100% - 32px, var(--content));
  }

  .gh-header-actions .secondary {
    display: none;
  }

  .gh-hero h1,
  .gh-article-title {
    font-size: 44px;
  }

  .gh-panel,
  .gh-card,
  .gh-price-card {
    padding: 22px;
  }
}
