@font-face {
  font-family: Roobert;
  src: url(https://zeppo-slop.vercel.app/captured/fonts/Roobert-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ezzo-action: #111827;
  --ezzo-action-hover: #000;
  --ezzo-font: Roobert, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ezzo-bg: #fff;
  --ezzo-text: #111827;
  --ezzo-text-muted: #6b7280;
  --ezzo-text-faint: #9ca3af;
  --ezzo-border: rgba(17, 24, 39, 0.08);
  --ezzo-radius-md: 16px;
  --ezzo-radius-lg: 24px;
  --ezzo-radius-xl: 32px;
  --ezzo-max: 1480px;
  --ezzo-pad: clamp(16px, 3vw, 32px);
  --primary: #111827;
  --primary-hover: #000;
  --accent: #111827;
  --bg: #fff;
  --surface: #fff;
  --surface-alt: #fff;
  --border: rgba(17, 24, 39, 0.08);
  --text: #111827;
  --text-muted: #6b7280;
  --font-display: Roobert, system-ui, sans-serif;
  --font-body: Roobert, system-ui, sans-serif;
}

html,
body {
  font-family: var(--ezzo-font);
  color: var(--ezzo-text);
  background: var(--ezzo-bg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ezzo-font);
  font-weight: 400;
  color: var(--ezzo-text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.125rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.container {
  max-width: var(--ezzo-max);
  padding-left: var(--ezzo-pad);
  padding-right: var(--ezzo-pad);
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--ezzo-bg);
}

.section--alt {
  background: var(--ezzo-bg);
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--ezzo-text-muted);
  max-width: 62ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.ezzo-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ezzo-text-muted);
}

.ezzo-eyebrow__brace {
  font-size: 18px;
  line-height: 1;
  color: var(--ezzo-text-faint);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--ezzo-bg);
  border-bottom: 0;
  text-align: center;
}

.page-hero h1 {
  margin-top: 0.25rem;
}

.section > .container > h2,
.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section > .container > p:not(.card__body):not(.card__meta) {
  text-align: center;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.section .article,
.section .article p,
.section .article ul,
.section .article ol,
.section .article li,
.section .article table,
.section .article blockquote,
.breadcrumb {
  text-align: left;
}

.section .article > h2,
.section .article > h3 {
  text-align: center;
}

main a:not([class]) {
  color: var(--ezzo-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--ezzo-action);
  outline-offset: 2px;
}

.btn,
.ezzo-chrome-btn,
.btn--primary,
.btn--accent,
.btn--ghost {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--ezzo-radius-md);
  font-family: var(--ezzo-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid var(--ezzo-action);
  cursor: pointer;
  background: var(--ezzo-action);
  color: #fff;
}

.btn:hover,
.ezzo-chrome-btn:hover {
  text-decoration: none;
  color: #fff;
}

.btn__fill,
.ezzo-chrome-btn__fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--ezzo-radius-md);
  background: var(--ezzo-action-hover);
  transform: translateY(50%) scale(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover .btn__fill,
.ezzo-chrome-btn:hover .ezzo-chrome-btn__fill {
  transform: translateY(0) scaleX(1.5) scaleY(2.2);
}

.btn__label,
.ezzo-chrome-btn__label {
  position: relative;
  z-index: 2;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}

.btn--outline {
  background: transparent;
  color: var(--ezzo-text);
  border-color: rgba(17, 24, 39, 0.18);
}

.btn--outline:hover {
  color: var(--ezzo-text);
}

.btn--outline .btn__fill {
  background: rgba(17, 24, 39, 0.06);
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--ezzo-bg);
  border-bottom: 0;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--ezzo-max);
  margin: 0 auto;
  padding: 0 var(--ezzo-pad);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.hero h1 {
  margin-top: 0.35rem;
  max-width: 14em;
}

.hero .lead {
  margin-top: 1.25rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.hero__cta .btn {
  border-radius: 999px;
  padding: 14px 24px;
}

.hero__note {
  margin: 1.25rem 0 0;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ezzo-text-faint);
  text-align: center;
}

.hero__media {
  width: 100%;
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: clamp(240px, 42vw, 560px);
  border-radius: var(--ezzo-radius-xl);
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid var(--ezzo-border);
  box-shadow:
    0 0 0 1px rgba(17, 24, 39, 0.04),
    0 24px 48px -12px rgba(17, 24, 39, 0.12),
    0 48px 96px -24px rgba(17, 24, 39, 0.08);
}

.hero__visual--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

.callout {
  background: var(--ezzo-bg);
  border: 1px solid var(--ezzo-border);
  border-radius: var(--ezzo-radius-lg);
}

.tile {
  border-radius: var(--ezzo-radius-lg);
  font-family: var(--ezzo-font);
}

table th {
  font-family: var(--ezzo-font);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.section--dark {
  background: var(--ezzo-action);
  color: #f3f4f6;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.btn--primary:not(:has(.btn__fill)):hover,
.btn--accent:not(:has(.btn__fill)):hover,
.btn--ghost:not(:has(.btn__fill)):hover {
  background: var(--ezzo-action-hover);
  color: #fff;
}

pre,
pre.code,
.article pre {
  background: #f6f7f8;
  color: var(--ezzo-text);
  border: 1px solid var(--ezzo-border);
  border-radius: var(--ezzo-radius-md);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  margin: 1.5rem 0;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  text-shadow: none;
}

.article pre code,
pre code {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  white-space: pre;
}

code,
.article code {
  background: #f0f1f3;
  color: var(--ezzo-text);
  border: 1px solid var(--ezzo-border);
  border-radius: 6px;
  padding: 0.08em 0.36em;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}
