:root {
  /* Imported from the complete Apple-style token set. */
  --color-ink: #1d1d1f;
  --color-graphite: #707070;
  --color-slate: #474747;
  --color-ash: #333333;
  --color-fog: #f5f5f7;
  --color-snow: #ffffff;
  --color-obsidian: #000000;
  --color-silver-mist: #e8e8ed;
  --color-azure: #0071e3;
  --color-cobalt-link: #0066cc;
  --color-citrus-gradient: #dddc8c;
  --gradient-citrus-gradient: linear-gradient(184deg, rgb(29, 29, 31) 0%, rgb(223, 231, 79) 33%, rgb(94, 156, 42) 66%, rgb(10, 134, 26) 95%);
  --color-indigo-gradient: #2535e2;
  --gradient-indigo-gradient: linear-gradient(184deg, rgb(29, 29, 31) 20%, rgb(168, 211, 251) 43%, rgb(0, 18, 249) 76%, rgb(37, 53, 224) 95%);
  --color-blush-gradient: #cc29bc;
  --gradient-blush-gradient: linear-gradient(184deg, rgb(29, 29, 31) 20%, rgb(243, 196, 246) 43%, rgb(245, 0, 180) 76%, rgb(204, 41, 188) 95%);
  --color-citrus-finish: #dddc8c;
  --color-blush-finish: #e8d0d0;
  --color-indigo-finish: #596680;
  --color-caution: #b64400;
  --surface-canvas: #f5f5f7;
  --surface-card: #ffffff;
  --surface-recessed: #f5f5f7;
  --surface-frosted-control: #d2d2d7;
  --surface-dark-stage: #000000;
  --font-sf-pro-display: "SF Pro Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sf-pro-text: "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-sf-pro-display);
  --font-text: var(--font-sf-pro-text);
  --text-caption: 12px;
  --leading-caption: 1.33;
  --text-body-sm: 14px;
  --leading-body-sm: 1.43;
  --text-body: 17px;
  --leading-body: 1.47;
  --text-subheading: 20px;
  --leading-subheading: 1.4;
  --text-heading-sm: 24px;
  --leading-heading-sm: 1.29;
  --text-heading: 40px;
  --leading-heading: 1.17;
  --text-heading-lg: 56px;
  --leading-heading-lg: 1.07;
  --text-display: 96px;
  --leading-display: 1.04;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --spacing-unit: 4px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-28: 28px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-44: 44px;
  --spacing-48: 48px;
  --spacing-52: 52px;
  --spacing-76: 76px;
  --spacing-80: 80px;
  --spacing-120: 120px;
  --spacing-144: 144px;
  --radius-lg: 10px;
  --radius-3xl: 28px;
  --radius-3xl-2: 32px;
  --radius-3xl-3: 36px;
  --radius-full: 980px;
  --radius-full-2: 999px;
  --radius-cards: 28px;
  --radius-buttons: 999px;
  --radius-navitems: 980px;
  --radius-pillbuttons: 999px;
  --radius-featurelinks: 28px;
  --radius-smallbuttons: 10px;
  --radius-roundedbuttons: 36px;
  --page-max-width: 1200px;
  --page-max: var(--page-max-width);
  --page-pad: var(--spacing-40);
  --motion-quick: 160ms;
  --motion-scroll: 620ms;
  --motion-primary: 680ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--surface-canvas);
  font-family: var(--font-text);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

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

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

:focus-visible {
  outline: 3px solid var(--color-azure);
  outline-offset: 4px;
}

.ag-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 40;
  padding: 8px 12px;
  color: var(--color-snow);
  background: var(--color-ink);
  border-radius: var(--radius-pillbuttons);
  transform: translateY(-150%);
}

.ag-skip-link:focus {
  transform: translateY(0);
}

.ag-global-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--spacing-44);
  padding: 0 var(--page-pad);
  background: rgba(245, 245, 247, 0.86);
  border-bottom: 1px solid rgba(232, 232, 237, 0.78);
  backdrop-filter: blur(20px);
}

.ag-nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
  color: var(--color-ink);
  font-size: var(--text-caption);
  letter-spacing: 0;
  line-height: 1;
}

.ag-nav-links a,
.ag-product-nav a {
  opacity: 0.88;
  transition: color var(--motion-quick) var(--motion-ease), opacity var(--motion-quick) var(--motion-ease);
}

.ag-nav-links a:hover,
.ag-product-nav a:hover,
.ag-text-link:hover,
.ag-email a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ag-nav-cta,
.ag-product-nav-cta,
.ag-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-snow);
  background: var(--color-azure);
  border-radius: var(--radius-pillbuttons);
  line-height: 1;
  transition: background-color var(--motion-quick) var(--motion-ease), transform var(--motion-quick) var(--motion-ease);
}

.ag-nav-cta,
.ag-product-nav-cta {
  min-height: var(--spacing-28);
  padding: 0 var(--spacing-12);
  font-size: var(--text-caption);
}

.ag-primary-button {
  min-height: var(--spacing-44);
  padding: 0 var(--spacing-20);
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
}

.ag-primary-button:hover,
.ag-nav-cta:hover,
.ag-product-nav-cta:hover {
  background: #006edb;
  transform: translateY(-2px);
}

.ag-primary-button:active,
.ag-nav-cta:active,
.ag-product-nav-cta:active {
  transform: translateY(0);
}

.ag-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--spacing-44));
  padding: var(--spacing-76) var(--page-pad) 0;
  text-align: center;
  background: var(--surface-canvas);
}

.ag-hero-logo {
  position: absolute;
  top: var(--spacing-28);
  left: max(var(--page-pad), calc((100vw - var(--page-max)) / 2));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.ag-hero-logo img {
  width: 150px;
}

.ag-hero-copy {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin: 0 auto;
  padding-top: var(--spacing-76);
}

.ag-product-name,
.ag-eyebrow {
  margin: 0 0 var(--spacing-12);
  color: var(--color-ink);
  font-weight: var(--font-weight-semibold);
  line-height: 1.24;
  letter-spacing: 0;
}

.ag-product-name {
  font-size: var(--text-heading-sm);
  line-height: var(--leading-heading-sm);
}

.ag-eyebrow {
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.ag-hero h1,
.ag-section-head h2,
.ag-contact h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.ag-hero h1 {
  font-size: var(--text-display);
  line-height: var(--leading-display);
}

.ag-hero-copy > p:not(.ag-product-name) {
  max-width: 760px;
  margin: var(--spacing-24) auto 0;
  color: var(--color-ash);
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  letter-spacing: 0;
}

.ag-hero-copy .ag-primary-button {
  margin-top: var(--spacing-28);
}

.ag-hero-stage {
  position: relative;
  width: min(1260px, 100%);
  margin: var(--spacing-40) auto 0;
}

.ag-hero-stage picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-cards) var(--radius-cards) 0 0;
}

.ag-hero-stage img {
  width: 100%;
  height: min(44vh, 520px);
  object-fit: cover;
  object-position: 58% top;
  transform: translate3d(0, var(--ag-hero-shift, 0), 0) scale(1.025);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.ag-product-nav {
  position: sticky;
  top: var(--spacing-44);
  z-index: 25;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(232, 232, 237, 0.68);
  border-bottom: 1px solid var(--color-silver-mist);
  backdrop-filter: blur(20px);
}

.ag-product-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--spacing-52);
  width: min(var(--page-max), calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  color: var(--color-ink);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.ag-product-nav-inner > div {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
}

.ag-product-nav strong {
  font-weight: var(--font-weight-semibold);
}

.ag-section {
  scroll-margin-top: 110px;
  padding: var(--spacing-120) var(--page-pad);
}

.ag-section-head {
  width: min(var(--page-max), 100%);
  margin: 0 auto var(--spacing-40);
}

.ag-center {
  text-align: center;
}

.ag-center h2,
.ag-center > p {
  margin-right: auto;
  margin-left: auto;
}

.ag-section-head h2,
.ag-contact h2 {
  max-width: 920px;
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
}

.ag-section-head > p:not(.ag-eyebrow),
.ag-contact p:not(.ag-eyebrow):not(.ag-email) {
  max-width: 680px;
  margin: var(--spacing-20) 0 0;
  color: var(--color-slate);
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-light);
  line-height: var(--leading-subheading);
  letter-spacing: 0;
}

.ag-headworks {
  background: var(--surface-card);
}

.ag-feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--spacing-28);
  align-items: stretch;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
}

.ag-feature-copy,
.ag-feature-media,
.ag-architecture-grid article,
.ag-product-card,
.ag-evidence-grid article,
.ag-rfq-table,
.ag-contact-inner {
  border-radius: var(--radius-cards);
  box-shadow: none;
}

.ag-feature-copy {
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: var(--spacing-44);
  background: var(--surface-recessed);
  flex-direction: column;
}

.ag-feature-copy h3 {
  max-width: 500px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--leading-heading);
  letter-spacing: 0;
}

.ag-feature-copy p:not(.ag-eyebrow) {
  max-width: 510px;
  margin: var(--spacing-20) 0 0;
  color: var(--color-slate);
}

.ag-text-link {
  align-self: flex-start;
  margin-top: var(--spacing-20);
  color: var(--color-cobalt-link);
  font-weight: 500;
}

.ag-feature-media {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-recessed);
  place-items: center;
}

.ag-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--motion-primary) var(--motion-soft);
}

.ag-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-16);
  width: min(var(--page-max), 100%);
  margin: var(--spacing-28) auto 0;
}

.ag-proof-strip article {
  min-height: 132px;
  padding: var(--spacing-24);
  background: var(--surface-recessed);
  border-radius: var(--radius-cards);
  transition: transform var(--motion-primary) var(--motion-soft), background-color var(--motion-primary) var(--motion-ease);
}

.ag-proof-strip strong,
.ag-proof-strip span {
  display: block;
}

.ag-proof-strip strong {
  color: var(--color-ink);
  font-size: var(--text-subheading);
  line-height: 1.2;
}

.ag-proof-strip span {
  margin-top: var(--spacing-8);
  color: var(--color-graphite);
  font-size: var(--text-body-sm);
}

.ag-products {
  background: var(--surface-canvas);
}

.ag-architecture-grid,
.ag-product-grid,
.ag-evidence-grid,
.ag-rfq-table {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.ag-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-20);
  margin-bottom: var(--spacing-20);
}

.ag-architecture-grid article {
  min-height: 320px;
  padding: var(--spacing-28);
  background: var(--surface-card);
  transition: transform var(--motion-primary) var(--motion-soft), background-color var(--motion-primary) var(--motion-ease);
}

.ag-architecture-grid span {
  display: block;
  margin-bottom: var(--spacing-20);
  color: var(--color-graphite);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
}

.ag-architecture-grid h3,
.ag-product-card h3,
.ag-evidence-grid h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.ag-architecture-grid h3 {
  font-size: var(--text-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--leading-heading);
}

.ag-architecture-grid p,
.ag-product-card p,
.ag-evidence-grid p {
  margin: var(--spacing-16) 0 0;
  color: var(--color-slate);
}

.ag-architecture-grid ul,
.ag-product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-8);
  margin: var(--spacing-20) 0 0;
  padding: 0;
  list-style: none;
}

.ag-architecture-grid li,
.ag-product-card li {
  display: inline-flex;
  align-items: center;
  min-height: var(--spacing-28);
  padding: 6px 10px;
  color: var(--color-ash);
  background: var(--surface-recessed);
  border-radius: var(--radius-pillbuttons);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
}

.ag-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-20);
}

.ag-product-card {
  display: flex;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-card);
  flex-direction: column;
  transition: transform var(--motion-primary) var(--motion-soft), background-color var(--motion-primary) var(--motion-ease);
}

.ag-feature-split:hover .ag-feature-media img,
.ag-product-card:hover img,
.ag-evidence-grid article:hover img {
  transform: scale(1.045);
}

.ag-proof-strip article:hover,
.ag-architecture-grid article:hover,
.ag-product-card:hover,
.ag-evidence-grid article:hover {
  transform: translateY(-6px);
}

.ag-product-card:hover h3 {
  color: var(--color-cobalt-link);
}

.ag-product-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: center center;
  background: var(--surface-card);
  border-bottom: 1px solid var(--color-silver-mist);
  transition: transform var(--motion-primary) var(--motion-soft);
}

.ag-product-card:nth-child(1) img,
.ag-product-card:nth-child(2) img,
.ag-product-card:nth-child(8) img {
  object-position: center top;
}

.ag-product-card:nth-child(6) img,
.ag-product-card:nth-child(7) img {
  object-position: center 46%;
}

.ag-product-card div {
  display: flex;
  flex: 1;
  padding: var(--spacing-28);
  flex-direction: column;
}

.ag-product-card span {
  align-self: flex-start;
  margin-bottom: var(--spacing-20);
  color: var(--color-graphite);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
}

.ag-product-card h3 {
  font-size: 28px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.14;
}

.ag-evidence {
  background: var(--surface-card);
}

.ag-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-20);
}

.ag-evidence-grid article {
  overflow: hidden;
  background: var(--surface-recessed);
  transition: transform var(--motion-primary) var(--motion-soft), background-color var(--motion-primary) var(--motion-ease);
}

.ag-evidence-grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform var(--motion-primary) var(--motion-soft);
}

.ag-evidence-grid article:nth-child(1) img {
  object-position: 38% center;
}

.ag-evidence-grid article:nth-child(3) img {
  object-position: 46% center;
}

.ag-evidence-grid article:nth-child(4) img {
  object-position: 70% center;
}

.ag-evidence-grid h3 {
  padding: var(--spacing-24) var(--spacing-28) 0;
  font-size: 28px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.14;
}

.ag-evidence-grid p {
  padding: 0 var(--spacing-28) var(--spacing-28);
}

.ag-rfq {
  background: var(--surface-canvas);
}

.ag-rfq-table {
  overflow: hidden;
  background: var(--surface-card);
}

.ag-rfq-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--spacing-24);
  align-items: start;
  padding: var(--spacing-20) var(--spacing-28);
}

.ag-rfq-table div + div {
  border-top: 1px solid var(--color-silver-mist);
}

.ag-rfq-table strong {
  color: var(--color-ink);
  font-size: var(--text-subheading);
  line-height: 1.2;
}

.ag-rfq-table span {
  color: var(--color-slate);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.ag-contact {
  scroll-margin-top: 110px;
  padding: var(--spacing-120) var(--page-pad);
  color: var(--color-ink);
  background: var(--surface-canvas);
  text-align: center;
}

.ag-contact-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: var(--spacing-76);
  background: var(--surface-card);
  border: 1px solid var(--color-silver-mist);
}

.ag-contact .ag-eyebrow,
.ag-contact h2,
.ag-contact p {
  color: var(--color-ink);
}

.ag-contact p:not(.ag-eyebrow):not(.ag-email) {
  margin-right: auto;
  margin-left: auto;
  color: var(--color-slate);
}

.ag-contact .ag-primary-button {
  margin-top: var(--spacing-28);
}

.ag-email {
  margin: var(--spacing-24) 0 0;
  color: var(--color-slate);
  font-size: var(--text-body-sm);
}

.ag-email a {
  color: var(--color-cobalt-link);
}

.ag-footer {
  display: grid;
  justify-items: center;
  gap: var(--spacing-16);
  padding: var(--spacing-52) var(--page-pad);
  color: var(--color-graphite);
  text-align: center;
  background: var(--surface-canvas);
}

.ag-footer img {
  width: 148px;
}

.ag-footer p {
  margin: 0;
  font-size: 14px;
}

.ag-product-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: var(--spacing-76) var(--page-pad) var(--spacing-80);
  text-align: center;
  background: var(--surface-canvas);
}

.ag-product-page-copy {
  width: min(960px, 100%);
  margin: 0 auto;
  padding-top: 108px;
}

.ag-product-page-copy h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: var(--font-weight-bold);
  line-height: 1.03;
  letter-spacing: 0;
}

.ag-product-page-copy > p:not(.ag-product-name) {
  max-width: 720px;
  margin: var(--spacing-24) auto 0;
  color: var(--color-slate);
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
}

.ag-product-detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: var(--spacing-24);
  align-items: start;
  width: min(var(--page-max), calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
  padding: var(--spacing-80) 0 var(--spacing-120);
}

.ag-product-filter {
  position: sticky;
  top: 116px;
  padding: var(--spacing-24);
  background: var(--surface-card);
  border-radius: var(--radius-cards);
}

.ag-product-filter-list {
  display: grid;
  gap: var(--spacing-8);
  margin-top: var(--spacing-20);
}

.ag-product-filter-list button {
  display: flex;
  align-items: center;
  min-height: var(--spacing-44);
  width: 100%;
  padding: 0 var(--spacing-16);
  color: var(--color-ink);
  background: var(--surface-recessed);
  border: 0;
  border-radius: var(--radius-pillbuttons);
  cursor: pointer;
  font: inherit;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  text-align: left;
  transition: background-color var(--motion-quick) var(--motion-ease), color var(--motion-quick) var(--motion-ease), transform var(--motion-quick) var(--motion-ease);
}

.ag-product-filter-list button:hover {
  transform: translateY(-1px);
}

.ag-product-filter-list button.is-active {
  color: var(--color-snow);
  background: var(--color-azure);
}

.ag-product-help {
  display: grid;
  gap: var(--spacing-8);
  margin-top: var(--spacing-24);
  padding-top: var(--spacing-20);
  border-top: 1px solid var(--color-silver-mist);
}

.ag-product-help strong {
  color: var(--color-ink);
  font-size: var(--text-body-sm);
}

.ag-product-help span {
  color: var(--color-slate);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.ag-product-detail-main {
  display: grid;
  gap: var(--spacing-20);
}

.ag-product-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-card);
  border-radius: var(--radius-cards);
}

.ag-product-detail-media {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface-recessed);
  place-items: center;
}

.ag-product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--motion-primary) var(--motion-soft);
}

.ag-product-detail-card:hover .ag-product-detail-media img {
  transform: scale(1.035);
}

.ag-product-detail-copy {
  display: flex;
  justify-content: center;
  padding: var(--spacing-48);
  flex-direction: column;
}

.ag-product-detail-copy > span {
  margin-bottom: var(--spacing-20);
  color: var(--color-graphite);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
}

.ag-product-detail-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-heading-lg);
  letter-spacing: 0;
}

.ag-product-detail-copy p {
  margin: var(--spacing-20) 0 0;
  color: var(--color-slate);
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
}

.ag-preview-chip-list,
.ag-product-detail-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-8);
  margin: var(--spacing-24) 0 0;
  padding: 0;
  list-style: none;
}

.ag-preview-chip-list li,
.ag-product-detail-grid li {
  display: inline-flex;
  align-items: center;
  min-height: var(--spacing-28);
  padding: 6px 10px;
  color: var(--color-ash);
  background: var(--surface-recessed);
  border-radius: var(--radius-pillbuttons);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
  line-height: 1.1;
}

.ag-product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-20);
}

.ag-product-detail-grid article,
.ag-preview-related {
  padding: var(--spacing-32);
  background: var(--surface-card);
  border-radius: var(--radius-cards);
}

.ag-product-detail-grid h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.14;
  letter-spacing: 0;
}

.ag-preview-related .ag-section-head {
  width: auto;
  margin-bottom: var(--spacing-24);
}

.ag-preview-related .ag-section-head h2 {
  max-width: 620px;
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
}

.ag-preview-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-12);
}

.ag-preview-related-grid a {
  display: grid;
  min-height: 112px;
  padding: var(--spacing-16);
  background: var(--surface-recessed);
  border-radius: var(--radius-lg);
  align-content: space-between;
  transition: background-color var(--motion-quick) var(--motion-ease), color var(--motion-quick) var(--motion-ease), transform var(--motion-quick) var(--motion-ease);
}

.ag-preview-related-grid a:hover {
  transform: translateY(-2px);
}

.ag-preview-related-grid a.is-active {
  color: var(--color-snow);
  background: var(--color-ink);
}

.ag-preview-related-grid span {
  color: inherit;
  opacity: 0.68;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
}

.ag-preview-related-grid strong {
  color: inherit;
  font-size: var(--text-body-sm);
  line-height: 1.2;
}

.ag-hero-logo,
.ag-product-name,
.ag-hero h1,
.ag-product-page-copy h1,
.ag-hero-copy > p:not(.ag-product-name),
.ag-product-page-copy > p:not(.ag-product-name),
.ag-hero-copy .ag-primary-button,
.ag-hero-stage {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  animation: ag-rise var(--motion-primary) var(--motion-soft) forwards;
}

.ag-hero-logo {
  transform: translateY(-18px) scale(0.98);
  animation-delay: 70ms;
}

.ag-product-name {
  animation-delay: 130ms;
}

.ag-hero h1 {
  animation-delay: 220ms;
}

.ag-product-page-copy h1 {
  animation-delay: 220ms;
}

.ag-hero-copy > p:not(.ag-product-name) {
  animation-delay: 310ms;
}

.ag-product-page-copy > p:not(.ag-product-name) {
  animation-delay: 310ms;
}

.ag-hero-copy .ag-primary-button {
  animation-delay: 390ms;
}

.ag-hero-stage {
  transform: translateY(48px) scale(0.985);
  animation-delay: 480ms;
  animation-duration: 860ms;
}

.ag-reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  transition: opacity var(--motion-scroll) var(--motion-ease), transform var(--motion-scroll) var(--motion-ease);
  transition-delay: var(--ag-delay, 0ms);
  will-change: opacity, transform;
}

.ag-reveal.ag-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}

.ag-proof-strip article.ag-in-view:hover,
.ag-architecture-grid article.ag-in-view:hover,
.ag-product-card.ag-in-view:hover,
.ag-evidence-grid article.ag-in-view:hover {
  transform: translateY(-6px) scale(1);
}

@keyframes ag-rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .ag-hero h1 {
    font-size: 80px;
  }

  .ag-product-page-copy h1 {
    font-size: 68px;
  }

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

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

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

@media (max-width: 880px) {
  :root {
    --page-pad: 24px;
  }

  .ag-nav-links {
    gap: 18px;
  }

  .ag-nav-links a:nth-child(3) {
    display: none;
  }

  .ag-hero {
    padding-top: 72px;
  }

  .ag-hero-copy {
    padding-top: 76px;
  }

  .ag-hero h1 {
    font-size: 64px;
  }

  .ag-product-page-copy h1 {
    font-size: 56px;
  }

  .ag-hero-copy > p:not(.ag-product-name) {
    font-size: 20px;
  }

  .ag-hero-stage img {
    max-height: 500px;
  }

  .ag-product-nav-inner {
    width: min(var(--page-max), calc(100% - var(--page-pad) * 2));
  }

  .ag-product-nav-inner > div {
    gap: 16px;
  }

  .ag-product-nav a:nth-child(3) {
    display: none;
  }

  .ag-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .ag-section-head h2,
  .ag-contact h2 {
    font-size: 44px;
  }

  .ag-section-head > p:not(.ag-eyebrow),
  .ag-contact p:not(.ag-eyebrow):not(.ag-email) {
    font-size: 18px;
  }

  .ag-feature-split,
  .ag-architecture-grid,
  .ag-product-detail-layout,
  .ag-product-detail-card {
    grid-template-columns: 1fr;
  }

  .ag-product-filter {
    position: relative;
    top: auto;
    order: 2;
  }

  .ag-product-detail-main {
    order: 1;
  }

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

  .ag-product-detail-media {
    min-height: 360px;
  }

  .ag-feature-copy,
  .ag-feature-media {
    min-height: 420px;
  }

  .ag-rfq-table div {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
  }

  .ag-global-nav {
    min-height: 44px;
  }

  .ag-nav-links a:nth-child(1),
  .ag-nav-links a:nth-child(4) {
    display: none;
  }

  .ag-hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .ag-hero-logo {
    top: 62px;
    left: 18px;
  }

  .ag-hero-logo img {
    width: 132px;
  }

  .ag-hero-copy {
    padding-top: 86px;
  }

  .ag-product-name {
    font-size: 21px;
  }

  .ag-hero h1 {
    font-size: 48px;
  }

  .ag-product-page-hero {
    min-height: auto;
    padding-bottom: 62px;
  }

  .ag-product-page-copy {
    padding-top: 86px;
  }

  .ag-product-page-copy h1 {
    font-size: 44px;
  }

  .ag-hero-copy > p:not(.ag-product-name) {
    font-size: 18px;
  }

  .ag-product-page-copy > p:not(.ag-product-name) {
    font-size: 18px;
  }

  .ag-hero-stage {
    margin-top: 40px;
    width: calc(100% + var(--page-pad) * 2);
    margin-left: calc(var(--page-pad) * -1);
  }

  .ag-hero-stage picture {
    border-radius: 0;
  }

  .ag-hero-stage img {
    height: 360px;
    object-position: center top;
  }

  .ag-product-nav {
    top: 44px;
  }

  .ag-product-nav-inner {
    min-height: 48px;
    font-size: 13px;
  }

  .ag-product-nav-inner > div {
    gap: 12px;
  }

  .ag-product-nav a:nth-child(1),
  .ag-product-nav a:nth-child(3) {
    display: none;
  }

  .ag-section-head h2,
  .ag-contact h2 {
    font-size: 38px;
  }

  .ag-feature-copy,
  .ag-contact-inner {
    padding: 30px;
  }

  .ag-product-detail-layout {
    width: min(var(--page-max), calc(100% - var(--page-pad) * 2));
    padding-top: 62px;
    padding-bottom: 82px;
  }

  .ag-product-filter,
  .ag-product-detail-copy,
  .ag-product-detail-grid article,
  .ag-preview-related {
    padding: 24px;
  }

  .ag-product-filter-list,
  .ag-product-detail-grid,
  .ag-preview-related-grid {
    grid-template-columns: 1fr;
  }

  .ag-product-detail-card {
    min-height: 0;
  }

  .ag-product-detail-media {
    min-height: 0;
  }

  .ag-product-detail-media img {
    height: 300px;
  }

  .ag-product-detail-copy h2 {
    font-size: 38px;
  }

  .ag-feature-copy h3 {
    font-size: 32px;
  }

  .ag-feature-copy,
  .ag-feature-media {
    min-height: 0;
  }

  .ag-feature-media img {
    height: 330px;
  }

  .ag-proof-strip,
  .ag-product-grid,
  .ag-evidence-grid {
    grid-template-columns: 1fr;
  }

  .ag-product-card {
    min-height: 0;
  }

  .ag-contact {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .ag-hero-logo,
  .ag-product-name,
  .ag-hero h1,
  .ag-hero-copy > p:not(.ag-product-name),
  .ag-hero-copy .ag-primary-button,
  .ag-hero-stage,
  .ag-reveal,
  .ag-reveal.ag-in-view {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .ag-hero-stage img,
  .ag-feature-media img,
  .ag-product-card img,
  .ag-evidence-grid img {
    transform: none !important;
  }
}
