:root {
  --ink: #07111f;
  --ink-soft: #283548;
  --muted: #657188;
  --line: #d9e2ee;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b5d57;
  --blue: #2563eb;
  --amber: #d97706;
  --rose: #be123c;
  --green: #16a34a;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center top;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(217, 226, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf3f8;
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta,
.button-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.22);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-1px);
  outline: none;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b9c8d9;
  background: #eef4f8;
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-block {
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 46px;
  align-items: center;
  padding: 78px 0 56px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid #bfdbd7;
  border-radius: 999px;
  background: #e8f4f2;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-visual {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(217, 226, 238, 0.98);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1280 / 860;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.07);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.model-grid,
.pricing-grid,
.reliability-grid {
  display: grid;
  gap: 18px;
}

.model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-card,
.price-card,
.reliability-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.07);
}

.model-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.model-video::before {
  background: var(--rose);
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.model-icon,
.reliability-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 38px;
  padding: 0 9px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.endpoint-pill {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafc;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.model-card p,
.price-card p,
.reliability-grid p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.workflow-band,
.faq-band {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.workflow-band .section-shell {
  padding: 86px 0;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: var(--amber);
  color: #ffffff;
  font-weight: 900;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.quickstart-panel {
  border: 1px solid #203044;
  border-radius: var(--radius);
  background: #07111f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quickstart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid #203044;
}

.tab-button,
.copy-button {
  min-height: 38px;
  border: 1px solid #344860;
  border-radius: 7px;
  background: #0f1d2f;
  color: #dce8f4;
  font-weight: 800;
  cursor: pointer;
}

.tab-button {
  padding: 8px 16px;
}

.tab-button.is-active {
  border-color: #74d6c9;
  background: #dff8f4;
  color: #063a36;
}

.copy-button {
  padding: 8px 12px;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: #74d6c9;
  outline: none;
}

.code-card {
  min-width: 0;
}

.code-card[hidden] {
  display: none;
}

.code-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #f8fbfd;
  font-weight: 900;
}

.code-card pre {
  margin: 0;
  padding: 0 18px 22px;
  overflow-x: auto;
}

.code-card code {
  display: block;
  min-width: 680px;
  color: #dce8f4;
  font-size: 0.92rem;
  line-height: 1.65;
  white-space: pre;
}

.api-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.api-notes div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.api-notes strong {
  display: block;
  margin-bottom: 8px;
}

.api-notes code {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pricing-band {
  background: #eef4f8;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.price-card.highlighted {
  border-color: #86d4cb;
  box-shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
}

.plan-label {
  width: fit-content;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0f7ff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlighted .plan-label {
  background: #e8f4f2;
  color: var(--teal-dark);
}

.price-copy {
  min-height: 76px;
}

.price-card .button {
  margin-top: auto;
}

.full-width {
  width: 100%;
}

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

.reliability-grid article {
  min-width: 0;
  padding: 22px;
}

.reliability-icon {
  margin-bottom: 16px;
  background: #19283b;
}

.reliability-grid article:nth-child(2) .reliability-icon,
.reliability-grid article:nth-child(5) .reliability-icon {
  background: var(--teal);
}

.reliability-grid article:nth-child(3) .reliability-icon,
.reliability-grid article:nth-child(6) .reliability-icon {
  background: var(--rose);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list summary {
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  padding: 90px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background: #07111f;
  color: #ffffff;
}

.contact-card .section-kicker {
  border-color: #4fb6aa;
  background: #0f2c2b;
  color: #bff4ed;
}

.contact-card h2 {
  color: #ffffff;
}

.contact-card p {
  margin-bottom: 0;
  color: #c6d2df;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 38px;
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
}

.docs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 30px;
  align-items: end;
  padding: 74px 0 44px;
}

.docs-hero h1 {
  max-width: 780px;
  margin: 14px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.docs-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.docs-base-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.07);
}

.docs-base-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-base-card code {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.docs-base-card p {
  margin-top: 14px;
  font-size: 0.95rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 90px;
}

.docs-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.06);
}

.docs-sidebar a {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.docs-sidebar a:hover,
.docs-sidebar a:focus-visible {
  background: #edf3f8;
  color: var(--ink);
  outline: none;
}

.docs-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.docs-section {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.07);
  scroll-margin-top: 112px;
}

.docs-section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.docs-section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.docs-section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-pill.post {
  background: var(--teal);
}

.method-pill.get {
  background: var(--blue);
}

.method-pill.neutral {
  background: var(--ink);
}

.docs-code-card {
  margin-top: 16px;
  box-shadow: none;
}

.docs-code-card + .docs-code-card,
.docs-code-card + .notice-card {
  margin-top: 16px;
}

.response-card {
  border-color: #2e425c;
}

.notice-card,
.mini-card,
.endpoint-card,
.error-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.notice-card {
  padding: 18px;
}

.notice-card strong {
  display: block;
  margin-bottom: 6px;
}

.notice-card p,
.mini-card p,
.error-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.docs-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  min-width: 0;
  padding: 18px;
}

.endpoint-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 16px;
}

.endpoint-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.endpoint-card code {
  color: var(--teal-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.table-wrap {
  width: 100%;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef4f8;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

td {
  color: var(--ink-soft);
}

td code {
  color: var(--blue);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.status-grid span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.error-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.error-list article {
  min-width: 0;
  padding: 18px;
}

.error-list span {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 7px;
  background: var(--rose);
  color: #ffffff;
  font-weight: 900;
}

.error-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 4px;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: block;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .trust-strip,
  .workflow-list,
  .pricing-grid,
  .reliability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .docs-hero,
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header,
  .trust-strip,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    gap: 30px;
    padding: 44px 0 36px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts,
  .model-grid,
  .api-notes,
  .trust-strip,
  .workflow-list,
  .pricing-grid,
  .reliability-grid {
    grid-template-columns: 1fr;
  }

  .section-block,
  .workflow-band .section-shell,
  .contact-section {
    padding: 64px 0;
  }

  .model-card,
  .price-card,
  .reliability-grid article {
    padding: 20px;
  }

  .code-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .docs-hero {
    padding: 54px 0 30px;
  }

  .docs-layout {
    padding-bottom: 64px;
  }

  .docs-sidebar,
  .docs-grid.two,
  .status-grid,
  .error-list {
    grid-template-columns: 1fr;
  }

  .docs-section {
    scroll-margin-top: 86px;
  }

  .docs-code-card code {
    min-width: 620px;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 64px;
    margin-top: 8px;
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
  }

  .contact-actions .button {
    padding-inline: 12px;
  }
}
