:root {
  --ink: #1a1a1a;
  --muted: #626970;
  --line: #e1e5e9;
  --line-strong: #cbd3d9;
  --soft: #f7f7f5;
  --green: #2f6250;
  --green-light: #edf5ef;
  --blue: #315d78;
  --blue-light: #f2f7fa;
  --orange: #a76332;
  --orange-light: #fff4eb;
  --violet: #6b667f;
  --violet-light: #f3f1f6;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-header {
  border-bottom: 1px solid #e8eaed;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(20, 28, 38, .05);
}

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

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  width: 188px;
  height: 58px;
  align-items: center;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #16191d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.page-shell {
  padding: 22px 0 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #6b6b6b;
  font-size: 12px;
}

.breadcrumbs a {
  color: #555;
  text-decoration: none;
}

.page-intro {
  max-width: 870px;
  margin-bottom: 30px;
}

.eyebrow,
.tool-type {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-intro h1 {
  margin: 7px 0 11px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.page-intro > p:last-child {
  max-width: 810px;
  margin: 0;
  color: #555;
  font-size: 18px;
}

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

.tool-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 28, 38, .06);
}

.tool-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.tool-card figure {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.tool-card figure::after {
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--green);
  content: "";
  pointer-events: none;
}

.tool-card--framing figure::after {
  border-color: var(--blue);
}

.tool-card--motion figure::after {
  border-color: var(--orange);
}

.tool-card--format figure::after {
  border-color: var(--violet);
}

.tool-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .18s ease;
}

.tool-card-copy {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  padding: 23px 24px 22px;
}

.tool-card--framing .tool-type {
  color: var(--blue);
}

.tool-card--motion .tool-type {
  color: var(--orange);
}

.tool-card--format .tool-type {
  color: var(--violet);
}

.tool-card h2 {
  margin: 6px 0 9px;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.2;
}

.tool-card-copy > p:not(.tool-type) {
  margin: 0;
  color: #4b5359;
}

.tool-card dl {
  display: grid;
  gap: 0;
  margin: 18px 0 20px;
  border-top: 1px solid var(--line);
}

.tool-card dl > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.tool-card dt,
.tool-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.tool-card dt {
  color: #5f686f;
  font-weight: 700;
}

.tool-card dd {
  color: #32383d;
  font-weight: 600;
}

.open-tool {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.tool-card--framing .open-tool {
  color: var(--blue);
}

.tool-card--motion .open-tool {
  color: var(--orange);
}

.tool-card--format .open-tool {
  color: var(--violet);
}

.open-tool span {
  font-size: 18px;
  line-height: 1;
}

.tool-card:hover,
.tool-card:focus-within {
  border-color: #aeb9c0;
  box-shadow: 0 16px 34px rgba(20, 28, 38, .1);
}

.tool-card:hover img,
.tool-card:focus-within img {
  transform: scale(1.015);
}

.tool-card > a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.workflow-section,
.standards-section {
  margin-top: 62px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.standards-section h2 {
  margin: 7px 0 0;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.18;
}

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

.workflow-grid article {
  min-width: 0;
  min-height: 210px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.workflow-grid article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.workflow-grid article:nth-child(2) > span {
  color: var(--blue);
}

.workflow-grid article:nth-child(3) > span {
  color: var(--violet);
}

.workflow-grid article:nth-child(4) > span {
  color: var(--orange);
}

.workflow-grid h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.28;
}

.workflow-grid h3 a {
  color: #24292d;
  text-decoration: none;
}

.workflow-grid h3 a:hover,
.workflow-grid h3 a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.workflow-grid p {
  margin: 0;
  color: #535c62;
  font-size: 14px;
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.35fr);
  gap: 40px;
}

.standards-copy p {
  margin: 0;
  color: #464e54;
}

.standards-copy p + p {
  margin-top: 13px;
}

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

.footer-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #586168;
  font-size: 13px;
}

.footer-inner p {
  flex: 0 1 auto;
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-inner a {
  color: #3f494f;
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 58px;
    gap: 14px;
  }

  .brand {
    width: 132px;
    height: 52px;
  }

  .brand img {
    width: 130px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .page-shell {
    padding-top: 15px;
  }

  .breadcrumbs {
    margin-bottom: 18px;
  }

  .page-intro h1 {
    font-size: 31px;
  }

  .page-intro > p:last-child {
    font-size: 16px;
  }

  .tool-directory,
  .workflow-grid,
  .standards-section {
    grid-template-columns: 1fr;
  }

  .tool-card-copy {
    min-height: 0;
    padding: 20px;
  }

  .tool-card h2 {
    font-size: 22px;
  }

  .workflow-section,
  .standards-section {
    margin-top: 44px;
    padding-top: 27px;
  }

  .section-heading h2,
  .standards-section h2 {
    font-size: 24px;
  }

  .workflow-grid article {
    min-height: 0;
    padding: 20px;
  }

  .standards-section {
    gap: 18px;
  }

  .footer-inner {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .site-nav a:first-child {
    display: none;
  }

  .tool-card figure {
    aspect-ratio: 1.8 / 1;
  }

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tool-card img {
    transition: none;
  }
}
