:root {
  --aura-navy: #0a2e6e;
  --aura-blue: #1e63d8;
  --aura-blue-dark: #0f47a6;
  --aura-blue-tint: #eaf1fe;
  --aura-mint: #12b48a;
  --aura-ink: #0e1726;
  --aura-slate: #47536b;
  --aura-muted: #8792a6;
  --aura-line: #e6e9f0;
  --aura-paper: #f6f8fb;
  --aura-white: #fff;
  --aura-shell: 1280px;
  --aura-content: 1200px;
  --aura-gutter: 40px;
  --aura-header: 113px;
  --aura-ease: cubic-bezier(.16, 1, .3, 1);
  --aura-shadow-1: 0 1px 3px rgba(14, 23, 38, .09);
  --aura-shadow-2: 0 12px 32px rgba(14, 23, 38, .12);
  --aura-shadow-3: 0 24px 60px rgba(14, 23, 38, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--aura-ink);
  background: var(--aura-white);
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.aura-menu-open,
body.aura-search-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--aura-blue-tint);
  outline-offset: 3px;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.aura-container {
  width: min(calc(100% - (var(--aura-gutter) * 2)), var(--aura-content));
  margin-inline: auto;
}

.aura-shell {
  width: min(calc(100% - (var(--aura-gutter) * 2)), var(--aura-shell));
  margin-inline: auto;
}

.aura-mono,
.aura-eyebrow,
.aura-footer-label,
.aura-page-scroll {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.aura-eyebrow {
  display: inline-block;
  color: var(--aura-blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.aura-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--aura-blue);
  transform: translateY(-150%);
}

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

.aura-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: color .5s ease, background .5s ease, box-shadow .5s ease;
}

.aura-utility {
  height: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: 10px;
  letter-spacing: .02em;
}

.aura-utility .aura-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.aura-utility div div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.aura-nav-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .5s ease, border-color .5s ease;
}

.aura-nav {
  display: flex;
  align-items: center;
  height: 92px;
}

.aura-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.aura-logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--aura-navy);
  background: #fff;
  font-size: 24px;
  font-weight: 800;
}

.aura-logo strong,
.aura-logo small {
  display: block;
}

.aura-logo strong {
  font-size: 20px;
  letter-spacing: -.02em;
}

.aura-logo small {
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
}

.aura-desktop-nav {
  display: flex;
  align-self: stretch;
  justify-content: center;
  gap: 36px;
  margin-inline: auto;
}

.aura-nav-item {
  display: flex;
  align-items: stretch;
}

.aura-nav-item > a {
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: color .25s ease, border-color .25s ease;
}

.aura-nav-item.is-open > a {
  color: var(--aura-blue);
  border-bottom-color: var(--aura-blue);
}

.aura-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aura-icon-button,
.aura-menu-toggle {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

/* Standard magnifier: the handle begins outside the lens. */
.aura-icon-button[data-search-open] { font-size: 0; }
.aura-icon-button[data-search-open]::before {
  content: ''; position: absolute; width: 24px; height: 24px;
  left: calc(50% - 12px); top: calc(50% - 12px);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='6.5' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M15.3 15.3L20.5 20.5' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='6.5' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M15.3 15.3L20.5 20.5' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.aura-icon-button[data-search-open]::after {
  content: none;
}
.aura-nav-actions button:focus-visible,
.aura-search button:focus-visible,
.aura-nav-item a:focus-visible,
.aura-mobile-menu a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.aura-menu-toggle {
  display: none;
}

.aura-mega {
  position: absolute;
  top: var(--aura-header);
  left: 0;
  width: 100%;
  color: var(--aura-ink);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--aura-shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s var(--aura-ease);
}

.aura-nav-item.is-open .aura-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aura-mega-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding-block: 44px 50px;
}

.aura-mega-intro {
  padding-right: 48px;
  border-right: 1px solid var(--aura-line);
}

.aura-mega-intro strong {
  display: block;
  margin: 10px 0 12px;
  font-size: 30px;
}

.aura-mega-intro p {
  margin: 0;
  color: var(--aura-slate);
  font-size: 14px;
}

.aura-mega ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.aura-mega li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-radius: 10px;
  background: var(--aura-paper);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.aura-mega li a:hover {
  color: var(--aura-blue);
  background: var(--aura-blue-tint);
  transform: translateY(-2px);
}

.aura-site-header.is-scrolled,
.aura-site-header.has-open-mega,
.aura-site-header.is-menu-open {
  color: var(--aura-ink);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--aura-shadow-1);
  backdrop-filter: blur(14px);
}

.aura-site-header.is-scrolled .aura-utility {
  border-color: var(--aura-line);
}

.aura-site-header.is-scrolled .aura-nav-wrap {
  border-color: var(--aura-line);
}

.aura-site-header.is-scrolled .aura-logo-mark,
.aura-site-header.has-open-mega .aura-logo-mark,
.aura-site-header.is-menu-open .aura-logo-mark {
  color: #fff;
  background: var(--aura-blue);
}

.aura-site-header.is-scrolled .aura-icon-button,
.aura-site-header.is-scrolled .aura-menu-toggle,
.aura-site-header.has-open-mega .aura-icon-button,
.aura-site-header.is-menu-open .aura-icon-button,
.aura-site-header.is-menu-open .aura-menu-toggle {
  border-color: var(--aura-line);
}

.aura-mobile-menu {
  height: calc(100dvh - var(--aura-header) - var(--aura-admin-offset, 0px));
  padding: 16px 24px 40px;
  color: var(--aura-ink);
  background: #fff;
  overflow-y: auto;
}

.aura-mobile-menu nav {
  display: grid;
}

.aura-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid var(--aura-line);
  font-size: 22px;
  font-weight: 800;
}

.aura-search {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  padding: 24px;
  place-items: center;
  color: var(--aura-ink);
  background: rgba(10, 46, 110, .86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity .25s ease;
}

/* Author display:grid overrides the browser's default [hidden] rule. */
.aura-search[hidden], .aura-mobile-menu[hidden] { display: none !important; }

.aura-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aura-search-inner {
  position: relative;
  width: min(760px, 100%);
  padding: 54px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--aura-shadow-3);
}

.aura-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--aura-paper);
  cursor: pointer;
  font-size: 26px;
}

.aura-search h2 {
  margin: 12px 0 28px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.18;
}

.aura-search form {
  display: flex;
  gap: 8px;
}

.aura-search input {
  flex: 1;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid var(--aura-line);
  border-radius: 12px;
}

.aura-search form button,
.aura-product-search button {
  padding-inline: 26px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--aura-blue);
  cursor: pointer;
  font-weight: 700;
}

.aura-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.aura-search-tags span,
.aura-search-tags a {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--aura-blue-tint);
  color: var(--aura-blue);
  font-size: 13px;
  font-weight: 700;
}

.aura-hero {
  position: relative;
  height: 847px;
  color: #fff;
  background: var(--aura-navy);
  overflow: hidden;
}

.aura-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  background-image: linear-gradient(90deg, rgba(7, 25, 56, .08), rgba(7, 25, 56, .24) 54%, rgba(7, 25, 56, .68)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transition: opacity 1s var(--aura-ease), transform 1.2s var(--aura-ease);
  transform: scale(1.025);
}

.aura-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.aura-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding-top: var(--aura-header);
}

.aura-hero-copy .aura-eyebrow {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  letter-spacing: .28em;
}

.aura-hero-copy p {
  margin: 20px 0 12px;
  font-size: 17px;
  letter-spacing: .18em;
}

.aura-hero-copy h1 {
  margin: 0;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.aura-hero-controls {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.aura-hero-controls button,
.aura-vertical-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.aura-hero-controls > div:first-child {
  display: flex;
  gap: 8px;
}

.aura-hero-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.aura-hero-progress i {
  position: relative;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, .32);
  overflow: hidden;
}

.aura-hero-progress b {
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: left;
}

.aura-hero-progress button {
  width: 32px;
  height: 32px;
  border: 0;
  font-size: 10px;
}

@keyframes aura-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.aura-section {
  position: relative;
  overflow: hidden;
}

.aura-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.aura-section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
}

.aura-section-heading p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--aura-slate);
}

.aura-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--aura-blue);
  font-size: 14px;
  font-weight: 700;
}

.aura-text-link span {
  transition: transform .25s ease;
}

.aura-text-link:hover span {
  transform: translate(3px, -3px);
}

.aura-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--aura-ease) var(--reveal-delay, 0ms), transform .9s var(--aura-ease) var(--reveal-delay, 0ms);
}

.aura-motion-ready [data-reveal="left"] {
  transform: translateX(-32px);
}

.aura-motion-ready [data-reveal="right"] {
  transform: translateX(32px);
}

.aura-motion-ready [data-reveal="scale"] {
  transform: scale(.96);
}

.aura-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.aura-key-figures {
  min-height: 800px;
  padding: 108px 0 106px;
}

.aura-key-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 100px;
  align-items: start;
}

.aura-key-intro p {
  max-width: 320px;
  margin: 24px 0 0;
  color: var(--aura-slate);
}

.aura-key-mark {
  position: relative;
  width: 88px;
  height: 88px;
  margin-top: 28px;
}

.aura-key-mark i {
  position: absolute;
  border: 1px solid rgba(30, 99, 216, .25);
  border-radius: 50%;
}

.aura-key-mark i:first-child {
  inset: 0;
}

.aura-key-mark i:nth-child(2) {
  inset: 19px;
  border-color: rgba(30, 99, 216, .48);
}

.aura-key-mark b {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--aura-blue);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.aura-key-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.aura-key-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
}

.aura-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
}

.aura-figure {
  min-height: 170px;
  padding: 30px 28px;
  border-top: 1px solid var(--aura-line);
}

.aura-figure:nth-child(-n+3) {
  border-top-color: var(--aura-blue);
}

.aura-figure strong {
  font-size: clamp(52px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -.055em;
}

.aura-figure em {
  margin-left: 6px;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
}

.aura-figure span {
  display: block;
  margin-top: 20px;
  color: var(--aura-slate);
  font-size: 14px;
}

.aura-research {
  padding: 148px 0 156px;
  background: var(--aura-paper);
}

.aura-research .aura-section-heading {
  position: static;
  width: auto;
}

.aura-research .aura-section-heading > div {
  max-width: 660px;
}

.aura-research-mosaic {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 104px 24px;
  margin-top: 108px;
}

.aura-research-card {
  position: relative;
  align-self: start;
}

.aura-research-card a {
  display: block;
}

.aura-research-card .aura-image-wrap {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.aura-research-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--aura-ease);
}

.aura-research-card:hover img {
  transform: scale(1.04);
}

.aura-research-card h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.aura-research-card p {
  margin: 0;
  color: var(--aura-slate);
  font-size: 14px;
  line-height: 1.8;
}

.aura-research-card-1 { grid-column: 1 / span 4; }
.aura-research-card-1 .aura-image-wrap { height: 500px; }
.aura-research-card-2 { grid-column: 8 / span 4; margin-top: 132px; }
.aura-research-card-2 .aura-image-wrap { height: 340px; }
.aura-research-card-3 { grid-column: 3 / span 7; }
.aura-research-card-3 .aura-image-wrap { height: 420px; }
.aura-research-card-4 { grid-column: 1 / span 4; }
.aura-research-card-4 .aura-image-wrap { height: 520px; }
.aura-research-card-5 { grid-column: 7 / span 4; margin-top: 112px; }
.aura-research-card-5 .aura-image-wrap { height: 340px; }
.aura-research-card-6 { grid-column: 4 / span 5; }
.aura-research-card-6 .aura-image-wrap { height: 360px; }

.aura-centers {
  height: 955px;
  padding-top: 160px;
}

.aura-center-grid {
  display: grid;
  grid-template-columns: 420px 700px;
  gap: 80px;
}

.aura-center-grid > div:first-child {
  padding-top: 40px;
}

.aura-center-grid h2 {
  margin: 18px 0 24px;
  font-size: 46px;
  line-height: 1.2;
}

.aura-center-grid > div:first-child > p {
  color: var(--aura-slate);
}

.aura-vertical-controls {
  display: flex;
  gap: 8px;
  margin-top: 70px;
}

.aura-vertical-controls button {
  color: var(--aura-ink);
  border-color: var(--aura-line);
}

.aura-center-slides {
  position: relative;
  height: 620px;
  border-radius: 16px;
  overflow: hidden;
}

.aura-center-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s ease, transform .6s var(--aura-ease);
}

.aura-center-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.aura-center-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aura-center-slide::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(6, 22, 48, .82));
}

.aura-center-slide > div {
  position: absolute;
  right: 42px;
  bottom: 38px;
  left: 42px;
  z-index: 2;
  color: #fff;
}

.aura-center-slide > div span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.aura-center-slide h3 {
  margin: 10px 0 4px;
  font-size: 34px;
}

.aura-center-slide p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.aura-brands {
  min-height: 1020px;
  padding: 154px 0 128px;
  background: var(--aura-paper);
}

.aura-brands .aura-section-heading {
  display: block;
  text-align: center;
}

.aura-brands .aura-section-heading > div {
  width: min(100%, 660px);
  margin-inline: auto;
}

.aura-brands .aura-section-heading .aura-text-link {
  position: static;
  margin: 28px auto 0;
}

.aura-brand-carousel {
  margin-top: 72px;
}

.aura-brand-rail {
  display: flex;
  gap: 20px;
  padding: 12px 0 30px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.aura-brand-rail::-webkit-scrollbar {
  display: none;
}

.aura-brand-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.aura-brand-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}

.aura-brand-card a {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-align: center;
  transition: background .3s ease, box-shadow .3s ease, transform .3s var(--aura-ease);
}

.aura-brand-card a:hover {
  background: #fff;
  box-shadow: var(--aura-shadow-2);
  transform: translateY(-6px);
}

.aura-brand-card .aura-mono {
  align-self: flex-start;
  color: var(--aura-muted);
  font-size: 10px;
}

.aura-brand-card img {
  width: 100%;
  height: 292px;
  margin: 14px auto 18px;
  object-fit: contain;
  transition: transform .3s var(--aura-ease);
}

.aura-brand-card a:hover img {
  transform: translateY(-8px) scale(1.04);
}

.aura-brand-card h3 {
  margin: 0;
  font-size: 16px;
}

.aura-brand-card p {
  display: -webkit-box;
  margin: 8px 0 0;
  color: var(--aura-muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.aura-rail-hint {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--aura-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.aura-rail-hint i {
  display: block;
  width: 180px;
  height: 1px;
  background: var(--aura-line);
}

.aura-brand-controls {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin: 30px 0 0 auto;
  color: var(--aura-muted);
  font-size: 11px;
}

.aura-brand-controls > i {
  position: relative;
  display: block;
  height: 1px;
  background: var(--aura-line);
  overflow: hidden;
}

.aura-brand-controls > i b {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 5%;
  background: var(--aura-blue);
  transition: width .45s var(--aura-ease);
}

.aura-brand-controls > div {
  display: flex;
  gap: 6px;
  margin-left: 10px;
}

.aura-brand-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--aura-line);
  border-radius: 50%;
  color: var(--aura-ink);
  background: #fff;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.aura-brand-controls button:hover {
  color: #fff;
  border-color: var(--aura-blue);
  background: var(--aura-blue);
}

.aura-integrity {
  height: 1160px;
  padding-top: 160px;
}

.aura-integrity-grid {
  display: grid;
  grid-template-columns: 250px 486px minmax(0, 1fr);
  gap: 32px;
}

.aura-integrity-grid > div:first-child {
  padding-top: 40px;
}

.aura-integrity-grid > div:first-child h2 {
  margin: 16px 0 0;
  font-size: 40px;
  line-height: 1.22;
}

.aura-integrity-grid > div:first-child h2 span {
  display: block;
  white-space: nowrap;
}

.aura-integrity-image {
  height: 840px;
  border-radius: 16px;
  overflow: hidden;
}

.aura-integrity-image img {
  width: 100%;
  height: calc(100% + 90px);
  margin-top: -45px;
  object-fit: cover;
}

.aura-integrity-grid > div:last-child {
  padding: 96px 0 0;
}

.aura-integrity-grid > div:last-child p {
  color: var(--aura-slate);
  line-height: 2.05;
}

.aura-integrity-grid .aura-integrity-lead {
  margin-bottom: 36px;
  color: var(--aura-ink) !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75 !important;
}

.aura-integrity-grid .aura-text-link {
  margin-top: 42px;
}

.aura-news-section {
  min-height: 989px;
  padding-top: 154px;
  background: var(--aura-paper);
}

.aura-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 102px;
}

.aura-news-card a {
  display: block;
  min-height: 456px;
  padding-bottom: 24px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform .35s var(--aura-ease), box-shadow .35s ease;
}

.aura-news-card a:hover {
  box-shadow: var(--aura-shadow-2);
  transform: translateY(-6px);
}

.aura-news-card .aura-image-wrap {
  height: 224px;
  margin-bottom: 24px;
  overflow: hidden;
}

.aura-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--aura-ease);
}

.aura-news-card a:hover img {
  transform: scale(1.04);
}

.aura-news-card > a > :not(.aura-image-wrap) {
  margin-right: 24px;
  margin-left: 24px;
}

.aura-news-card h3 {
  display: -webkit-box;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.aura-news-card p {
  display: none;
}

.aura-news-card time {
  color: var(--aura-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.aura-page-hero {
  position: relative;
  display: flex;
  height: 770px;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5, 24, 55, .68), rgba(5, 24, 55, .08)), var(--page-hero);
  background-position: center;
  background-size: cover;
}

.aura-page-hero .aura-container {
  position: relative;
  padding-top: var(--aura-header);
}

.aura-page-hero .aura-eyebrow {
  color: rgba(255, 255, 255, .76);
}

.aura-page-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.1;
}

.aura-page-scroll {
  position: absolute;
  top: 260px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.aura-page-scroll i {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, .66);
}

.aura-subsection {
  padding: 144px 0;
}

.aura-two-column {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 160px;
}

.aura-two-column .aura-section-heading {
  display: block;
}

.aura-two-column .aura-section-heading h2 {
  font-size: 46px;
}

.aura-two-column > div:last-child {
  padding-top: 52px;
}

.aura-two-column > div:last-child p {
  color: var(--aura-slate);
  line-height: 2;
}

.aura-lead {
  color: var(--aura-ink) !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7 !important;
}

.aura-values,
.aura-locations,
.aura-rnd-page,
.aura-news-archive,
.aura-support {
  background: var(--aura-paper);
}

.aura-value-grid,
.aura-location-grid,
.aura-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 76px;
}

.aura-value-grid article,
.aura-support-cards article {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(230, 233, 240, .72);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--aura-shadow-1);
  overflow: hidden;
  transition: transform .4s var(--aura-ease), box-shadow .4s ease, border-color .4s ease;
}

.aura-value-grid article:hover {
  border-color: rgba(30, 99, 216, .22);
  box-shadow: var(--aura-shadow-2);
  transform: translateY(-8px);
}

.aura-value-grid article::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(30, 99, 216, .09), rgba(30, 99, 216, 0) 68%);
  pointer-events: none;
}

.aura-value-grid article span,
.aura-support-cards article > span {
  color: var(--aura-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.aura-value-grid h3,
.aura-support-cards h3 {
  margin: 118px 0 16px;
  font-size: 26px;
}

.aura-value-icon {
  position: absolute;
  top: 30px;
  right: 32px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(30, 99, 216, .18);
  border-radius: 50%;
  color: var(--aura-blue);
  background: var(--aura-blue-tint);
}

.aura-value-icon i {
  position: relative;
  display: block;
}

.aura-value-icon-consumer i {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(30, 99, 216, .12);
}

.aura-value-icon-quality i {
  width: 17px;
  height: 29px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(42deg) translate(-3px, -3px);
}

.aura-value-icon-tomorrow i::before {
  content: "↗";
  font-size: 30px;
  font-style: normal;
  line-height: 1;
}

.aura-value-grid p,
.aura-support-cards p {
  color: var(--aura-slate);
}

.aura-location-grid article {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.aura-location-grid img {
  width: 100%;
  height: 180px;
  margin-bottom: 26px;
  object-fit: cover;
}

.aura-location-grid article > :not(img) {
  margin-right: 26px;
  margin-left: 26px;
}

.aura-location-grid h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 22px;
}

.aura-location-grid p {
  margin-bottom: 28px;
  color: var(--aura-slate);
  font-size: 14px;
}

.aura-history-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
  margin-top: 100px;
}

.aura-history-layout aside {
  position: sticky;
  top: 160px;
  align-self: start;
}

.aura-history-layout aside strong {
  display: block;
  margin: 22px 0;
  color: var(--aura-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
}

.aura-history-layout aside p {
  color: var(--aura-slate);
}

.aura-timeline {
  padding-left: 54px;
  border-left: 1px solid var(--aura-line);
}

.aura-timeline section {
  margin-bottom: 130px;
}

.aura-timeline section > h2 {
  margin-bottom: 50px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 36px;
}

.aura-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--aura-line);
}

.aura-timeline article::before {
  position: absolute;
  top: 36px;
  left: -60px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--aura-blue);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.aura-timeline article > span {
  color: var(--aura-blue);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.aura-timeline h3 {
  margin: 0;
  font-size: 22px;
}

.aura-timeline p {
  grid-column: 2;
  color: var(--aura-slate);
}

.aura-product-search {
  max-width: 780px;
  margin: 76px auto 36px;
}

.aura-product-search label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.aura-product-search > div {
  display: flex;
  gap: 8px;
}

.aura-product-search input {
  flex: 1;
  padding: 17px 18px;
  border: 1px solid var(--aura-line);
  border-radius: 12px;
}

.aura-filter {
  position: sticky;
  top: var(--aura-header);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--aura-shadow-1);
  backdrop-filter: blur(12px);
}

.aura-filter a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--aura-slate);
  font-size: 13px;
  font-weight: 700;
}

.aura-filter a.is-active,
.aura-filter a:hover {
  color: #fff;
  background: var(--aura-blue);
}

.aura-product-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 70px 0 24px;
}

.aura-product-results .aura-mono {
  color: var(--aura-blue);
  font-size: 11px;
}

.aura-product-results p {
  margin: 0;
  color: var(--aura-slate);
}

.aura-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.aura-product-card a {
  display: block;
  min-height: 450px;
  padding: 24px;
  border: 1px solid var(--aura-line);
  border-radius: 16px;
  background: #fff;
  transition: transform .3s var(--aura-ease), box-shadow .3s ease;
}

.aura-product-card a:hover {
  box-shadow: var(--aura-shadow-2);
  transform: translateY(-6px);
}

.aura-product-card img {
  width: 100%;
  height: 270px;
  margin-bottom: 20px;
  object-fit: contain;
}

.aura-product-card h3 {
  margin: 8px 0;
  font-size: 18px;
}

.aura-product-card p {
  display: -webkit-box;
  color: var(--aura-slate);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.aura-featured-product {
  background: #fff;
}

.aura-featured-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 100px;
}

.aura-product-gallery > img {
  width: 560px;
  height: 620px;
  border-radius: 16px;
  background: var(--aura-paper);
  object-fit: contain;
}

.aura-product-gallery > div {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.aura-product-gallery button {
  width: 86px;
  height: 86px;
  padding: 0;
  border: 1px solid var(--aura-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.aura-product-gallery button.is-active {
  border-color: var(--aura-blue);
}

.aura-product-gallery button img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.aura-featured-grid > div:last-child {
  padding-top: 36px;
}

.aura-featured-grid h2 {
  margin: 14px 0 24px;
  font-size: 50px;
}

.aura-featured-grid dl {
  margin: 40px 0;
}

.aura-featured-grid dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 15px 0;
  border-top: 1px solid var(--aura-line);
}

.aura-featured-grid dt {
  color: var(--aura-muted);
}

.aura-featured-grid dd {
  margin: 0;
  font-weight: 600;
}

.aura-detail-image {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

.aura-rnd-list {
  margin-top: 100px;
}

.aura-rnd-list article {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--aura-line);
}

.aura-rnd-list article:nth-child(even) {
  grid-template-columns: 520px 1fr;
}

.aura-rnd-list article:nth-child(even) > div {
  order: 2;
}

.aura-rnd-list img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
}

.aura-rnd-list h3 {
  margin: 18px 0;
  font-size: 38px;
}

.aura-rnd-list p {
  max-width: 460px;
  color: var(--aura-slate);
  font-size: 18px;
}

.aura-center-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.aura-center-page-grid article {
  border-radius: 16px;
  background: var(--aura-paper);
  overflow: hidden;
}

.aura-center-page-grid img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.aura-center-page-grid h3,
.aura-center-page-grid p {
  margin-right: 30px;
  margin-left: 30px;
}

.aura-center-page-grid h3 {
  margin-top: 24px;
  font-size: 26px;
}

.aura-center-page-grid p {
  margin-bottom: 34px;
  color: var(--aura-slate);
}

.aura-news-featured {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 70px;
  align-items: center;
  margin: 80px 0 100px;
}

.aura-news-featured img {
  width: 600px;
  height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.aura-news-featured h2 {
  margin: 16px 0;
  font-size: 36px;
  line-height: 1.25;
}

.aura-news-featured p {
  color: var(--aura-slate);
}

.aura-news-featured time,
.aura-news-list time {
  color: var(--aura-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.aura-news-list article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--aura-line);
}

.aura-news-list img {
  width: 280px;
  height: 164px;
  border-radius: 12px;
  object-fit: cover;
}

.aura-news-list h3 {
  margin: 10px 0 8px;
  font-size: 24px;
}

.aura-news-list p {
  color: var(--aura-slate);
}

.aura-support-cards article {
  min-height: 350px;
}

.aura-support-cards a {
  display: inline-flex;
  margin-top: 36px;
  color: var(--aura-blue);
  font-weight: 700;
}

.aura-inquiry-wrap {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 120px;
  margin-top: 150px;
  padding-top: 120px;
  border-top: 1px solid var(--aura-line);
}

.aura-inquiry-wrap > div:first-child h2 {
  margin: 16px 0 24px;
  font-size: 46px;
}

.aura-inquiry-wrap > div:first-child p {
  color: var(--aura-slate);
}

.aura-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.aura-inquiry-form > label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.aura-inquiry-form > label:nth-of-type(4),
.aura-inquiry-form .aura-consent,
.aura-inquiry-form button,
.aura-form-notice {
  grid-column: 1 / -1;
}

.aura-inquiry-form input,
.aura-inquiry-form select,
.aura-inquiry-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--aura-line);
  border-radius: 10px;
  color: var(--aura-ink);
  background: #fff;
}

.aura-inquiry-form textarea {
  resize: vertical;
}

.aura-inquiry-form .aura-consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 500;
}

.aura-consent input {
  width: 18px;
  height: 18px;
}

.aura-inquiry-form button {
  justify-self: start;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--aura-blue);
  cursor: pointer;
  font-weight: 700;
}

.aura-form-notice {
  padding: 14px 16px;
  border: 1px solid #b9e8d9;
  border-radius: 10px;
  color: #0b6e5b;
  background: #e4f7f1;
}

.aura-form-notice-invalid,
.aura-form-notice-error,
.aura-form-notice-spam {
  color: #9b2f27;
  border-color: #f0c7c3;
  background: #fff0ee;
}

.aura-honeypot {
  position: absolute;
  left: -9999px;
}

.aura-entry {
  padding-top: calc(var(--aura-header) + 80px);
  padding-bottom: 100px;
}

.aura-basic-card {
  padding: 24px;
  border: 1px solid var(--aura-line);
  border-radius: 14px;
}

.aura-footer-message {
  padding: 120px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--aura-blue), var(--aura-navy));
}

.aura-footer-message .aura-eyebrow {
  color: #9fc0fb;
}

.aura-footer-message p {
  margin: 22px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.aura-footer-main {
  padding-top: 70px;
  color: #cdd8ef;
  background: var(--aura-navy);
}

.aura-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.aura-logo-light .aura-logo-mark {
  color: var(--aura-navy);
}

.aura-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.aura-footer-grid > div:first-child p {
  margin-top: 22px;
  color: #aebfe4;
}

.aura-footer-label {
  margin-bottom: 14px;
  color: #7fa8ee;
  font-size: 10px;
  letter-spacing: .12em;
}

.aura-footer-grid a:hover {
  color: #fff;
}

.aura-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #7f92bd;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.aura-footer-bottom div {
  display: flex;
  gap: 22px;
}

.aura-back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--aura-blue);
  box-shadow: var(--aura-shadow-2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s var(--aura-ease);
}

.aura-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1279px) {
  :root {
    --aura-gutter: 24px;
    --aura-header: 65px;
  }

  .aura-utility,
  .aura-desktop-nav {
    display: none;
  }

  .aura-nav {
    height: 65px;
  }

  .aura-site-header {
    color: #fff;
  }

  .aura-logo-mark {
    width: 34px;
    height: 34px;
  }

  .aura-logo strong {
    font-size: 18px;
  }

  .aura-logo small {
    font-size: 8px;
  }

  .aura-nav-actions {
    margin-left: auto;
  }

  .aura-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
  }

  .aura-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
    transition: transform .2s ease, opacity .2s ease;
  }
  .aura-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .aura-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .aura-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .aura-hero {
    height: 844px;
  }

  .aura-hero-slide {
    background-position: 36% center;
  }

  .aura-hero-copy {
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 160px;
    text-align: left;
  }

  .aura-hero-copy h1 {
    font-size: clamp(46px, 8vw, 68px);
  }

  .aura-key-figures {
    min-height: 840px;
    padding: 110px 0;
  }

  .aura-key-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 60px;
  }

  .aura-figures {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 76px;
  }

  .aura-research {
    min-height: auto;
    padding: 110px 0;
  }

  .aura-research .aura-section-heading {
    position: static;
    width: auto;
  }

  .aura-research-mosaic {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 24px;
    margin-top: 72px;
  }

  .aura-research-card {
    position: static;
    width: auto;
    grid-column: auto;
    margin-top: 0;
  }

  .aura-research-card .aura-image-wrap {
    height: 420px;
  }

  .aura-centers {
    height: auto;
    min-height: 724px;
    padding: 100px 0;
  }

  .aura-center-grid {
    grid-template-columns: 38% 1fr;
    gap: 40px;
  }

  .aura-center-slides {
    height: 520px;
  }

  .aura-brands {
    min-height: 880px;
    padding: 100px 0;
  }

  .aura-brand-card {
    flex-basis: calc((100% - 40px) / 3);
  }

  .aura-integrity {
    height: auto;
    padding: 100px 0;
  }

  .aura-integrity-grid {
    grid-template-columns: 220px minmax(340px, 440px) minmax(0, 1fr);
    gap: 24px;
  }

  .aura-integrity-grid > div:last-child {
    padding: 64px 0 0;
  }

  .aura-integrity-grid .aura-integrity-lead {
    font-size: 19px;
  }

  .aura-news-section {
    min-height: 760px;
    padding: 100px 0;
  }

  .aura-news-grid {
    margin-top: 72px;
  }

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

  .aura-featured-grid,
  .aura-news-featured {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .aura-product-gallery > img,
  .aura-news-featured img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .aura-icon-button,
  .aura-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .aura-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .aura-hero-slide {
    background-position: 34% center;
  }

  .aura-hero-slide::after {
    position: absolute;
    inset: 42% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(5, 24, 55, .82));
  }

  .aura-hero-copy {
    z-index: 2;
    padding-bottom: 140px;
  }

  .aura-hero-copy .aura-eyebrow {
    font-size: 10px;
  }

  .aura-hero-copy p {
    margin: 12px 0 8px;
    font-size: 13px;
    letter-spacing: .1em;
  }

  .aura-hero-copy h1 {
    font-size: 46px;
  }

  .aura-hero-controls {
    bottom: 40px;
  }

  .aura-hero-controls > div:first-child {
    display: none;
  }

  .aura-hero-progress {
    width: 100%;
  }

  .aura-hero-progress i {
    flex: 1;
    width: auto;
  }

  .aura-section-heading {
    display: block;
  }

  .aura-section-heading h2 {
    font-size: 38px;
  }

  .aura-section-heading .aura-text-link {
    margin-top: 28px;
  }

  .aura-key-figures {
    min-height: 0;
    padding: 90px 0;
  }

  .aura-key-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .aura-key-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 24px;
    align-items: start;
  }

  .aura-key-intro p {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 24px;
  }

  .aura-key-mark {
    width: 76px;
    height: 76px;
    margin-top: 0;
  }

  .aura-key-mark i:nth-child(2) {
    inset: 17px;
  }

  .aura-key-copy {
    display: block;
  }

  .aura-key-copy h2 {
    font-size: 38px;
  }

  .aura-key-copy .aura-text-link {
    margin-top: 28px;
  }

  .aura-figures {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }

  .aura-figure {
    min-height: 136px;
    padding: 24px 10px;
  }

  .aura-figure strong {
    font-size: 40px;
  }

  .aura-figure em {
    font-size: 18px;
  }

  .aura-figure span {
    margin-top: 12px;
    font-size: 12px;
  }

  .aura-research {
    padding: 90px 0;
  }

  .aura-research-mosaic {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 56px;
  }

  .aura-research-card:nth-child(even) {
    margin-left: 15%;
  }

  .aura-research-card .aura-image-wrap {
    height: 430px;
  }

  .aura-research-card:nth-child(2) .aura-image-wrap,
  .aura-research-card:nth-child(5) .aura-image-wrap,
  .aura-research-card:nth-child(6) .aura-image-wrap {
    height: 300px;
  }

  .aura-centers {
    padding: 90px 0;
  }

  .aura-center-grid {
    grid-template-columns: 1fr;
  }

  .aura-center-grid > div:first-child {
    padding-top: 0;
  }

  .aura-center-grid h2 {
    font-size: 38px;
  }

  .aura-vertical-controls {
    margin: 32px 0;
  }

  .aura-center-slides {
    height: 460px;
  }

  .aura-center-slide > div {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .aura-center-slide h3 {
    font-size: 26px;
  }

  .aura-brands .aura-section-heading {
    text-align: left;
  }

  .aura-brands .aura-section-heading .aura-text-link {
    position: static;
  }

  .aura-brand-carousel {
    margin-top: 48px;
  }

  .aura-brand-rail {
    margin-top: 0;
    padding-left: 0;
  }

  .aura-brand-card {
    flex-basis: 78%;
  }

  .aura-brand-controls {
    grid-template-columns: auto minmax(80px, 1fr) auto;
    gap: 12px;
    max-width: none;
  }

  .aura-brand-controls > div {
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin-left: 0;
  }

  .aura-integrity-grid {
    grid-template-columns: 1fr;
  }

  .aura-integrity-grid > div:first-child h2 {
    font-size: 36px;
  }

  .aura-integrity-image {
    height: 600px;
    margin-top: 30px;
  }

  .aura-integrity-grid > div:last-child {
    padding: 28px 0 0;
  }

  .aura-news-grid {
    display: flex;
    gap: 16px;
    margin-right: -24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .aura-news-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .aura-page-hero {
    height: 620px;
    background-position: center;
  }

  .aura-page-hero h1 {
    font-size: 44px;
  }

  .aura-page-scroll {
    display: none;
  }

  .aura-subsection {
    padding: 90px 0;
  }

  .aura-two-column,
  .aura-history-layout,
  .aura-featured-grid,
  .aura-news-featured,
  .aura-inquiry-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aura-two-column > div:last-child {
    padding-top: 0;
  }

  .aura-value-grid,
  .aura-location-grid,
  .aura-support-cards {
    grid-template-columns: 1fr;
  }

  .aura-value-grid article,
  .aura-support-cards article {
    min-height: 260px;
  }

  .aura-value-grid h3,
  .aura-support-cards h3 {
    margin-top: 96px;
  }

  .aura-history-layout aside {
    position: static;
  }

  .aura-timeline {
    padding-left: 28px;
  }

  .aura-timeline article {
    grid-template-columns: 70px 1fr;
  }

  .aura-timeline article::before {
    left: -34px;
  }

  .aura-product-search > div {
    display: grid;
  }

  .aura-product-search button {
    min-height: 50px;
  }

  .aura-filter {
    top: 65px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-right: -24px;
    margin-left: -24px;
    padding-inline: 24px;
    border-radius: 0;
    overflow-x: auto;
  }

  .aura-filter a {
    flex: 0 0 auto;
  }

  .aura-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .aura-product-card a {
    min-height: 360px;
    padding: 14px;
  }

  .aura-product-card img {
    height: 210px;
  }

  .aura-product-card h3 {
    font-size: 15px;
  }

  .aura-product-card p {
    font-size: 11px;
  }

  .aura-product-gallery > img {
    height: 440px;
  }

  .aura-featured-grid h2 {
    font-size: 38px;
  }

  .aura-rnd-list article,
  .aura-rnd-list article:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 54px 0;
  }

  .aura-rnd-list article:nth-child(even) > div {
    order: 0;
  }

  .aura-rnd-list img {
    height: 360px;
  }

  .aura-center-page-grid {
    grid-template-columns: 1fr;
  }

  .aura-center-page-grid img {
    height: 360px;
  }

  .aura-news-featured img {
    height: 240px;
  }

  .aura-news-featured h2 {
    font-size: 30px;
  }

  .aura-news-list article {
    grid-template-columns: 120px 1fr;
    gap: 18px;
  }

  .aura-news-list img {
    width: 120px;
    height: 100px;
  }

  .aura-news-list h3 {
    font-size: 17px;
  }

  .aura-news-list p {
    display: none;
  }

  .aura-inquiry-wrap {
    margin-top: 100px;
    padding-top: 80px;
  }

  .aura-inquiry-form {
    grid-template-columns: 1fr;
  }

  .aura-inquiry-form > label {
    grid-column: 1;
  }

  .aura-search-inner {
    padding: 48px 22px 28px;
  }

  .aura-search h2 {
    font-size: 32px;
  }

  .aura-search form {
    display: grid;
  }

  .aura-search form button {
    min-height: 48px;
  }

  .aura-footer-message {
    padding: 84px 0;
  }

  .aura-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .aura-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .aura-footer-bottom {
    display: grid;
    gap: 16px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.aura-custom-logo { max-height: 64px; width: auto; max-width: 220px; object-fit: contain; }

body.admin-bar .aura-site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .aura-site-header { top: 46px; } }
