:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #242424;
  --ink-soft: #4f4f4f;
  --muted: #6b6b6b;
  --muted-light: #8b8b8b;
  --line: #e6e6e6;
  --line-soft: #f2f2f2;
  --surface: #f7f7f7;
  --surface-strong: #f2f2f2;
  --green: #1a8917;
  --green-dark: #156d12;
  --green-soft: #eef7ed;
  --blue: #536471;
  --amber: #c58f2c;
  --shadow-1: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-3: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow: var(--shadow-2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max: 1440px;
  --content: 1280px;
  --wide: 1600px;
  --reading: 720px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;
  --space-5xl: 160px;
  --motion-fast: 200ms ease-out;
  --motion-medium: 300ms ease-out;
  --motion-slow: 400ms ease-out;
  --font-ui: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
  --font-serif: Charter, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, ui-serif, serif;
  --font-display: var(--font-ui);
  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

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

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

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

[hidden] {
  display: none !important;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(230, 230, 230, 0.94);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  transition:
    min-height var(--motion-fast),
    background var(--motion-fast),
    border-color var(--motion-fast);
}

body.is-scrolled .site-header {
  min-height: 60px;
  border-bottom-color: rgba(234, 234, 234, 1);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 166px;
}

.brand img {
  height: 26px;
  width: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(6px, 1vw, 18px);
}

.nav-item {
  position: static;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 72px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open .nav-trigger {
  color: #000;
}

.mega-panel a:focus-visible,
.footer-list a:focus-visible,
.language-selector:focus-visible,
.mobile-group summary:focus-visible,
.footer-mobile-group summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.nav-trigger:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--green);
}

.nav-trigger svg {
  width: 13px;
  height: 13px;
  transition: transform var(--motion-fast);
}

body.is-scrolled .nav-trigger {
  min-height: 60px;
}

.nav-item.is-open .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg,
.nav-item:hover .nav-trigger svg {
  transform: rotate(180deg);
}

.mega-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100vw;
  max-height: calc(100svh - 72px);
  overflow: auto;
  transform: translateY(-4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-1);
  transition:
    opacity var(--motion-fast),
    visibility var(--motion-fast),
    transform var(--motion-fast);
}

body.is-scrolled .mega-panel {
  top: 60px;
  max-height: calc(100svh - 60px);
}

.mega-panel-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3.6vw, 56px) clamp(36px, 4.6vw, 48px);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}

.nav-item.is-open .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-section-title {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mega-list,
.footer-list,
.mobile-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-list a,
.mobile-list a {
  display: flex;
  align-items: flex-start;
  min-height: 0;
  padding: 8px 0;
  color: var(--ink);
}

.mega-list a:hover,
.mobile-list a:hover {
  color: #000;
  text-decoration: none;
}

.mega-list strong,
.mobile-list strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.22;
  transition: color var(--motion-fast);
}

.mega-list em,
.mobile-list em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  letter-spacing: -0.008em;
  line-height: 1.5;
}

.mega-column:first-child .mega-list strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.22;
}

.mega-column:first-child .mega-list em {
  margin-top: 4px;
  font-size: 14px;
}

.mega-column + .mega-column .mega-list {
  gap: 4px;
}

.mega-column + .mega-column .mega-list strong {
  font-size: 18px;
  letter-spacing: -0.024em;
}

.mega-feature-link {
  display: block;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mega-column-motto .mega-feature-link {
  padding-top: 0;
  border-top: 0;
}

.mega-feature-link strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.28;
}

.mega-feature-link span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.008em;
  line-height: 1.5;
}

.mega-feature-link b {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.008em;
}

.mega-list a:hover strong,
.mega-feature-link:hover strong {
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}

.header-link:hover {
  background: var(--line-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition:
    background var(--motion-fast),
    color var(--motion-fast),
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #000;
  border-color: #000;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover,
.button-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding: 0 22px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(92svh - 72px), 960px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-editorial {
  min-height: clamp(640px, calc(88svh - 72px), 900px);
  background:
    radial-gradient(circle at 78% 28%, rgba(232, 243, 232, 0.9), rgba(255, 255, 255, 0) 34%),
    #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 22%, rgba(255, 255, 255, 0.62) 48%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-height: clamp(640px, calc(92svh - 72px), 960px);
  margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) clamp(22px, 4vw, 64px) 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  align-content: center;
}

.hero-copy {
  width: min(620px, 100%);
}

.hero-kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(56px, 7vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  font-family: var(--font-ui);
}

.hero p {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.34;
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-preview {
  display: grid;
  gap: 16px;
}

.hero-preview article,
.hero-profile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(12px);
}

.hero-preview article {
  padding: clamp(28px, 4vw, 42px);
}

.hero-preview article > span,
.case-card > span {
  display: inline-flex;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.hero-preview h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.hero-preview p {
  margin: 18px 0 0;
  max-width: 440px;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
}

.hero-preview dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
}

.hero-preview dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-preview dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.hero-profile {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.hero-profile strong {
  color: var(--ink);
  font-size: 16px;
}

.hero-profile span {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 64px);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.hero-next::before {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line);
}

.section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 88px);
}

.section-label {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.page-section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-weight: 500;
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
  font-family: var(--font-serif);
}

.section-statement {
  max-width: 780px;
  margin: clamp(34px, 5vw, 58px) 0 0 auto;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.22;
}

.comparison-grid,
.steps-grid,
.case-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.comparison-grid article,
.steps-grid article,
.case-card {
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.comparison-grid span,
.steps-grid span {
  color: var(--muted);
  font-size: 14px;
}

.comparison-grid h3,
.steps-grid h3,
.case-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.12;
}

.comparison-grid p,
.steps-grid p,
.case-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
}

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

.case-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.case-card em {
  margin-top: auto;
  color: var(--green);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-card svg,
.editorial-link svg,
.focus-icon {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex: 0 0 auto;
}

.feature-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.feature-card p,
.editorial-link p,
.purpose-item p,
.page-card p,
.policy-row p {
  margin: 0;
  color: var(--muted);
}

.feature-card span,
.text-link {
  margin-top: auto;
  color: var(--green);
  font-size: 15px;
  font-weight: 660;
}

.feature-card:hover span,
.text-link:hover {
  color: var(--green-dark);
}

.business-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, auto);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.business-band .section-label {
  margin-bottom: 14px;
}

.business-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  font-family: var(--font-serif);
  font-weight: 500;
}

.business-band p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 680px;
  font-family: var(--font-serif);
  line-height: 1.55;
}

.purpose-grid,
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-item,
.editorial-link,
.page-card,
.policy-row {
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.purpose-item {
  display: grid;
  gap: 18px;
}

.purpose-item h3,
.editorial-link h3,
.page-card h3,
.policy-row h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.focus-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.focus-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.6fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.focus-row h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
  font-family: var(--font-serif);
  font-weight: 500;
}

.focus-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-family: var(--font-serif);
  line-height: 1.5;
}

.editorial-link {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editorial-link .text-link {
  margin-top: auto;
}

.home-hero {
  min-height: calc(90svh - 72px);
  background: #fff;
  border-bottom: 0;
}

.home-hero-inner {
  min-height: calc(90svh - 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.9fr);
  padding-top: clamp(88px, 11vh, 144px);
  padding-bottom: clamp(56px, 8vh, 96px);
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-hero .hero-copy > p {
  max-width: 620px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

.hero-case-stack {
  position: relative;
  min-height: 460px;
}

.hero-case-showcase {
  min-width: 0;
}

.hero-case-card {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 96px);
  min-height: 390px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  transform-origin: left center;
  transition:
    transform var(--motion-slow),
    opacity var(--motion-medium),
    box-shadow var(--motion-medium),
    border-color var(--motion-medium);
}

.hero-case-card[data-state="active"] {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-case-card[data-state="next"] {
  z-index: 2;
  opacity: 0.78;
  transform: translateX(48px) scale(0.965);
}

.hero-case-card[data-state="last"] {
  z-index: 1;
  opacity: 0.48;
  transform: translateX(96px) scale(0.93);
}

.hero-case-card:hover,
.hero-case-card:focus-visible {
  border-color: var(--line);
  outline: 0;
}

.hero-case-card[data-state="active"]:hover,
.hero-case-card[data-state="active"]:focus-visible {
  box-shadow: var(--shadow-3);
}

.hero-case-index,
.workflow-shot span,
.focus-note span,
.worksheet-list span,
.business-card span,
.case-card small,
.usage-card span {
  display: inline-flex;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-case-card h2 {
  margin: 42px 0 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-family: var(--font-ui);
  font-weight: 600;
}

.hero-case-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  font-family: var(--font-serif);
}

.hero-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 22px;
}

.hero-case-meta span {
  padding: 6px 10px;
  background: var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.hero-case-link:hover,
.hero-case-link:focus-visible {
  color: var(--green-dark);
}

.home-page .section {
  border-bottom: 0;
}

.home-page .section-heading h2,
.home-page .cta-band h2 {
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.home-page .section-heading > .section-label {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading-link,
.final-cta-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.section-heading-link:hover,
.section-heading-link:focus-visible {
  color: var(--green-dark);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-card {
  min-width: 0;
  padding: 0;
  background: #fff;
  transition:
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.workflow-card:hover,
.feature-card:hover,
.capability-feature:hover,
.business-card:hover,
.member-card:hover {
  border-color: rgba(26, 137, 23, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.workflow-shot {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  background: transparent;
}

.workflow-shot strong,
.worksheet-list strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.workflow-shot p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.workflow-card h3 {
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.workflow-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-cta {
  display: flex;
  margin-top: clamp(32px, 5vw, 56px);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-feature,
.capability-grid .feature-card {
  background: #fff;
}

.capability-feature {
  display: grid;
  padding: 0;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.capability-shot {
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  background: #fff;
}

.capability-shot span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.capability-shot h3 {
  margin: clamp(38px, 5vw, 64px) 0 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.capability-shot p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.capability-shot dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(30px, 4vw, 44px) 0 0;
}

.capability-shot dt {
  color: var(--muted);
  font-size: 13px;
}

.capability-shot dd {
  margin: 5px 0 0;
  font-weight: 650;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.capability-grid .feature-card {
  min-height: 0;
  border: 0;
}

.focus-explorer {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 1px;
  align-items: start;
  border: 1px solid var(--line);
  background: var(--line);
}

.focus-sidebar {
  min-width: 0;
  background: #fff;
}

.focus-panels,
.focus-panel {
  min-width: 0;
  width: 100%;
}

.focus-tabs,
.case-tab-list {
  display: flex;
  gap: 8px;
}

.focus-tabs {
  flex-direction: column;
  gap: 0;
}

.focus-tab,
.case-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.focus-tab {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 22px 24px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--line);
}

.case-tab {
  min-height: 42px;
  padding: 0 2px;
  border-bottom: 1px solid transparent;
}

.focus-tab.is-active,
.case-tab.is-active {
  color: var(--ink);
}

.focus-tab.is-active {
  border-left-color: var(--green);
  background: var(--surface);
}

.case-tab.is-active {
  border-bottom-color: var(--ink);
}

.focus-tab-description {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transition:
    max-height var(--motion-medium),
    opacity var(--motion-medium);
}

.focus-tab:hover .focus-tab-description,
.focus-tab:focus-visible .focus-tab-description,
.focus-tab.is-active .focus-tab-description {
  max-height: 100px;
  opacity: 1;
}

.focus-tab:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.focus-panel {
  display: grid;
  gap: 30px;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
}

.focus-panel h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.focus-panel p {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.worksheet-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.worksheet-card {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition:
    background var(--motion-fast),
    color var(--motion-fast);
}

.worksheet-card:hover,
.worksheet-card:focus-visible {
  background: var(--surface);
}

.worksheet-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.worksheet-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.worksheet-card b {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 650;
}

.worksheet-card-about {
  grid-column: span 2;
  background: var(--surface);
}

.worksheet-card-about strong {
  max-width: 540px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
}

.case-tabs {
  display: grid;
  gap: 28px;
}

.case-tab-list {
  flex-wrap: wrap;
}

.case-card {
  display: grid;
  align-content: start;
  gap: 0;
}

.case-card small {
  margin-top: 18px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.metrics-row article {
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
}

.metrics-row strong {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.metrics-row span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.testimonial-grid,
.business-card-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.testimonial-grid figure,
.business-card {
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.usage-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  transition:
    background var(--motion-fast),
    transform var(--motion-fast);
}

.usage-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.usage-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.usage-card b {
  margin-top: auto;
  padding-top: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
}

.usage-card:hover,
.usage-card:focus-visible {
  background: var(--surface);
}

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

.business-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.business-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.business-card b {
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
}

.business-card small {
  color: var(--muted);
  line-height: 1.45;
}

.business-card b {
  margin-top: auto;
  color: var(--green);
  font-size: 15px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(80px, 13vw, 170px) clamp(22px, 4vw, 64px) clamp(58px, 9vw, 110px);
}

.page-eyebrow {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(48px, 8vw, 112px);
  font-family: var(--font-serif);
  font-weight: 500;
}

.page-hero p {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.36;
  font-family: var(--font-serif);
}

.page-hero-actions {
  margin-top: 34px;
}

.page-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  min-width: 0;
}

.page-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.page-toc a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

.page-toc a:hover {
  color: var(--green);
}

.page-content {
  display: grid;
  gap: 70px;
  min-width: 0;
}

.page-section {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.page-section h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.page-section > p {
  max-width: 830px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  font-family: var(--font-serif);
  line-height: 1.58;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  min-width: 0;
}

.page-card {
  min-height: 220px;
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.page-card-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.help-center-page {
  background: #fff;
}

.help-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-left: clamp(22px, 4vw, 52px);
  padding-right: clamp(22px, 4vw, 52px);
}

.help-hero {
  padding: clamp(68px, 9vw, 112px) 0 clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.help-breadcrumbs {
  margin-bottom: 34px;
}

.help-eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
}

.help-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.help-search {
  position: relative;
  max-width: 760px;
  margin-top: 34px;
}

.help-search input {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.help-search input:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.help-search-results {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.help-search-results a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 8px;
}

.help-search-results a:hover,
.help-search-results a:focus-visible {
  background: var(--surface);
}

.help-search-results strong {
  color: var(--ink);
  font-size: 15px;
}

.help-search-results span,
.help-search-results p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.help-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(38px, 7vw, 90px);
  padding-top: clamp(50px, 7vw, 84px);
  padding-bottom: clamp(72px, 9vw, 118px);
}

.help-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.help-toc strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.help-toc a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.help-toc a:hover {
  color: var(--green);
}

.help-content {
  display: grid;
  gap: 64px;
  min-width: 0;
}

.help-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 100px;
}

.help-section h2,
.help-related h2,
.help-support h2,
.help-feedback h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.help-section > p,
.help-support p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
}

.help-article-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.help-article-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

a.help-article-card:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}

.help-article-card h3 {
  font-size: 19px;
}

.help-article-card p,
.help-article-card li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.help-article-card p,
.help-article-card ul {
  margin: 0;
}

.help-article-card ul {
  padding-left: 20px;
}

.help-article-card > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
}

.help-related,
.help-support,
.help-feedback {
  display: grid;
  gap: 20px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.help-related > div {
  display: grid;
  border-top: 1px solid var(--line);
}

.help-related a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 620;
}

.help-support {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.help-support h2 {
  font-size: 26px;
}

.help-support p {
  margin-top: 8px;
  font-size: 15px;
}

.help-feedback > div {
  display: flex;
  gap: 10px;
}

.help-feedback button {
  min-width: 82px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.help-feedback button:hover,
.help-feedback button.is-selected {
  border-color: var(--green);
  color: var(--green);
}

.help-feedback p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.page-card-worksheet {
  background: var(--surface);
}

.page-card-case-study {
  min-height: 260px;
}

.page-card-case-study .page-card-label,
.page-card-worksheet .text-link {
  color: var(--green-dark);
}

.page-card p,
.page-card li {
  overflow-wrap: break-word;
}

.page-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--surface);
  scroll-margin-top: 96px;
}

.form-consent {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--green);
  font-weight: 650;
}

.policy-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.policy-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band {
  background: #191919;
  color: #fff;
}

.home-final-cta {
  border-bottom: 0;
}

.home-final-cta .section-inner {
  grid-template-columns: minmax(0, 1fr);
}

.final-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.final-cta-links a {
  color: #fff;
}

.final-cta-links a:hover,
.final-cta-links a:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-family: var(--font-serif);
  line-height: 1.55;
}

.product-overview-hero {
  background: #fff;
}

.product-overview-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 128px) clamp(22px, 4vw, 64px) clamp(80px, 9vw, 112px);
}

.product-overview-hero h1 {
  max-width: 900px;
  margin: 28px 0 0;
  font-family: var(--font-ui);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.product-overview-hero-copy {
  max-width: 780px;
  margin: 38px 0 0;
}

.product-overview-hero-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.product-overview-hero-copy p + p {
  margin-top: 18px;
}

.product-overview-section .section-inner {
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(80px, 10vw, 128px);
}

.product-overview-section h2,
.product-overview-cta h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.product-editorial-split,
.product-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: start;
}

.product-editorial-copy h2 {
  max-width: 850px;
}

.product-prose {
  max-width: 730px;
  margin-top: 34px;
}

.product-prose p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.58;
}

.product-prose p + p {
  margin-top: 16px;
}

.product-reading-section {
  background: var(--surface);
}

.product-reading-block {
  max-width: 820px;
  margin: 0 auto;
}

.product-reading-block h2 {
  margin-top: 28px;
}

.product-section-heading {
  margin-bottom: clamp(44px, 7vw, 88px);
}

.product-section-heading > div > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.58;
}

.product-comparison,
.product-workflow-grid,
.product-focus-grid,
.product-action-grid,
.product-benefit-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.product-comparison article {
  min-height: 360px;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
}

.product-comparison-highlight {
  position: relative;
  background: var(--surface) !important;
  box-shadow: inset 0 4px 0 var(--green);
}

.product-comparison .product-comparison-highlight span {
  color: var(--green);
}

.product-comparison span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.product-comparison blockquote {
  margin: 64px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.28;
}

.product-comparison-closing {
  max-width: 760px;
  margin: 42px 0 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
}

.product-workflow-grid,
.product-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-workflow-grid article,
.product-action-grid article,
.product-benefit-grid article {
  min-height: 270px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}

.product-card-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 32px;
  color: var(--green);
}

.product-workflow-grid h3,
.product-benefit-grid h3,
.product-action-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
}

.product-workflow-grid p,
.product-benefit-grid p,
.product-action-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-focus-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-focus-grid a {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  transition: background var(--motion-fast);
}

.product-focus-grid a:hover,
.product-focus-grid a:focus-visible {
  background: var(--surface);
}

.product-focus-grid span {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.2;
}

.product-focus-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-focus-grid b {
  margin-top: auto;
  padding-top: 28px;
  color: var(--green);
  font-size: 14px;
}

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

.product-thought-leaders-section .product-action-grid h3 {
  font-weight: 600;
}

.product-process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-process-flow li {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.product-process-flow li:last-child {
  border-right: 0;
}

.product-process-flow span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.product-process-flow strong {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.3;
}

.product-overview-cta .section-inner {
  grid-template-columns: minmax(0, 1fr);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px clamp(22px, 4vw, 64px) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 1.05fr) repeat(5, minmax(112px, 1fr));
  column-gap: clamp(30px, 3.8vw, 64px);
  row-gap: 40px;
  align-items: start;
}

.footer-brand img,
.footer-mobile-brand img {
  width: 172px;
  height: auto;
}

.footer-brand p,
.footer-mobile-brand p {
  max-width: 240px;
  margin: 20px 0 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.5;
}

.footer-get-started {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.footer-get-started span {
  transition: transform var(--motion-fast);
}

.footer-get-started:hover span,
.footer-get-started:focus-visible span {
  transform: translateX(3px);
}

.footer-mobile-brand {
  display: none;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 36px;
}

.footer-group h2 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.footer-list {
  gap: 9px;
}

.footer-list a {
  color: #111;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-list a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-mobile {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #111;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social-link {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.footer-social-link img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.language-selector {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f5;
  color: #111;
  font-size: 15px;
  cursor: pointer;
}

.language-selector:hover {
  background: var(--line-soft);
}

.terms-page {
  background: #fff;
}

.policy-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.policy-hero {
  padding: 108px 0 46px;
  border-bottom: 1px solid var(--line);
  background: #fbfbfb;
}

.policy-hero h1 {
  max-width: 780px;
  margin: 18px 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.policy-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.policy-eyebrow,
.policy-updated {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-updated {
  margin-top: 22px;
}

.policy-breadcrumbs {
  margin-bottom: 24px;
}

.policy-index-content {
  padding: 64px 0 96px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 72px;
  align-items: start;
  padding: 56px 0 96px;
}

.policy-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-toc strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc a,
.policy-toc-mobile a {
  color: var(--muted);
  text-decoration: none;
}

.policy-toc a:hover,
.policy-toc-mobile a:hover {
  color: var(--ink);
}

.policy-toc-mobile {
  display: none;
}

.policy-content {
  max-width: 760px;
}

.policy-section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.policy-section h2,
.policy-related h2,
.policy-contact h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.policy-section p,
.policy-section li,
.policy-contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-section ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.policy-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 14px;
}

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

.policy-table th {
  color: var(--ink);
  background: #f7f7f7;
  font-weight: 800;
}

.policy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-related {
  padding: 10px 0 40px;
}

.policy-related > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.policy-related a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
}

.policy-related span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.policy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8f8f8;
}

@media (max-width: 860px) {
  .policy-shell {
    width: min(100% - 28px, 720px);
  }

  .policy-hero {
    padding: 84px 0 34px;
  }

  .policy-hero h1 {
    font-size: clamp(36px, 13vw, 54px);
  }

  .policy-layout {
    display: block;
    padding: 32px 0 72px;
  }

  .policy-toc {
    display: none;
  }

  .policy-toc-mobile {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
  }

  .policy-toc-mobile summary {
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
  }

  .policy-toc-mobile[open] a {
    display: block;
    padding-top: 10px;
  }

  .policy-related > div {
    grid-template-columns: 1fr;
  }

  .policy-contact {
    display: grid;
    padding: 22px;
  }
}

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

@media (max-width: 1120px) {
  .desktop-nav,
  .header-link,
  .header-actions .button {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 0;
    height: calc(100svh - 72px);
    max-height: calc(100svh - 72px);
    overflow: auto;
    display: none;
    padding: 8px clamp(18px, 5vw, 34px) 34px;
    z-index: 250;
    background: #fff;
  }

  body.is-scrolled .site-header {
    min-height: 72px;
  }

  body.menu-open .mobile-menu {
    display: block;
  }

  .mobile-group {
    border-bottom: 1px solid var(--line);
  }

  .mobile-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.025em;
    cursor: pointer;
    list-style: none;
  }

  .mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-group summary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--motion-fast);
  }

  .mobile-group[open] summary svg {
    transform: rotate(180deg);
  }

  .mobile-column {
    padding: 0 0 22px;
  }

  .mobile-column p {
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
  }

  .mobile-list a {
    min-height: 54px;
    padding: 5px 0;
  }

  .mobile-list strong {
    font-size: 17px;
    letter-spacing: -0.01em;
  }

  .mobile-list em {
    font-size: 14px;
    letter-spacing: -0.005em;
  }

  .mobile-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 24px;
  }

  .mobile-utility {
    display: grid;
    gap: 2px;
    padding: 22px 0 4px;
  }

  .mobile-utility a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--muted);
    font-size: 16px;
  }

  .mobile-utility a:hover,
  .mobile-utility a:focus-visible {
    color: #000;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 12vw, 92px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

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

  .home-hero-inner,
  .capability-layout,
  .focus-explorer {
    grid-template-columns: 1fr;
  }

  .hero-case-stack {
    min-height: 420px;
  }

  .hero-case-card {
    position: absolute;
  }

  .workflow-strip,
  .business-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid,
  .metrics-row,
  .usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-tabs {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 34vw);
    grid-template-columns: none;
    overflow-x: auto;
  }

  .focus-tab {
    min-height: 100%;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .focus-tab.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--green);
  }

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

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

  .business-band,
  .section-heading,
  .product-editorial-split,
  .product-section-heading,
  .page-layout,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

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

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

  .product-process-flow li:nth-child(3) {
    border-right: 0;
  }

  .product-process-flow li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .page-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .help-layout {
    grid-template-columns: 1fr;
  }

  .help-toc {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }

  .help-toc::-webkit-scrollbar {
    display: none;
  }

  .help-toc strong,
  .help-toc a {
    flex: 0 0 auto;
  }

  .footer-top {
    grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  body.is-scrolled .site-header {
    min-height: 64px;
  }

  .brand {
    width: 164px;
  }

  .brand img {
    height: auto;
  }

  .mobile-menu {
    top: 64px;
    bottom: 0;
    height: calc(100svh - 64px);
    max-height: calc(100svh - 64px);
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.7) 58%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    align-content: start;
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .home-hero-inner {
    gap: 34px;
    padding-top: 64px;
  }

  .hero-case-stack {
    min-height: 440px;
  }

  .hero-case-card {
    width: calc(100% - 48px);
    min-height: 390px;
  }

  .hero-case-card[data-state="next"] {
    transform: translateX(24px) scale(0.97);
  }

  .hero-case-card[data-state="last"] {
    transform: translateX(48px) scale(0.94);
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 44px);
  }

  .hero p {
    max-width: min(100%, 360px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero p,
  .page-hero p {
    font-size: 19px;
  }

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

  .page-hero-inner,
  .page-layout {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-overview-hero-inner {
    padding: 72px 22px 78px;
  }

  .product-overview-hero h1 {
    font-size: clamp(43px, 13vw, 56px);
  }

  .product-overview-hero-copy p,
  .product-section-heading > div > p,
  .product-prose p {
    font-size: 19px;
  }

  .product-overview-section .section-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-comparison,
  .product-workflow-grid,
  .product-focus-grid,
  .product-action-grid,
  .product-benefit-grid,
  .product-process-flow {
    grid-template-columns: 1fr;
  }

  .product-comparison article {
    min-height: 280px;
  }

  .product-comparison blockquote {
    margin-top: 42px;
  }

  .product-workflow-grid article,
  .product-action-grid article,
  .product-benefit-grid article,
  .product-focus-grid a {
    min-height: 230px;
  }

  .product-process-flow li,
  .product-process-flow li:nth-child(3) {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-process-flow li:last-child {
    border-bottom: 0;
  }

  .page-hero p,
  .page-section > p {
    max-width: min(100%, 340px);
  }

  .page-card h3,
  .page-card p,
  .page-card ul {
    max-width: min(100%, 280px);
  }

  .page-toc {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scrollbar-width: none;
  }

  .page-toc::-webkit-scrollbar {
    display: none;
  }

  .page-toc a {
    flex: 0 0 auto;
  }

  .help-hero {
    padding-top: 54px;
  }

  .help-layout {
    padding-top: 38px;
  }

  .help-support {
    grid-template-columns: 1fr;
  }

  .help-support .button {
    width: 100%;
  }

  .feature-grid,
  .comparison-grid,
  .steps-grid,
  .case-grid,
  .purpose-grid,
  .editorial-grid,
  .workflow-strip,
  .capability-grid,
  .metrics-row,
  .usage-grid,
  .business-card-grid,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .capability-shot {
    min-height: 320px;
  }

  .focus-panel {
    min-height: auto;
    padding: 28px;
  }

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

  .worksheet-card-about {
    grid-column: auto;
  }

  .case-tabs .case-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .case-tabs .case-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }

  .section-statement {
    margin-left: 0;
  }

  .hero-preview dl {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    display: grid;
  }

  .hero-profile span {
    text-align: left;
  }

  .feature-card {
    min-height: 230px;
  }

  .case-card {
    min-height: 280px;
  }

  .business-band {
    align-items: stretch;
  }

  .business-band .button {
    width: 100%;
  }

  .focus-row,
  .policy-row {
    grid-template-columns: 1fr;
  }

  .focus-icon {
    width: 32px;
    height: 32px;
  }

  .cta-band .button {
    width: 100%;
  }

  .mobile-ctas {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 44px 22px 28px;
  }

  .footer-top {
    display: none;
  }

  .footer-mobile-brand {
    display: block;
    padding-bottom: 32px;
  }

  .footer-mobile-brand img {
    width: 172px;
  }

  .footer-mobile-brand p {
    max-width: 260px;
  }

  .footer-mobile {
    display: grid;
  }

  .footer-mobile-group {
    border-bottom: 1px solid var(--line);
  }

  .footer-mobile-group:last-child {
    border-bottom: 0;
  }

  .footer-mobile-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    color: #111;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    cursor: pointer;
    list-style: none;
  }

  .footer-mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .footer-mobile-group summary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--motion-fast);
  }

  .footer-mobile-group[open] summary svg {
    transform: rotate(180deg);
  }

  .footer-mobile-group .footer-list {
    padding: 0 0 18px;
  }

  .footer-mobile-group .footer-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    margin-top: 32px;
    padding-top: 0;
    border-top: 0;
  }

  .footer-social {
    order: 1;
    gap: 20px;
  }

  .language-selector {
    display: none;
  }

  .footer-bottom p {
    order: 3;
  }
}

/* TL Awards Promo Banner (shown on all pages except TL Awards) */
.tl-promo-banner {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

.tl-promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  min-height: 88px;
  padding: 14px clamp(20px, 4.5vw, 72px);
}

.tl-promo-logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.tl-promo-text {
  flex: 1;
  min-width: 0;
}

.tl-promo-title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.tl-promo-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.tl-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.15s;
}

.tl-promo-cta:hover {
  opacity: 0.75;
}

.tl-promo-art {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  height: 220%;
  width: auto;
  pointer-events: none;
  overflow: hidden;
}

.tl-promo-art img {
  height: 100%;
  width: auto;
  filter: invert(1);
  opacity: 0.12;
}

@media (max-width: 860px) {
  .tl-promo-logo {
    height: 36px;
  }

  .tl-promo-desc {
    display: none;
  }

  .tl-promo-art {
    display: none;
  }
}

@media (max-width: 560px) {
  .tl-promo-inner {
    gap: 16px;
  }

  .tl-promo-logo {
    height: 30px;
  }

  .tl-promo-title {
    font-size: 13px;
  }
}

/* Thought Leadership Awards */
.tl-awards-page {
  background: #fff;
}

.awards-hero {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.awards-hero-grid {
  padding-top: clamp(74px, 9vw, 126px);
  padding-bottom: clamp(42px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.awards-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.03;
}

.awards-hero .tl-eyebrow {
  color: var(--green-dark);
}

.awards-hero p:not(.tl-eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.awards-subnav a.is-active {
  border-bottom-color: var(--green);
  color: var(--green-dark);
}

.awards-section {
  padding: clamp(68px, 8vw, 112px) 0;
  scroll-margin-top: 132px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.awards-section:nth-of-type(even) {
  background: #f8f8f6;
}

.awards-section-heading {
  max-width: 860px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.awards-section-heading .tl-eyebrow {
  color: var(--green-dark);
}

.awards-section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.08;
}

.awards-section-heading p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.awards-bento-grid,
.awards-stats-grid,
.awards-profile-grid,
.awards-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.awards-card,
.awards-stats-grid > article,
.awards-profile-grid > article,
.awards-logo-grid > article,
.awards-category-grid > article,
.awards-comparison > article,
.awards-nominee-grid > article {
  border: 1px solid var(--line);
  background: #fff;
}

.awards-card {
  min-height: 224px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.awards-card.is-wide {
  grid-column: span 2;
}

.awards-card span,
.awards-category-grid span,
.awards-nominee-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.awards-card h3,
.awards-profile-grid h3,
.awards-logo-grid h3,
.awards-category-grid h3,
.awards-comparison h3,
.awards-nominee-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.2;
}

.awards-card span + h3,
.awards-category-grid span + h3,
.awards-nominee-grid span + h3 {
  margin-top: auto;
}

.awards-card p,
.awards-profile-grid p,
.awards-logo-grid p,
.awards-category-grid p,
.awards-comparison li,
.awards-nominee-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.awards-image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: #202020;
  color: #fff;
}

.awards-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58));
  content: "";
}

.awards-image-card > div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
}

.awards-image-card span {
  display: block;
  max-width: 360px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 450;
  line-height: 1.06;
}

.awards-image-card p {
  max-width: 340px;
  margin: 10px 0 0;
  color: #ededed;
  font-size: 14px;
  line-height: 1.5;
}

.is-hero-image {
  min-height: clamp(360px, 48vw, 560px);
}

.is-bento-image {
  grid-column: span 2;
  grid-row: span 2;
}

.awards-stats-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.awards-stats-grid > article {
  min-height: 178px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.awards-stats-grid strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 450;
  line-height: 1;
}

.awards-stats-grid span {
  max-width: 180px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.is-stat-image {
  grid-column: span 2;
}

.awards-flow-wrap,
.awards-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: stretch;
}

.awards-flow {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.awards-flow li {
  display: grid;
  grid-template-columns: 54px minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.awards-flow span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.awards-flow strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.awards-flow p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.awards-story {
  margin-top: 0;
}

.awards-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.awards-category-grid > article {
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.awards-category-grid h3 {
  margin-top: 26px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 450;
}

.awards-category-grid strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-size: 26px;
}

.awards-category-grid .button {
  margin-top: 22px;
}

.awards-comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 0.9fr);
}

.awards-comparison > article {
  min-height: 330px;
  padding: clamp(22px, 3vw, 30px);
}

.awards-comparison ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.awards-comparison li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.awards-comparison .awards-image-card {
  min-height: 330px;
}

.awards-profile-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.awards-profile-grid > article {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.awards-profile-photo,
.awards-logo-grid > article > div {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #f8f8f6;
  color: var(--muted);
  font-weight: 800;
}

.awards-profile-photo {
  border-radius: 50%;
}

.awards-profile-grid h3,
.awards-logo-grid h3 {
  margin-top: 24px;
}

.awards-profile-grid .awards-profile-role {
  color: var(--ink);
  font-weight: 650;
}

.awards-profile-grid span {
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.awards-profile-grid a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 700;
}

.awards-profile-grid .awards-image-card,
.awards-logo-grid .awards-image-card {
  grid-column: span 1;
}

.awards-filter-bar {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.3fr));
  gap: 10px;
}

.awards-filter-bar input,
.awards-filter-bar select {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 0 14px;
}

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

.awards-nominee-grid > article {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.awards-nominee-grid small {
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.awards-logo-grid > article {
  min-height: 260px;
  padding: 24px;
}

.awards-logo-grid > article > div {
  border-radius: 8px;
}

.awards-inline-action {
  margin-top: 28px;
}

.awards-final-cta {
  border-top: 0;
}

.tl-awards-page main {
  overflow: visible;
}

.tl-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-left: clamp(22px, 4vw, 56px);
  padding-right: clamp(22px, 4vw, 56px);
}

.tl-hero {
  border-bottom: 1px solid var(--line);
  background: #f8f8f6;
}

.tl-hero .tl-shell {
  padding-top: clamp(74px, 9vw, 128px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.tl-eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tl-hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.tl-hero-description {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
}

.tl-hero-supporting {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.tl-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.tl-actions button {
  cursor: pointer;
}

.tl-subnav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.tl-subnav-rail {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 56px);
  display: flex;
  align-items: center;
}

.tl-subnav-inner {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.tl-subnav-register {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 58px;
  padding-left: 20px;
  margin-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.15s;
}

.tl-subnav-register:hover {
  opacity: 0.55;
}

.tl-subnav-inner::-webkit-scrollbar {
  display: none;
}

.tl-subnav a {
  flex: 0 0 auto;
  min-height: 58px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.tl-subnav a:first-child {
  padding-left: 0;
}

.tl-subnav a:hover,
.tl-subnav a.is-active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

/* Mobile dropdown */
.tl-subnav-select {
  display: none;
  position: relative;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 56px);
  height: 52px;
}

.tl-subnav-select select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  cursor: pointer;
  outline: none;
}

.tl-subnav-chevron {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.tl-section {
  padding: clamp(66px, 8vw, 108px) 0;
  scroll-margin-top: 132px;
}

.tl-section:nth-of-type(even) {
  background: #fbfbfa;
}

.tl-section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.tl-section-heading h2,
.tl-bottom-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
}

.tl-section-heading p,
.tl-bottom-cta p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.tl-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.tl-card-grid-one {
  grid-template-columns: minmax(0, 1fr);
  max-width: 620px;
}

.tl-card {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
}

.tl-card-label {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tl-card h3 {
  margin: auto 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.tl-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.tl-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.tl-point-grid article {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.tl-point-grid h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.tl-point-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.tl-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tl-track-card {
  min-height: 470px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: #fff;
}

.tl-track-grid.is-compact .tl-track-card {
  min-height: 390px;
}

.tl-track-meta {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-track-card h3 {
  margin: 26px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.tl-track-card > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.tl-track-fee {
  margin-top: 24px;
  font-size: 24px;
}

.tl-track-list {
  width: 100%;
  margin: 24px 0 30px;
}

.tl-track-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
}

.tl-track-card .button {
  margin-top: auto;
}

.tl-interactive-process {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: stretch;
}

.tl-process-selector {
  display: grid;
  align-content: start;
}

.tl-process-selector button {
  min-height: 76px;
  padding: 14px 6px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-weight: 650;
  cursor: pointer;
}

.tl-process-selector button span {
  padding-top: 2px;
  font-size: 12px;
}

.tl-process-selector button strong,
.tl-process-selector button small {
  grid-column: 2;
}

.tl-process-selector button strong {
  font-size: 15px;
  font-weight: 650;
}

.tl-process-selector button small {
  margin-top: 4px;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.tl-process-selector button:hover,
.tl-process-selector button.is-active {
  color: var(--ink);
}

.tl-process-selector button.is-active {
  border-bottom-color: var(--ink);
}

.tl-process-detail {
  min-height: 430px;
  padding: clamp(30px, 5vw, 58px);
  background: #222;
  color: #fff;
}

.tl-process-detail article {
  animation: tl-process-in 220ms ease-out;
}

@keyframes tl-process-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tl-process-kicker {
  color: #b7b7b7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-process-detail h3 {
  margin: 74px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.tl-process-detail p {
  max-width: 670px;
  margin: 22px 0 0;
  color: #ededed;
  font-size: 18px;
  line-height: 1.65;
}

.tl-process-detail .tl-process-support {
  color: #bdbdbd;
  font-size: 15px;
}

.tl-process-answers {
  max-width: 720px;
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.tl-process-answers div {
  padding-top: 18px;
  border-top: 1px solid #4a4a4a;
}

.tl-process-answers strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-process-answers p {
  margin-top: 8px;
  color: #d3d3d3;
  font-size: 16px;
}

.tl-process-gain {
  max-width: 670px;
  margin-top: 30px;
  padding-top: 22px;
  display: grid;
  gap: 5px;
  border-top: 1px solid #4a4a4a;
}

.tl-process-gain strong {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.tl-process-gain span {
  color: #d3d3d3;
}

.tl-process-mobile {
  display: none;
}

.tl-showcase-dates {
  margin-top: 28px;
  display: grid;
  gap: 1px;
  background: #444;
}

.tl-showcase-dates > div {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #292929;
}

.tl-showcase-dates span {
  font-size: 14px;
}

.tl-showcase-dates button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.tl-date-timeline {
  position: relative;
  max-width: 860px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tl-date-timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 8px;
  width: 1px;
  background: #cfcfcf;
  content: "";
}

.tl-date-timeline li {
  position: relative;
  padding: 0 0 34px 42px;
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

.tl-date-marker {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.tl-date-timeline time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.tl-date-timeline strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.tl-date-timeline li.is-highlight .tl-date-marker {
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.tl-date-timeline li.is-highlight time,
.tl-date-timeline li.is-highlight strong {
  color: var(--green-dark);
}

.tl-date-rows {
  max-width: 920px;
  display: grid;
  gap: 8px;
}

.tl-date-rows article {
  min-height: 64px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

.tl-date-rows time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.tl-date-rows strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.tl-date-rows article.is-highlight time,
.tl-date-rows article.is-highlight strong {
  color: var(--green-dark);
}

.tl-premium-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  background: transparent;
}

.tl-premium-grid .tl-card {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #3f3f3f;
  background: #232323;
  color: #fff;
}

.tl-premium-grid .tl-card:first-child {
  grid-row: span 2;
}

.tl-premium-grid .tl-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
}

.tl-premium-grid .tl-card p {
  color: #c8c8c8;
}

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

.tl-checklist article {
  min-height: 180px;
  padding: 26px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.tl-checklist article > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}

.tl-checklist h3,
.tl-policy-grid h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

.tl-checklist p,
.tl-policy-grid p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.tl-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.tl-policy-grid article {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.tl-date-grid .tl-card {
  min-height: 160px;
}

.tl-date-grid .tl-card h3 {
  margin-top: 0;
}

.tl-fee-grid .tl-card p {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.tl-process {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tl-process li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.tl-process li > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.tl-process h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0;
}

.tl-process p {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.tl-bullet-list {
  max-width: 920px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.tl-bullet-list li {
  position: relative;
  padding: 8px 18px 8px 28px;
  color: var(--ink-soft);
}

.tl-bullet-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.tl-bullet-list-large li {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 20px;
}

.tl-bullet-list-columns {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tl-bullet-list-columns li {
  border-right: 0;
}

.tl-section-link {
  margin: 28px 0 0;
}

.tl-section-link a {
  color: var(--ink);
  font-weight: 650;
}

.tl-centered-cta {
  display: flex;
  justify-content: flex-start;
}

.tl-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tl-directory-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
}

.tl-avatar,
.tl-logo-placeholder {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f8f8f6;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.tl-logo-placeholder {
  width: 82px;
  border-radius: 8px;
}

.tl-directory-card h3 {
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.tl-directory-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.tl-directory-role {
  color: var(--ink);
  font-weight: 650;
}

.tl-directory-company {
  color: var(--muted);
  font-size: 14px;
}

.tl-directory-card .button {
  margin-top: auto;
}

.tl-bottom-cta {
  padding: clamp(66px, 8vw, 104px) 0;
  background: #f1f1ee;
}

.tl-bottom-cta .tl-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.tl-bottom-cta .tl-actions {
  justify-content: flex-start;
}

.tl-inline-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.tl-inline-link:hover {
  color: var(--green);
}

.tl-faq-link {
  border-top: 1px solid var(--line);
  background: #fff;
}

.tl-faq-link .tl-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tl-faq-link span {
  color: var(--muted);
}

.tl-faq-link a {
  font-weight: 650;
}

.tl-empty-state {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  background: #f8f8f6;
}

.tl-empty-state h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0;
}

.tl-empty-state p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.tl-empty-state .button {
  margin-top: 24px;
}

.tl-tab-list {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.tl-tab-list button {
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}

.tl-tab-list button.is-active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.tl-tab-panel {
  padding-top: 28px;
}

.tl-lead-form {
  max-width: 900px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: #f8f8f6;
}

.tl-lead-form > .button {
  margin-top: 22px;
}

.tl-lead-form .form-note {
  margin: 14px 0 0;
  color: var(--green-dark);
}

.tl-lead-form .form-note.is-error {
  color: #a32121;
}

.tl-honeypot {
  position: absolute;
  left: -10000px;
}

.tl-modal {
  width: min(calc(100% - 32px), 720px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-3);
}

.tl-modal::backdrop {
  background: rgba(20, 20, 20, 0.58);
}

.tl-modal-inner {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
}

.tl-modal h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.tl-modal-inner > p:not(.tl-eyebrow) {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.tl-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tl-modal-form {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.tl-modal-form .contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tl-modal-form .field-full {
  grid-column: 1 / -1;
}

.tl-modal-form .field input,
.tl-modal-form .field select,
.tl-modal-form .field textarea {
  height: clamp(40px, 5.6vw, 48px);
  font-size: 15px;
}

.tl-modal-form .field select {
  padding-right: 38px;
  background-position: right 14px center;
}

.tl-modal-form .field textarea {
  min-height: 92px;
  resize: vertical;
}

.tl-modal-form > .button {
  width: 100%;
}

.tl-faq-list {
  border-top: 1px solid var(--line);
}

.tl-faq-list details {
  border-bottom: 1px solid var(--line);
}

.tl-faq-list summary {
  min-height: 72px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.tl-faq-list summary::-webkit-details-marker {
  display: none;
}

.tl-faq-list summary span {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
}

.tl-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.tl-faq-list details p {
  max-width: 780px;
  margin: -4px 0 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.tl-overview-hero {
  background: #fff;
}

.tl-overview-hero .tl-shell {
  padding-bottom: clamp(34px, 5vw, 64px);
}

.tl-overview-hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 6.2vw, 72px);
}

.tl-overview-hero .tl-hero-description {
  max-width: 760px;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: clamp(18px, 2vw, 21px);
}

.tl-hero-stats {
  margin-top: clamp(44px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tl-hero-stats div {
  min-height: 112px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.tl-hero-stats div:last-child {
  border-right: 0;
}

.tl-hero-stats strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.04;
}

.tl-hero-stats span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.tl-overview-subnav a.is-active {
  border-bottom-color: var(--green);
  color: var(--green-dark);
}

.tl-split-section {
  border-top: 1px solid var(--line);
}

.tl-split-section:nth-of-type(even) {
  background: #fff;
}

.tl-about-section {
  background: #f8f8f6;
}

.tl-split-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.tl-split-heading .tl-eyebrow,
.tl-section-heading .tl-eyebrow {
  color: var(--green-dark);
}

.tl-split-heading h2,
.tl-winner-panel h2,
.tl-final-cta h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1.08;
}

.tl-split-heading p:not(.tl-eyebrow),
.tl-winner-panel p,
.tl-final-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.tl-overview-card-grid,
.tl-benefit-grid {
  margin-top: clamp(38px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tl-overview-card-grid article,
.tl-benefit-grid article {
  min-height: 235px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
}

.tl-overview-card-grid h3,
.tl-benefit-grid h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.tl-overview-card-grid p,
.tl-benefit-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.tl-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tl-benefit-grid article {
  min-height: 220px;
}

.tl-feature-line {
  max-width: 760px;
  margin: clamp(34px, 5vw, 56px) 0 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.tl-winner-section {
  background: #fff;
}

.tl-winner-panel {
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 74px);
  background: #202020;
  color: #fff;
}

.tl-winner-panel .tl-eyebrow {
  color: #75c96e;
}

.tl-winner-panel p {
  color: #d6d6d6;
}

.tl-winner-panel strong {
  display: block;
  max-width: 520px;
  margin-top: 34px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.16;
}

.tl-winner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #494949;
  border: 1px solid #494949;
}

.tl-winner-grid article {
  min-height: 108px;
  padding: 22px;
  display: flex;
  align-items: end;
  background: #262626;
  color: #f7f7f7;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.tl-steps-section {
  border-top: 1px solid var(--line);
}

.tl-scroll-process {
  position: relative;
  margin-top: clamp(38px, 6vw, 72px);
}

.tl-scroll-sticky {
  position: sticky;
  top: 138px;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  z-index: 1;
}

.tl-step-list {
  display: grid;
  align-content: start;
}

.tl-step-list button {
  min-height: 78px;
  padding: 14px 6px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.tl-step-list button span {
  padding-top: 2px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

.tl-step-list button strong {
  color: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.tl-step-list button:hover,
.tl-step-list button.is-active {
  color: var(--green-dark);
}

.tl-step-list button.is-active {
  border-bottom-color: var(--green);
}

.tl-step-panels {
  min-height: 480px;
  padding: clamp(30px, 5vw, 58px);
  background: #222;
  color: #fff;
}

.tl-scroll-process.is-enhanced .tl-step-panels article:not(.is-active) {
  display: none;
}

.tl-step-panels article {
  animation: tl-process-in 220ms ease-out;
}

.tl-step-panels article + article {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #444;
}

.tl-step-panels article > span {
  color: #75c96e;
  font-size: 13px;
  font-weight: 800;
}

.tl-step-panels h3 {
  max-width: 620px;
  margin: 64px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.tl-step-panels p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #ededed;
  font-size: 18px;
  line-height: 1.62;
}

.tl-step-panels div {
  max-width: 690px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #4a4a4a;
}

.tl-step-panels div strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-step-panels div p {
  margin-top: 8px;
  color: #d7d7d7;
  font-size: 16px;
}

.tl-scroll-sentinels {
  display: none;
}

.tl-scroll-process.is-enhanced .tl-scroll-sentinels {
  display: grid;
  margin-top: calc(-1 * min(56vh, 520px));
  pointer-events: none;
}

.tl-scroll-process.is-enhanced .tl-scroll-sentinels div {
  min-height: 58vh;
}

.tl-step-mobile {
  display: none;
}

.tl-journey-section {
  background: #f8f8f6;
  border-top: 1px solid var(--line);
}

.tl-journey-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tl-journey-bento article {
  min-height: 168px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #fff;
}

.tl-journey-bento article.is-wide {
  grid-column: span 2;
}

.tl-journey-bento span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-journey-bento strong {
  margin-top: 28px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.tl-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tl-stat-grid article {
  min-height: 174px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tl-stat-grid strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.tl-stat-grid span {
  max-width: 210px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.tl-category-section {
  background: #f8f8f6;
  border-top: 1px solid var(--line);
}

.tl-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tl-category-grid > article {
  min-height: 640px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
}

.tl-category-grid h3 {
  margin: 26px 0 0;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.08;
}

.tl-category-grid > article > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.tl-category-lists {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tl-category-lists strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.tl-category-lists ul {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.tl-category-lists li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.tl-category-footer {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tl-category-footer > strong {
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 650;
}

.tl-final-cta {
  padding: clamp(68px, 9vw, 118px) 0;
  background: #202020;
  color: #fff;
}

.tl-final-cta .tl-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.tl-final-cta p {
  color: #d6d6d6;
}

.tl-final-cta .tl-actions {
  justify-content: flex-start;
}

.tl-final-cta .button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.tl-final-cta .button-light:hover {
  border-color: #75c96e;
  background: #75c96e;
  color: #101010;
}

.tl-final-cta .tl-inline-link {
  color: #fff;
}

.tl-final-cta .tl-inline-link:hover {
  color: #75c96e;
}

.mega-list-section,
.mobile-list-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

@media (max-width: 1120px) {
  .tl-subnav {
    top: 0;
  }

  .awards-hero-grid,
  .awards-flow-wrap {
    grid-template-columns: 1fr;
  }

  .awards-bento-grid,
  .awards-profile-grid,
  .awards-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .is-bento-image,
  .is-stat-image,
  .awards-profile-grid .awards-image-card,
  .awards-logo-grid .awards-image-card {
    grid-column: span 2;
  }

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

  .tl-hero-stats,
  .tl-benefit-grid,
  .tl-stat-grid,
  .tl-journey-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tl-hero-stats div:nth-child(2n),
  .tl-hero-stats div:last-child {
    border-right: 0;
  }

  .tl-winner-panel,
  .tl-scroll-sticky,
  .tl-final-cta .tl-shell {
    grid-template-columns: 1fr;
  }

  .tl-scroll-sticky {
    top: 122px;
  }

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

  .tl-card-grid-one {
    grid-template-columns: minmax(0, 1fr);
  }

  .tl-bottom-cta .tl-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .awards-hero-grid {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 30px;
  }

  .awards-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .awards-section {
    padding: 58px 0;
  }

  .awards-bento-grid,
  .awards-stats-grid,
  .awards-profile-grid,
  .awards-logo-grid,
  .awards-category-grid,
  .awards-comparison,
  .awards-filter-bar,
  .awards-nominee-grid {
    grid-template-columns: 1fr;
  }

  .awards-card.is-wide,
  .is-bento-image,
  .is-stat-image,
  .awards-profile-grid .awards-image-card,
  .awards-logo-grid .awards-image-card {
    grid-column: auto;
  }

  .awards-card {
    min-height: 190px;
  }

  .awards-image-card,
  .is-hero-image {
    min-height: 300px;
  }

  .awards-flow li {
    grid-template-columns: 42px 1fr;
    gap: 10px 16px;
  }

  .awards-flow p {
    grid-column: 2;
  }

  .awards-category-grid > article {
    min-height: 360px;
  }

  .tl-hero .tl-shell {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .tl-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .tl-hero-description {
    font-size: 21px;
  }

  .tl-overview-hero h1 {
    font-size: clamp(39px, 11vw, 48px);
  }

  .tl-overview-hero .tl-hero-description {
    font-size: 17px;
  }

  .tl-actions {
    align-items: stretch;
  }

  .tl-actions .button {
    width: 100%;
  }

  .tl-subnav {
    top: 0;
  }

  .tl-subnav-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .tl-subnav a {
    min-height: 52px;
    padding: 0 13px;
  }

  /* Swap to dropdown on small screens */
  @media (max-width: 600px) {
    .tl-subnav-rail {
      display: none;
    }

    .tl-subnav-select {
      display: flex;
    }
  }

  .tl-hero-stats,
  .tl-overview-card-grid,
  .tl-benefit-grid,
  .tl-winner-grid,
  .tl-journey-bento,
  .tl-stat-grid,
  .tl-category-grid,
  .tl-category-lists,
  .tl-split-heading {
    grid-template-columns: 1fr;
  }

  .tl-hero-stats div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tl-hero-stats div:last-child {
    border-bottom: 0;
  }

  .tl-split-heading {
    gap: 12px;
  }

  .tl-overview-card-grid article,
  .tl-benefit-grid article {
    min-height: 190px;
  }

  .tl-winner-panel {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .tl-step-list,
  .tl-step-panels,
  .tl-scroll-sentinels {
    display: none !important;
  }

  .tl-scroll-sticky {
    display: block;
    position: static;
  }

  .tl-step-mobile {
    display: block;
    border-top: 1px solid var(--line);
  }

  .tl-step-mobile details {
    border-bottom: 1px solid var(--line);
  }

  .tl-step-mobile summary {
    min-height: 68px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    color: var(--ink);
    font-weight: 650;
    cursor: pointer;
    list-style: none;
  }

  .tl-step-mobile summary::-webkit-details-marker {
    display: none;
  }

  .tl-step-mobile summary span {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
  }

  .tl-step-mobile details > p {
    margin: 0 0 12px 42px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  .tl-journey-bento article.is-wide {
    grid-column: auto;
  }

  .tl-category-grid > article {
    min-height: auto;
  }

  .tl-category-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .tl-card-grid,
  .tl-card-grid-two,
  .tl-bullet-list-columns,
  .tl-point-grid,
  .tl-track-grid,
  .tl-premium-grid,
  .tl-checklist,
  .tl-policy-grid,
  .tl-directory-grid {
    grid-template-columns: 1fr;
  }

  .tl-card {
    min-height: 190px;
  }

  .tl-process li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .tl-process-selector,
  .tl-process-detail {
    display: none;
  }

  .tl-interactive-process {
    display: block;
  }

  .tl-process-mobile {
    display: block;
    border-top: 1px solid var(--line);
  }

  .tl-process-mobile details {
    border-bottom: 1px solid var(--line);
  }

  .tl-process-mobile summary {
    min-height: 66px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    color: var(--ink);
    font-weight: 650;
    cursor: pointer;
    list-style: none;
  }

  .tl-process-mobile summary::-webkit-details-marker {
    display: none;
  }

  .tl-process-mobile summary span {
    color: var(--muted);
    font-size: 12px;
  }

  .tl-process-mobile details > div {
    padding: 0 0 24px 38px;
  }

  .tl-process-mobile p {
    margin: 0 0 12px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  .tl-mobile-dates {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
  }

  .tl-mobile-dates li {
    padding: 9px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }

  .tl-mobile-dates strong {
    color: var(--green-dark);
  }

  .tl-date-timeline li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .tl-date-rows article {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .tl-premium-grid .tl-card:first-child {
    grid-row: auto;
  }

  .tl-track-card {
    min-height: 440px;
  }

  .tl-bottom-cta .tl-actions {
    width: 100%;
  }

  .tl-faq-link .tl-shell {
    min-height: 80px;
    justify-content: space-between;
  }

  .tl-lead-form {
    padding: 22px;
  }

  .tl-modal-inner {
    padding: 24px 18px;
  }

  .tl-modal-close {
    top: 12px;
    right: 12px;
  }

  .tl-modal h2 {
    font-size: 28px;
  }

  .tl-modal-inner > p:not(.tl-eyebrow) {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .tl-modal-form {
    margin-top: 18px;
    padding: 0;
  }

  .tl-modal-form .contact-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .tl-modal-form .field input,
  .tl-modal-form .field select {
    height: 40px;
  }

  .tl-modal-form > .button {
    min-height: 44px;
    margin-top: 16px;
  }
}

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

/* ─── TL AWARDS REDESIGN v2 - connected bento grid, shared hero, white cards ─ */

/* ── CONNECTED GRID TECHNIQUE ──────────────────────────────────────────────── */
/* Cells sit flush; inset borders draw dividers without creating layout gaps.   */

.awards-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 0;
  border: 1px solid var(--line);
}

/* ── BENTO GRID COLUMN VARIANTS (placement overrides are after base rules below) */

/* 3-col variant */
.awards-bento-grid--3col   { grid-template-columns: repeat(3, 1fr); }
/* 4-up variant */
.awards-bento-grid--4up    { grid-template-columns: 1.15fr 0.9fr 1.05fr 0.95fr; }
/* col1-stack: col1 stacks 2, col2 = 1 tall, col3 = dark */
.awards-bento-grid--col1-stack { grid-template-columns: 0.95fr 1.15fr 0.9fr; }
/* 3col-right: cols1+2 each stack 3, col3 = dark */
.awards-bento-grid--3col-right { grid-template-columns: 1fr 1fr 0.92fr; }

/* Stats: 6-col connected */
.awards-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, auto);
  gap: 0;
  border: 1px solid var(--line);
}

/* stats-2col: override to 2-col — must be after base rule */
.awards-stats-grid--2col   { grid-template-columns: repeat(2, 1fr); }

/* Profile: 4-col connected */
.awards-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* Partner logo grid: 4-col connected */
.awards-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* All cells in connected grids: white, no border */
.awards-bento-grid > *,
.awards-stats-grid > *,
.awards-profile-grid > *,
.awards-logo-grid > * {
  background: #fff;
  border: 0;
}

.awards-bento-grid > * + *,
.awards-stats-grid > * + * {
  border-left: 1px solid var(--line);
}

.awards-bento-grid--col1-stack > *:nth-child(3),
.awards-bento-grid--3col-right > *:nth-child(2),
.awards-bento-grid--3col-right > *:nth-child(3),
.awards-bento-grid--3col-right > *:nth-child(5),
.awards-bento-grid--3col-right > *:nth-child(6),
.awards-stats-grid--2col > *:nth-child(2),
.awards-stats-grid--2col > *:nth-child(3),
.awards-stats-grid--2col > *:nth-child(4) {
  border-top: 1px solid var(--line);
}

.awards-bento-grid--col1-stack > *:nth-child(3),
.awards-bento-grid--3col-right > *:nth-child(2),
.awards-bento-grid--3col-right > *:nth-child(3),
.awards-stats-grid--2col > *:nth-child(2),
.awards-stats-grid--2col > *:nth-child(3),
.awards-stats-grid--2col > *:nth-child(4) {
  border-left: 0;
}

/* Avatar/image card in bento: explicit placement top-right, subtle bg */
.awards-bento-grid > .awards-avatar-card.is-bento-image {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
  background: #202020;
}

/* Stats image: last 2 cols */
.awards-stats-grid > .awards-avatar-card.is-stat-image {
  grid-column: span 2;
  background: #202020;
}

/* ── MODIFIER PLACEMENT OVERRIDES (must be after base rules above to win cascade) */

/* 3-col: dark block spans full row at bottom */
.awards-bento-grid--3col > .awards-avatar-card.is-bento-image {
  grid-column: 1 / span 3;
  grid-row: auto;
  min-height: 220px;
}

/* 4-up: dark block is simply the 4th cell — no row spanning */
.awards-bento-grid--4up > .awards-avatar-card.is-bento-image {
  grid-column: 4;
  grid-row: 1;
}

/* col1-stack:
   child1 → col1 row1 | child2 → col2 rows1-2 (tall) | child3 → col1 row2 | dark → col3 rows1-2 */
.awards-bento-grid--col1-stack > *:nth-child(1) { grid-column: 1; grid-row: 1; }
.awards-bento-grid--col1-stack > *:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.awards-bento-grid--col1-stack > *:nth-child(3) { grid-column: 1; grid-row: 2; }
.awards-bento-grid--col1-stack > .awards-avatar-card.is-bento-image {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* stats-2col: dark block fills full col 2 across all 4 stat rows */
.awards-stats-grid--2col > .awards-avatar-card.is-stat-image {
  grid-column: 2;
  grid-row: 1 / span 4;
}

/* 3col-right: cards fill cols1-2 top-to-bottom; dark block spans all of col3 */
.awards-bento-grid--3col-right > *:nth-child(1) { grid-column: 1; grid-row: 1; }
.awards-bento-grid--3col-right > *:nth-child(2) { grid-column: 1; grid-row: 2; }
.awards-bento-grid--3col-right > *:nth-child(3) { grid-column: 1; grid-row: 3; }
.awards-bento-grid--3col-right > *:nth-child(4) { grid-column: 2; grid-row: 1; }
.awards-bento-grid--3col-right > *:nth-child(5) { grid-column: 2; grid-row: 2; }
.awards-bento-grid--3col-right > *:nth-child(6) { grid-column: 2; grid-row: 3; }
.awards-bento-grid--3col-right > .awards-avatar-card.is-bento-image {
  grid-column: 3;
  grid-row: 1 / span 3;
}

/* Profile/logo image card: single col */
.awards-profile-grid > .awards-avatar-card,
.awards-logo-grid > .awards-avatar-card {
  background: #202020;
}

/* ── CARD BASE ──────────────────────────────────────────────────────────────── */

.awards-card {
  min-height: 200px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
  border: 0;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-card:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-card.is-wide {
  grid-column: span 2;
}

.awards-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.awards-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.22;
}

.awards-card span + h3 {
  margin-top: auto;
}

.awards-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-card-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.awards-card-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  text-underline-offset: 4px;
}

.awards-card-link svg {
  flex: 0 0 auto;
  transition: transform var(--motion-fast);
}

.awards-card-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.awards-card-link:hover svg {
  transform: translate(2px, -2px);
}

/* Stats cards */
.awards-stats-grid > article {
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 0;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-stats-grid > article:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-stats-grid strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 450;
  line-height: 1;
}

.awards-stats-grid span {
  max-width: 180px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

/* ── DARK TEXT BLOCKS REPLACING DECORATIVE AVATAR CARDS ───────────────────── */

.awards-avatar-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  background: #202020;
  color: #fff;
  border: 0;
}

.awards-avatar-text {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  max-width: 82%;
}

.awards-avatar-text span {
  display: block;
  color: #fff;
  font-family: inherit;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 620;
  line-height: 1.22;
}

.awards-avatar-text p {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.awards-avatar-text--wide {
  max-width: 100%;
}

/* Text CTA inside dark block */
.awards-dark-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: clamp(18px, 2.5vw, 26px);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  text-underline-offset: 4px;
}

.awards-dark-link svg {
  flex: 0 0 auto;
  transition: transform var(--motion-fast);
}

.awards-dark-link:hover {
  color: #fff;
  text-decoration: underline;
}

.awards-dark-link:hover svg {
  transform: translate(2px, -2px);
}

/* Keep connected-grid dividers after card border resets in the cascade. */
.tl-awards-page .awards-bento-grid > * + *,
.tl-awards-page .awards-stats-grid > * + * {
  border-left: 1px solid var(--line);
}

.tl-awards-page .awards-bento-grid--col1-stack > *:nth-child(3),
.tl-awards-page .awards-bento-grid--3col-right > *:nth-child(2),
.tl-awards-page .awards-bento-grid--3col-right > *:nth-child(3),
.tl-awards-page .awards-stats-grid--2col > *:nth-child(2),
.tl-awards-page .awards-stats-grid--2col > *:nth-child(3),
.tl-awards-page .awards-stats-grid--2col > *:nth-child(4) {
  border-left: 0;
}

/* Important dates list */
.awards-dates-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.awards-dates-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.4;
}

.awards-dates-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.awards-dates-list em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

.awards-dates-list strong {
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

/* Overview program metrics: 2x2 beside the Important Dates panel. */
.awards-stats-grid--overview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
}

.awards-stats-grid--overview > *:nth-child(1) { grid-column: 1; grid-row: 1; }
.awards-stats-grid--overview > *:nth-child(2) { grid-column: 2; grid-row: 1; }
.awards-stats-grid--overview > *:nth-child(3) { grid-column: 1; grid-row: 2; }
.awards-stats-grid--overview > *:nth-child(4) { grid-column: 2; grid-row: 2; }

.awards-stats-grid--overview > .awards-avatar-card.is-stat-image {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
}

.tl-awards-page .awards-stats-grid--overview > *:nth-child(2),
.tl-awards-page .awards-stats-grid--overview > *:nth-child(4),
.tl-awards-page .awards-stats-grid--overview > .awards-avatar-card.is-stat-image {
  border-left: 1px solid var(--line);
}

.awards-stats-grid--overview > *:nth-child(3),
.awards-stats-grid--overview > *:nth-child(4) {
  border-top: 1px solid var(--line);
}

/* Participant value: six cards followed by one full-width KPI panel. */
.awards-bento-grid--value {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.awards-bento-grid--value > *:nth-child(1),
.awards-bento-grid--value > *:nth-child(2),
.awards-bento-grid--value > *:nth-child(3),
.awards-bento-grid--value > *:nth-child(4),
.awards-bento-grid--value > *:nth-child(5),
.awards-bento-grid--value > *:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
}

.awards-bento-grid--value > .awards-avatar-card.is-bento-image {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 290px;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.tl-awards-page .awards-bento-grid--value > *:nth-child(2),
.tl-awards-page .awards-bento-grid--value > *:nth-child(3),
.tl-awards-page .awards-bento-grid--value > *:nth-child(5),
.tl-awards-page .awards-bento-grid--value > *:nth-child(6) {
  border-left: 1px solid var(--line);
}

.awards-bento-grid--value > *:nth-child(4),
.awards-bento-grid--value > *:nth-child(5),
.awards-bento-grid--value > *:nth-child(6) {
  border-top: 1px solid var(--line);
}

.awards-bento-grid--value .awards-avatar-text {
  width: 100%;
  padding: clamp(30px, 4vw, 48px);
}

.awards-bento-grid--value .awards-avatar-text > span {
  font-size: clamp(24px, 2.4vw, 34px);
}

/* KPI stats — three equal content blocks across the full-width dark panel. */
.awards-dark-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(26px, 3vw, 38px);
}

.awards-dark-kpi-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-right: clamp(24px, 4vw, 48px);
}

.awards-dark-kpi-row > div + div {
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.awards-dark-kpi-row strong {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 450;
  line-height: 1;
}

.awards-dark-kpi-row em {
  font-style: normal;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 650;
  margin-top: 8px;
}

.awards-dark-kpi-row small {
  display: block;
  max-width: 240px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.5;
}

.awards-dark-disclaimer {
  margin-top: clamp(22px, 3vw, 32px) !important;
  max-width: unset !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

/* ── HOW TO APPLY ─────────────────────────────────────────────────────────── */

.awards-application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.awards-application-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
}

.awards-application-card + .awards-application-card {
  border-left: 1px solid var(--line);
}

.awards-application-card > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.awards-application-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 620;
  line-height: 1.2;
}

.awards-application-intro {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-application-card ol {
  counter-reset: application-step;
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 34px) 0 0;
}

.awards-application-card li {
  counter-increment: application-step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-application-card li::before {
  content: counter(application-step, decimal-leading-zero);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.9;
}

.awards-application-summary,
.awards-process-summary,
.awards-category-summary,
.awards-package-summary,
.awards-faq-support {
  background: #202020;
  color: #fff;
}

.awards-application-summary {
  grid-column: 1 / -1;
  padding: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.awards-application-summary h3,
.awards-process-summary h3,
.awards-category-summary h3,
.awards-package-summary h3,
.awards-faq-support h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 620;
  line-height: 1.2;
}

.awards-application-summary p,
.awards-process-summary p,
.awards-category-summary p,
.awards-package-summary p,
.awards-faq-support p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.awards-season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  border: 1px solid var(--line);
}

.awards-season-grid > * {
  min-width: 0;
}

.awards-season-grid > *:nth-child(2),
.awards-season-grid > *:nth-child(3),
.awards-season-grid > *:nth-child(5),
.awards-season-grid > *:nth-child(6) {
  border-left: 1px solid var(--line);
}

.awards-season-grid > *:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.awards-season-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 40px);
  background: #202020;
  color: #fff;
}

.awards-season-summary span {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 620;
  line-height: 1.2;
}

.awards-season-summary p {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.awards-process-grid,
.awards-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.awards-process-card {
  min-width: 0;
  padding: clamp(28px, 3.5vw, 40px);
  background: #fff;
}

.awards-process-card + .awards-process-card,
.awards-categories-grid > * + * {
  border-left: 1px solid var(--line);
}

.awards-process-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 620;
  line-height: 1.25;
}

.awards-process-card p {
  min-height: 7.2em;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-process-card > span {
  display: block;
  margin-top: 26px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.awards-process-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.awards-process-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.awards-process-summary,
.awards-category-summary {
  grid-column: 1 / -1;
  padding: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-left: 0 !important;
}

.awards-categories-grid > .awards-card {
  min-height: 340px;
}

.awards-category-explainer {
  grid-row: span 1;
}

.awards-category-explainer .awards-card-list {
  margin-top: 12px;
}

.awards-package-decision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #f7f7f5;
}

.awards-package-decision > div {
  padding: clamp(24px, 3vw, 34px);
}

.awards-package-decision > div + div {
  border-left: 1px solid var(--line);
}

.awards-package-decision span,
.awards-pricing-head span {
  display: block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.awards-package-decision strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 620;
  line-height: 1.25;
}

.awards-package-decision p {
  max-width: 500px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.awards-pricing-table {
  border: 1px solid var(--line);
  background: #fff;
}

.awards-pricing-head,
.awards-pricing-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(190px, 0.8fr) minmax(190px, 0.8fr);
}

.awards-pricing-head > div {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
}

.awards-pricing-head > div + div,
.awards-pricing-row > * + * {
  border-left: 1px solid var(--line);
}

.awards-pricing-head > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.awards-pricing-head > div:first-child strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 620;
}

.awards-pricing-head > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.awards-pricing-head > div.is-spotlight {
  background: #202020;
}

.awards-pricing-head > div:not(:first-child) > strong {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 450;
  line-height: 1.1;
}

.awards-pricing-head strong small {
  display: block;
  margin-top: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.awards-pricing-head p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.awards-pricing-head em {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.awards-pricing-head a {
  width: fit-content;
  margin-top: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.awards-pricing-head .is-spotlight span,
.awards-pricing-head .is-spotlight a {
  color: #fff;
}

.awards-pricing-head .is-spotlight p {
  color: rgba(255, 255, 255, 0.7);
}

.awards-pricing-head .is-spotlight em {
  color: rgba(255, 255, 255, 0.82);
}

.awards-pricing-head > div.is-spotlight > strong,
.awards-pricing-head > div.is-spotlight > strong small {
  color: #fff;
}

.awards-pricing-row {
  border-top: 1px solid var(--line);
}

.awards-pricing-row > * {
  min-width: 0;
  padding: 15px clamp(20px, 3vw, 30px);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.awards-pricing-row > strong {
  color: var(--ink);
  font-weight: 650;
  text-align: center;
}

.awards-pricing-row > strong:last-child {
  background: #fafaf8;
}

.awards-package-summary {
  padding: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.awards-faq-list {
  border-top: 1px solid var(--line);
}

.awards-faq-more {
  margin-top: 24px;
}

.awards-faq-support {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
  padding: clamp(30px, 4vw, 48px);
}

.awards-faq-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.awards-faq-support .awards-dark-link {
  margin-top: 0;
}

/* Bento/stat image card sizes */
.is-bento-image {
  min-height: 200px;
}

.is-stat-image {
  min-height: 160px;
}

/* ── HERO - centered full-bleed layout ─────────────────────────────────────── */

.awards-hero--centered {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: clamp(480px, calc(100svh - 58px), 742px);
}

.awards-hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 64px) 24px clamp(24px, 3vw, 40px);
  position: relative;
  z-index: 1;
}

.awards-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* clip instead of overflow:hidden on parent so sticky still works */
  clip-path: inset(0);
  object-position: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.awards-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(40px, 5.5vw, 72px);
  width: calc(100% - 48px);
  max-width: 680px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.awards-hero--centered .awards-hero-logo {
  width: clamp(130px, 14vw, 190px);
  height: auto;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.awards-hero--centered .tl-eyebrow {
  color: var(--muted);
  margin-bottom: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.1em;
}

.awards-hero--centered .awards-hero-h1 {
  max-width: 520px;
  margin: 0 0 clamp(10px, 1.4vw, 16px);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.awards-hero-copy {
  max-width: 500px;
  margin: 0 0 clamp(20px, 2.5vw, 30px);
  color: var(--ink-soft);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
}

/* Cancel the old generic .awards-hero p top-margin for the new centered layout.
   Needs element selector to beat .awards-hero p:not(.tl-eyebrow) specificity (0,2,1). */
.awards-hero--centered p.awards-hero-copy {
  margin-top: 0;
  font-size: clamp(14px, 1.4vw, 16px);
}

.awards-hero--centered .tl-actions {
  justify-content: center;
  flex-wrap: wrap;
}

.awards-btn-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-bottom: 1px;
}

.awards-btn-short {
  display: none;
}

/* Subnav sits at the bottom of the centered hero section */
.awards-hero--centered .tl-subnav {
  flex-shrink: 0;
}

/* ── HERO - legacy two-column (kept for reference) ─────────────────────────── */

.awards-hero--slim {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.awards-hero--slim .tl-shell {
  min-height: clamp(560px, calc(100svh - 72px), 720px);
  padding-top: clamp(76px, 9vw, 108px);
  padding-bottom: clamp(76px, 8vw, 104px);
  max-width: unset;
}

.awards-hero-grid {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.awards-hero-text {
  min-width: 0;
  max-width: 720px;
}

.awards-hero-illustration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(46vw, 690px);
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.awards-hero-illustration img {
  width: auto;
  max-width: none;
  height: 116%;
  display: block;
  transform: translate(28%, -4%);
}

.tl-awards-page .button-light:hover,
.tl-awards-page .button-ghost:hover {
  border-color: #111;
  background: #f7f7f7;
  color: #000;
}

.tl-awards-page .tl-final-cta .button-light:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

/* ── CATEGORY CARDS ─────────────────────────────────────────────────────────── */

.awards-category-grid--flush {
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.awards-category-grid--flush > article {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-category-grid--flush > article:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-card-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

.awards-card-cover--btn {
  width: 100%;
  height: 100%;
}

.awards-category-grid--flush > article > *:not(.awards-card-cover) {
  position: relative;
  z-index: 2;
}

.awards-category-avatar {
  display: none;
}

.awards-category-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.awards-category-grid h3 {
  margin-top: 20px;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 450;
  line-height: 1.1;
}

.awards-category-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.awards-category-grid strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
}

.awards-category-grid strong small {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
  color: var(--ink-soft);
}

/* ── COMPARISON ─────────────────────────────────────────────────────────────── */

.awards-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 0.85fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.awards-comparison > article {
  min-height: 300px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 0;
}

.awards-comparison h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 620;
}

.awards-comparison ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.awards-comparison li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.awards-comparison > .awards-avatar-card {
  background: #202020;
  border: 0;
  min-height: 300px;
}

/* ── PROFILE GRID ───────────────────────────────────────────────────────────── */

.awards-profile-grid > article {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 0;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-profile-grid > article:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-profile-grid > .awards-avatar-card,
.awards-logo-grid > .awards-avatar-card {
  background: #202020;
  color: #fff;
}

.awards-profile-grid > .awards-avatar-card:hover,
.awards-logo-grid > .awards-avatar-card:hover {
  background: #202020;
  transform: none;
  box-shadow: none;
}

.awards-profile-photo--avatar {
  display: none;
}

.awards-profile-photo--avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-profile-grid h3 {
  margin-top: 0;
}

.awards-profile-grid .awards-profile-role {
  color: var(--ink);
  font-weight: 650;
  margin: 4px 0 0;
}

.awards-profile-grid span {
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.awards-profile-grid a {
  margin-top: auto;
  color: var(--ink);
  font-weight: 700;
}

/* Action cards inside profile grid */
.awards-profile-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  min-height: 280px;
  padding: 24px;
  background: #f8f8f6;
  border: 0;
}

.awards-profile-action-card h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 620;
  line-height: 1.2;
}

.awards-profile-action-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ── NOMINEE GRID ───────────────────────────────────────────────────────────── */

.awards-nominee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.awards-nominee-grid > article {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-nominee-grid > article:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-nominee-photo {
  display: none;
}

.awards-nominee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-nominee-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.awards-nominee-grid h3 {
  margin: 6px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 620;
  line-height: 1.2;
}

.awards-nominee-grid p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.awards-nominee-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.awards-nominee-link:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Filter bar: search + category only */
.awards-filter-bar--sm {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.4fr);
  margin-bottom: 1px; /* flush with grid */
}

.awards-filter-bar--wide {
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(150px, 0.35fr));
  margin-bottom: 1px;
}

/* ── PARTNER LOGO GRID ──────────────────────────────────────────────────────── */

.awards-logo-grid > article {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 0;
  transition:
    background var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.awards-logo-grid > article:hover {
  background: #fff;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.awards-partner-logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #f8f8f6;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.awards-participant-photo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #f8f8f6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.awards-logo-grid h3 {
  margin-top: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 620;
}

.awards-logo-grid p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.awards-partner-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.awards-partner-link:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── CTA CARD (become a partner) ────────────────────────────────────────────── */

.awards-card--cta {
  background: var(--ink) !important;
  color: #fff;
  cursor: pointer;
}

.awards-card--cta h3,
.awards-card--cta p {
  color: #fff;
}

.awards-card--cta > span:first-of-type {
  color: rgba(255, 255, 255, 0.55) !important;
}

.awards-card-arrow {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 20px;
  color: #fff;
}

.awards-card--cta:hover {
  background: #111 !important;
}

/* ── CASE STUDY TABLE ───────────────────────────────────────────────────────── */

.awards-cs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.awards-cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.awards-cs-table th {
  padding: 13px 16px;
  background: #f8f8f6;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.awards-cs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.45;
  vertical-align: middle;
}

.awards-cs-table tr:last-child td { border-bottom: 0; }
.awards-cs-table tr:hover td { background: #fafaf8; }
.awards-cs-table a { color: var(--ink); font-weight: 600; }
.awards-cs-table a:hover { color: #000; text-decoration: underline; text-underline-offset: 3px; }
.awards-cs-placeholder { color: var(--muted); }
.awards-cs-empty { text-align: center; color: var(--muted); padding: 48px 16px; }

.awards-table-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.awards-standalone-dark {
  min-height: 220px;
  margin-top: 1px;
}

.awards-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */

@media (max-width: 1120px) {
  .awards-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .awards-hero-illustration {
    display: none;
  }

  .awards-hero-content {
    max-width: 600px;
  }

  .awards-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-bento-grid > .awards-avatar-card.is-bento-image {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  /* 4-up → 2-col at tablet */
  .awards-bento-grid--4up {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-bento-grid--4up > .awards-avatar-card.is-bento-image {
    grid-column: auto;
    grid-row: auto;
  }

  /* col1-stack → simplify to 2-col: col 1 stacks 2, col 2 = dark block full height; card 3 moves to auto */
  .awards-bento-grid--col1-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-bento-grid--col1-stack > *:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .awards-bento-grid--col1-stack > .awards-avatar-card.is-bento-image {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  /* 3col-right → 2-col at tablet: unstack columns, dark block full width at bottom */
  .awards-bento-grid--3col-right {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-bento-grid--3col-right > *:nth-child(1),
  .awards-bento-grid--3col-right > *:nth-child(2),
  .awards-bento-grid--3col-right > *:nth-child(3),
  .awards-bento-grid--3col-right > *:nth-child(4),
  .awards-bento-grid--3col-right > *:nth-child(5),
  .awards-bento-grid--3col-right > *:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
  .awards-bento-grid--3col-right > .awards-avatar-card.is-bento-image {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .tl-awards-page .awards-bento-grid > * + *,
  .tl-awards-page .awards-stats-grid > * + * {
    border-left: 0;
  }

  .tl-awards-page .awards-bento-grid--4up > *:nth-child(even),
  .tl-awards-page .awards-bento-grid--3col-right > *:nth-child(even),
  .tl-awards-page .awards-stats-grid > *:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .awards-bento-grid--4up > *:nth-child(n + 3),
  .awards-bento-grid--col1-stack > *:nth-child(3),
  .awards-bento-grid--3col-right > *:nth-child(n + 3),
  .awards-stats-grid > *:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

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

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

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

  .awards-comparison {
    grid-template-columns: 1fr;
  }

  .awards-filter-bar--sm {
    grid-template-columns: 1fr;
  }

  .awards-filter-bar--wide {
    grid-template-columns: 1fr 1fr;
  }

  .awards-category-grid--flush {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .awards-hero-body {
    padding: 32px 16px 24px;
  }

  .awards-hero-content {
    padding: clamp(36px, 6vw, 56px) 28px clamp(28px, 5vw, 44px);
    width: 100%;
  }

  .awards-hero--centered .awards-hero-logo {
    width: min(200px, 56vw);
    margin-bottom: 22px;
  }

  .awards-hero--centered .awards-hero-h1 {
    font-size: clamp(26px, 6.5vw, 40px);
  }

  .awards-hero-text {
    margin-inline: auto;
    text-align: center;
  }

  .awards-hero-logo {
    width: min(304px, 82vw);
    margin-inline: auto;
    margin-bottom: 18px;
  }

  .awards-hero-h1,
  .awards-hero-subtitle,
  .awards-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .awards-hero .tl-actions {
    justify-content: center;
  }

  .awards-bento-grid,
  .awards-bento-grid--4up,
  .awards-bento-grid--col1-stack,
  .awards-bento-grid--3col-right {
    grid-template-columns: 1fr;
  }

  .awards-bento-grid--col1-stack > *,
  .awards-bento-grid--3col-right > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .tl-awards-page .awards-bento-grid > * + *,
  .tl-awards-page .awards-bento-grid--4up > *:nth-child(even),
  .tl-awards-page .awards-bento-grid--3col-right > *:nth-child(even) {
    border-left: 0;
  }

  .awards-bento-grid > *:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

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

  .awards-stats-grid--2col > .awards-avatar-card.is-stat-image {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .awards-application-grid,
  .awards-package-decision {
    grid-template-columns: 1fr;
  }

  .awards-application-card + .awards-application-card,
  .awards-package-decision > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .awards-season-grid {
    grid-template-columns: 1fr;
  }

  .awards-process-grid,
  .awards-categories-grid {
    grid-template-columns: 1fr;
  }

  .awards-process-card + .awards-process-card,
  .awards-categories-grid > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .awards-process-card p {
    min-height: 0;
  }

  .awards-process-summary,
  .awards-category-summary {
    grid-column: auto;
  }

  .awards-categories-grid > .awards-card {
    min-height: 260px;
  }

  .awards-season-grid > *:nth-child(2),
  .awards-season-grid > *:nth-child(3),
  .awards-season-grid > *:nth-child(5),
  .awards-season-grid > *:nth-child(6) {
    border-left: 0;
  }

  .awards-season-grid > *:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .awards-pricing-table {
    overflow-x: auto;
  }

  .awards-pricing-head,
  .awards-pricing-row {
    grid-template-columns: minmax(138px, 1.25fr) repeat(2, minmax(100px, 0.9fr));
    min-width: 344px;
  }

  .awards-pricing-head > div,
  .awards-pricing-row > * {
    padding-left: 12px;
    padding-right: 12px;
  }

  .awards-pricing-head > div:first-child strong {
    font-size: 18px;
  }

  .awards-pricing-head > div:not(:first-child) > strong {
    font-size: 22px;
  }

  .awards-pricing-head a {
    font-size: 12px;
  }

  .awards-pricing-head p {
    font-size: 12px;
  }

  .awards-faq-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .awards-pricing-row > * {
    font-size: 12px;
  }

  .awards-bento-grid--value .awards-dark-kpi-row {
    grid-template-columns: 1fr;
  }

  .awards-bento-grid--value .awards-dark-kpi-row > div {
    padding: 22px 0;
  }

  .awards-bento-grid--value .awards-dark-kpi-row > div:first-child {
    padding-top: 0;
  }

  .awards-bento-grid--value .awards-dark-kpi-row > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .awards-bento-grid--value .awards-dark-kpi-row strong {
    font-size: 48px;
  }

  .awards-bento-grid--value .awards-dark-kpi-row small {
    max-width: 260px;
  }

  .awards-profile-grid,
  .awards-logo-grid,
  .awards-nominee-grid {
    grid-template-columns: 1fr;
  }

  .awards-filter-bar--wide {
    grid-template-columns: 1fr;
  }

  .awards-avatar-text {
    max-width: 100%;
  }

  .awards-hero-illustration {
    min-height: 230px;
  }

  .awards-cs-table {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  /* Abbreviate long button label on small screens */
  .awards-btn-long {
    display: none;
  }

  .awards-btn-short {
    display: inline;
  }

  /* Both hero CTAs go dark on mobile */
  .awards-hero--centered .button-ghost {
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .awards-hero--centered .button-ghost:hover {
    background: #000;
    border-color: #000;
    color: #fff;
  }

  .awards-hero--centered {
    min-height: calc(100svh - 58px);
  }

  .awards-hero-body {
    padding: 24px 12px 20px;
  }

  .awards-hero-content {
    padding: 32px 20px 28px;
    width: 100%;
  }
}
