:root {
  color-scheme: light;
  --paper: #f9fafb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --blue: #2457d6;
  --teal: #008272;
  --teal-dark: #00665A;
  --green: #167044;
  --amber: #a35d05;
  --rose: #b4233a;
  --chip: #f0fdfa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #008272;
  --shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm:
    0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-hover:
    0px 0px 0px 1px rgba(0, 0, 0, 0.08),
    0px 4px 12px -2px rgba(0, 0, 0, 0.10),
    0px 8px 24px 0px rgba(0, 0, 0, 0.06);
  --shadow-elevated:
    0px 0px 0px 1px rgba(0, 0, 0, 0.05),
    0px 8px 24px -4px rgba(0, 0, 0, 0.08),
    0px 16px 50px 0px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-800);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button,
select,
input {
  border-radius: 7px;
}



.hero {
  min-height: 78vh;
  display: grid;
  align-content: space-between;
  padding: 20px clamp(18px, 4vw, 56px) 42px;
  background:
    linear-gradient(120deg, rgb(255 254 250 / 0.94), rgb(247 245 239 / 0.78)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='720' viewBox='0 0 1200 720'%3E%3Cg fill='none' stroke='%23c9d1c3' stroke-width='1'%3E%3Cpath d='M0 122h1200M0 262h1200M0 402h1200M0 542h1200M120 0v720M320 0v720M520 0v720M720 0v720M920 0v720M1120 0v720'/%3E%3C/g%3E%3Cg fill='%23087f7a' opacity='.12'%3E%3Ccircle cx='210' cy='180' r='74'/%3E%3Ccircle cx='940' cy='140' r='38'/%3E%3Ccircle cx='845' cy='510' r='96'/%3E%3C/g%3E%3Cg fill='%232457d6' opacity='.10'%3E%3Crect x='650' y='180' width='260' height='72' rx='10'/%3E%3Crect x='720' y='282' width='360' height='72' rx='10'/%3E%3Crect x='610' y='384' width='300' height='72' rx='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% 48%;
  height: 260px;
  background: linear-gradient(90deg, rgb(8 127 122 / 0.18), rgb(36 87 214 / 0.10));
  filter: blur(18px);
  transform: rotate(-6deg);
  animation: soft-sweep 7s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}


/* .nav,
main,
.site-footer {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
} */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  position: relative;
  z-index: 4;
}

.brand {
  min-height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 0.25rem;
  margin: 0 1rem;
  color: var(--gray-500);
  ;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.nav-links a:hover {
  color: var(--gray-900);
  border-bottom-color: var(--gray-300);
}

.nav-links a:first-child {
  color: var(--gray-900);
}

.nav-links .language-link {
  margin-left: 1rem;
  padding: 0.25rem 0.75rem;
  border: 0;
  border-radius: 0.375rem;
  background: var(--teal-50);
  color: var(--teal);
}

.nav-toggle,
.drawer-close,
.nav-scrim,
.nav-drawer {
  display: none;
}

.nav-toggle,
.drawer-close {
  position: relative;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgb(255 254 250 / 0.88);
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgb(23 32 51 / 0.12);
  transition-property: background-color, transform, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-toggle:hover,
.drawer-close:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgb(8 127 122 / 0.28);
}

.nav-toggle:active,
.drawer-close:active {
  transform: scale(0.96);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition-property: transform, opacity;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.drawer-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.nav-lock {
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: balance;
}

@supports (text-wrap: pretty) {
  p,
  li,
  figcaption {
    text-wrap: pretty;
  }
}

h1 {
  margin: 0 0 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.lead {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.625;
}

.promise {
  margin: 0 0 2rem;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}
.promise:hover {
  text-decoration: underline;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.button,
.actions button {
  min-height: 40px;
  border: 1px solid var(--gray-300);
  background: #ffffff;
  color: var(--gray-700);
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease-in-out;
}

.button:hover,
.actions button:hover {
  background: var(--gray-50);
}

.button.primary,
.actions .primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.button.primary:hover,
.actions .primary:hover {
  background: var(--teal-dark);
}

/* Component Utilities for Restoration */
.content-page {
  max-width: 1000px;
  margin: 40px auto;
  display: block;
  padding: 0 24px;
}

.content-hero {
  margin-bottom: 48px;
}
.content-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}
.content-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.content-stack article {
  margin-bottom: 64px;
}
.content-stack h3 a {
  color: var(--teal);
}
.content-stack .chips {
  margin-top: 16px;
}
.content-stack .voice-count {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-weight: 500;
}

.content-stack .recommendations-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.content-stack .recommendation-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.content-stack .recommendation-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.content-stack .recommendation-id {
  font-size: 11px;
  color: var(--teal);
}

.tip-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.tip-header {
  margin-top: 0;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tip-icon { font-size: 28px; }
.tip-content {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-rights {
  /* SiteFooter already has .site-footer p */
}

.preset-grid-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.cta-heading {
  color: #134e4a;
  margin-bottom: 8px;
}
.cta-text {
  color: var(--gray-600);
  margin-top: 8px;
}


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

.workflow-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
}

.workflow-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 900;
}

.workflow-list strong {
  font-size: 15px;
}

.metric-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-panel div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgb(23 32 51 / 0.14);
  border-radius: 8px;
  background: #fbfcf8;
  animation: rise-in 640ms cubic-bezier(.2, .7, .2, 1) both;
}

.metric-panel div:nth-child(2) { animation-delay: 80ms; }
.metric-panel div:nth-child(3) { animation-delay: 160ms; }
.metric-panel div:nth-child(4) { animation-delay: 240ms; }

.metric-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}



.hero-grid {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 48rem;
}

.intro,
.featured-voices,
.azure-link,
.scenario-panel {
  background: #ffffff;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.scenario-panel {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 24px;
  padding: 2rem;
}

.scenario-copy {
  padding-right: 1rem;
  border-right: 1px solid var(--gray-100);
}

.scenario-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.scenario-copy p:last-child {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.625;
}

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

.preset-card {
  display: grid;
  gap: 8px;
  padding: 1.25rem;
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  background: var(--gray-50);
  transition: all 0.2s ease-in-out;
}

.preset-card:hover {
  background: var(--teal-50);
  border-color: var(--teal-200);
}

.preset-card strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}

.preset-card span {
  color: var(--gray-500);
  font-size: 0.75rem;
  line-height: 1.625;
}

.preset-card:hover span {
  color: var(--gray-700);
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 44%);
  gap: 24px;
  padding: clamp(18px, 3vw, 30px);
}

.azure-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 2rem;
  background: rgba(240, 253, 250, 0.5);
  border: 1px solid var(--teal-100);
  border-radius: 1rem;
}

.azure-link h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.intro h2,
.featured-voices h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.intro p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(120px, 0.75fr) minmax(120px, 0.75fr) minmax(110px, 0.6fr) auto;
  gap: 16px;
  padding: 1.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  align-items: end;
}

.decision-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: #fbfcf8;
}

.decision-strip strong {
  color: var(--ink);
}

.decision-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-strip li {
  padding: 5px 8px;
  border: 1px solid #d8e4d2;
  border-radius: 999px;
  color: #41513f;
  font-size: 12px;
  font-weight: 800;
}

.field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.field span {
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-900);
  padding: 8px 10px;
  outline: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

input:focus,
select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(0,130,114,0.15);
}

.compact {
  margin: 0;
}

.chips,
.voice-cards article div,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span,
.voice-cards article div span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--chip);
  color: #12645f;
  font-size: 12px;
  font-weight: 900;
  animation: chip-in 300ms ease-out both;
}

.badge-section h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.badge-section {
  margin-top: 16px;
}

.sample-first {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}

.sample-first .actions,

.sentence {
  margin: 0;
  border: 1px solid #c8d9ff;
  border-radius: 7px;
  background: #f7faff;
  padding: 13px;
  line-height: 1.7;
}

.actions {
  margin-top: 40px;
  text-align: center;
}
.actions .button {
  min-width: 200px;
}

.button.playing {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
  font-weight: 700;
}

audio {
  width: 100%;
  margin-top: 14px;
}

.featured-voices {
  padding: clamp(18px, 3vw, 30px);
}

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

.voice-cards article {
  min-width: 0;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: #fbfcf8;
  box-shadow: var(--shadow);
  transition-property: transform, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

.voice-cards article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.voice-cards h3 {
  margin: 0;
  font-size: 18px;
}

.voice-cards p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 3rem clamp(16px, 4vw, 32px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.875rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.site-footer a {
  color: var(--gray-700);
  transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
  color: var(--teal);
}

/* .simple-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
} */

.content-page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 44px clamp(18px, 4vw, 0px) 68px;
}

.content-hero {
  max-width: 760px;
  padding: 0 0 clamp(24px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
}

.content-hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
}

.content-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.content-stack {
  display: grid;
  gap: 0;
  margin-top: 4px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.content-stack article {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 4vw, 34px);
}

.content-stack article + article {
  border-top: 1px solid var(--line);
}

.content-stack h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.content-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.contact-card {
  display: grid;
  justify-items: start;
  max-width: 720px;
  border-bottom: 0;
}

.contact-email {
  margin-top: 26px;
  min-width: min(100%, 260px);
}

/* @media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro,
  .scenario-panel {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
  }

  .filters .field:first-child {
    grid-column: 1 / -1;
  }

  .preset-grid,
  .voice-cards {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-copy {
    border-right: 0;
    padding-right: 0;
  }

  .decision-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-scrim,
  .nav-drawer {
    display: block;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition-property: opacity, transform, background-color, box-shadow;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .nav-scrim {
    inset: 0;
    z-index: 40;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-drawer {
    top: 0;
    right: 0;
    z-index: 41;
    width: min(320px, calc(100vw - 40px));
    min-height: 100dvh;
    padding: 18px;
    background: var(--surface);
    transform: translateX(100%);
    box-shadow: none;
  }

  .is-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
    background: rgb(23 32 51 / 0.28);
  }

  .is-open .nav-drawer {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    box-shadow:
      -1px 0 0 rgb(23 32 51 / 0.08),
      -14px 0 42px -22px rgb(23 32 51 / 0.45);
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .drawer-close {
    display: inline-flex;
  }

  .drawer-links {
    display: grid;
    gap: 6px;
    padding-top: 22px;
  }

  .drawer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 800;
    transition-property: color, background-color, transform;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .drawer-links a:hover {
    background: rgb(8 127 122 / 0.08);
    color: var(--ink);
  }

  .drawer-links a:active {
    transform: scale(0.96);
  }

  .drawer-links .language-link {
    color: var(--teal);
    box-shadow: inset 0 0 0 1px rgb(8 127 122 / 0.22);
  }

  .content-stack article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 620px) {
  .metric-panel,
  .preset-grid,
  .filters,
  .voice-cards,
  .azure-link {
    grid-template-columns: 1fr;
  }

  .azure-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-panel div {
    min-height: 92px;
  }

} */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes soft-sweep {
  from { transform: translate3d(-18px, 0, 0) rotate(-6deg); }
  to { transform: translate3d(24px, -12px, 0) rotate(-3deg); }
}

@keyframes pulse-row {
  from { box-shadow: 0 0 0 0 rgb(36 87 214 / 0.25); }
  to { box-shadow: 0 0 0 12px rgb(36 87 214 / 0); }
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: scale(.96);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.use-case-featured {
  margin-bottom: 64px;
}
.section-title {
  font-size: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.view-more {
  margin-top: 24px;
}
.small-text {
  font-size: 13px;
}

