:root {
  --gsem-primary: #0668ff;
  --gsem-bg: #f3f8fc;
  --gsem-card-bg: #eaf2fb;
  --gsem-text: #303852;
  --gsem-muted: #5e6680;
  --gsem-radius-sm: 6px;
  --gsem-radius-md: 8px;
  --gsem-radius-lg: 8px;
  --gsem-shadow-soft: 0 8px 22px rgba(27, 42, 78, 0.09);
  --gsem-shadow-media: 0 10px 26px rgba(27, 42, 78, 0.12);
  --gsem-section-y: 52px;
  --gsem-container: 1180px;
}

.gsem-section,
.gsem-section * {
  box-sizing: border-box;
}

.gsem-section {
  color: var(--gsem-text);
  font-family: inherit;
}

.gsem-container {
  width: min(var(--gsem-container), calc(100% - 40px));
  margin-inline: auto;
}

.gsem-section img,
.gsem-section video,
.gsem-section iframe {
  max-width: 100%;
}

.gsem-section p {
  margin: 0 0 14px;
}

.gsem-section p:last-child {
  margin-bottom: 0;
}

.gsem-button,
.gsem-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--gsem-primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.gsem-button:hover,
.gsem-card__link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 104, 255, 0.24);
}

/* Responsive Infographic */
.gsem-infographic {
  display: flex;
  padding: 0;
}

.gsem-infographic--align-left {
  justify-content: flex-start;
}

.gsem-infographic--align-center {
  justify-content: center;
}

.gsem-infographic--align-right {
  justify-content: flex-end;
}

.gsem-infographic__picture {
  display: block;
  width: min(var(--gsem-max-width, 1180px), 100%);
}

.gsem-infographic__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--gsem-radius, 0px);
}

.gsem-infographic--shadow .gsem-infographic__image {
  box-shadow: var(--gsem-shadow-soft);
}

/* Feature Section */
.gsem-feature {
  padding: var(--gsem-section-y) 0;
  background: var(--gsem-section-bg, transparent);
}

.gsem-feature--background_band {
  background: var(--gsem-section-bg, #eef5fb);
}

.gsem-feature--compact {
  padding: 36px 0;
}

.gsem-feature--wide .gsem-container {
  --gsem-container: 1260px;
}

.gsem-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.gsem-feature--media-right .gsem-feature__media {
  order: 2;
}

.gsem-feature--media-right .gsem-feature__content {
  order: 1;
}

.gsem-feature__media {
  display: grid;
  gap: 18px;
}

.gsem-feature--two-media .gsem-feature__media {
  grid-template-columns: 1fr;
}

.gsem-feature__media-frame {
  overflow: hidden;
  border-radius: var(--gsem-radius-lg);
}

.gsem-feature--media-card .gsem-feature__media-frame {
  background: #fff;
  box-shadow: var(--gsem-shadow-media);
}

.gsem-feature--media-transparent .gsem-feature__media-frame {
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.gsem-feature__media-item {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.gsem-feature--fit-cover .gsem-feature__media-item {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gsem-feature iframe.gsem-feature__media-item,
.gsem-feature video.gsem-feature__media-item {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gsem-feature__title,
.gsem-video-promo__title,
.gsem-cards__heading,
.gsem-video-grid__heading {
  margin: 0 0 14px;
  color: var(--gsem-text);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

.gsem-feature__body,
.gsem-video-promo__body,
.gsem-cards__intro,
.gsem-video-grid__intro {
  color: var(--gsem-text);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.58;
}

.gsem-feature__body ul,
.gsem-feature__body ol,
.gsem-video-promo__body ul,
.gsem-video-promo__body ol {
  margin: 12px 0 0 20px;
  padding: 0;
}

.gsem-feature__body a,
.gsem-video-promo__body a,
.gsem-cards__intro a,
.gsem-video-grid__intro a {
  color: var(--gsem-primary);
  font-weight: 800;
}

.gsem-feature__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: var(--gsem-radius-md);
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-feature__button {
  margin-top: 22px;
}

/* Accordion */
.gsem-accordion {
  margin-top: 28px;
  border-top: 1px solid rgba(48, 56, 82, 0.14);
}

.gsem-accordion__item {
  border-bottom: 1px solid rgba(48, 56, 82, 0.14);
}

.gsem-accordion__button {
  appearance: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--gsem-text);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.gsem-accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.gsem-accordion__icon::before,
.gsem-accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 2px;
  background: var(--gsem-primary);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.gsem-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gsem-accordion__button[aria-expanded="true"] .gsem-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.gsem-accordion__content {
  padding: 0 0 18px;
  color: var(--gsem-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Video shared */
.gsem-video-shell {
  position: relative;
}

.gsem-video-shell__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--gsem-radius-md);
  background: #dce6f1;
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-video-shell__media img,
.gsem-video-shell__media video,
.gsem-video-shell__media iframe {
  display: block;
  width: 100%;
}

.gsem-video-shell__media iframe,
.gsem-video-shell__media video {
  aspect-ratio: 16 / 9;
  border: 0;
}

.gsem-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(74px, 9vw, 106px);
  height: clamp(74px, 9vw, 106px);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(6, 104, 255, 0.88);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.42), 0 16px 36px rgba(6, 104, 255, 0.30);
  transform: translate(-50%, -50%);
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.gsem-play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #fff;
}

.gsem-play-button::before,
.gsem-play-button::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.gsem-video-promo--pulse .gsem-play-button::before,
.gsem-video-promo--pulse .gsem-play-button::after,
.gsem-video-grid .gsem-play-button::before,
.gsem-video-grid .gsem-play-button::after {
  animation: gsem-play-pulse 2.1s ease-out infinite;
}

.gsem-video-promo--pulse .gsem-play-button::after,
.gsem-video-grid .gsem-play-button::after {
  animation-delay: 0.7s;
}

.gsem-video-promo--hover .gsem-video-shell__media:hover .gsem-play-button,
.gsem-video-card:hover .gsem-play-button,
.gsem-play-button:hover {
  background: var(--gsem-primary);
  transform: translate(-50%, -50%) scale(1.06);
}

@keyframes gsem-play-pulse {
  0% {
    transform: scale(0.86);
    opacity: 0.65;
  }
  75%, 100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* Video Promo Split */
.gsem-video-promo {
  padding: var(--gsem-section-y) 0;
}

.gsem-video-promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.gsem-video-promo--video-right .gsem-video-promo__media {
  order: 2;
}

.gsem-video-promo--video-right .gsem-video-promo__content {
  order: 1;
}

.gsem-video-promo__poster {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Cards */
.gsem-cards {
  padding: var(--gsem-section-y) 0;
}

.gsem-cards__header,
.gsem-video-grid__header {
  margin-bottom: clamp(20px, 3vw, 36px);
}

.gsem-cards__heading {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
}

.gsem-cards__eyebrow {
  margin-top: 34px;
  color: rgba(48, 56, 82, 0.46);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.gsem-cards__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.gsem-cards--cols-2 .gsem-cards__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gsem-cards--cols-3 .gsem-cards__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gsem-cards--cols-4 .gsem-cards__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gsem-card {
  min-width: 0;
}

.gsem-cards--style-card .gsem-card,
.gsem-cards--style-soft .gsem-card {
  padding: 16px;
  border-radius: var(--gsem-radius-lg);
  background: #fff;
}

.gsem-cards--style-card .gsem-card {
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-cards--style-soft .gsem-card {
  background: var(--gsem-card-bg);
}

.gsem-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--gsem-radius-md);
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-cards--style-card .gsem-card__image,
.gsem-cards--style-soft .gsem-card__image {
  box-shadow: none;
}

.gsem-card__title {
  margin: 14px 0 0;
  color: var(--gsem-text);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.gsem-card__text {
  margin-top: 8px;
  color: var(--gsem-muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.gsem-card__link {
  margin-top: 14px;
}

/* Video Grid */
.gsem-video-grid {
  padding: var(--gsem-section-y) 0;
}

.gsem-video-grid__items {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
}

.gsem-video-grid--cols-1 .gsem-video-grid__items {
  grid-template-columns: 1fr;
}

.gsem-video-grid--cols-2 .gsem-video-grid__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gsem-video-grid--cols-3 .gsem-video-grid__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gsem-video-card {
  position: relative;
  min-width: 0;
}

.gsem-video-card__media {
  overflow: hidden;
  border-radius: var(--gsem-radius-md);
  background: #111827;
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-video-card__poster,
.gsem-video-card__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.gsem-video-card__caption--above {
  margin-bottom: 10px;
}

.gsem-video-card__caption--below {
  margin-top: 12px;
}

.gsem-video-card__caption--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.72));
}

.gsem-video-card__title {
  margin: 0;
  color: inherit;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.16;
  font-weight: 900;
}

.gsem-video-card__subtitle {
  margin-top: 4px;
  color: inherit;
  opacity: 0.88;
  font-size: 15px;
  font-weight: 800;
}

/* Accordion Page */
.gsem-accordion-page {
  --gsem-ap-bg: transparent;
  --gsem-ap-card: #e7f0fb;
  --gsem-ap-text: #424763;
  --gsem-ap-muted: #5f6782;
  --gsem-ap-accent: #0f68ff;
  --gsem-ap-radius: 16px;
  padding: 58px 0 74px;
  background: var(--gsem-ap-bg);
  color: var(--gsem-ap-text);
  overflow: hidden;
}

.gsem-accordion-page--narrow_cards .gsem-accordion-page__inner {
  --gsem-container: 850px;
}

.gsem-accordion-page--faq_grid .gsem-accordion-page__inner,
.gsem-accordion-page--full_width_cards .gsem-accordion-page__inner {
  --gsem-container: 960px;
}

.gsem-accordion-page__header {
  margin-bottom: 30px;
}

.gsem-accordion-page__title,
.gsem-accordion-page__group-title {
  margin: 0 0 30px;
  color: var(--gsem-ap-text);
  font-family: Poppins, inherit;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.gsem-accordion-page__intro {
  width: min(680px, 100%);
  color: var(--gsem-ap-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.gsem-accordion-page__intro p {
  margin: 0 0 14px;
}

.gsem-accordion-page__intro p:last-child {
  margin-bottom: 0;
}

.gsem-accordion-page__group {
  margin-top: 54px;
}

.gsem-accordion-page__header + .gsem-accordion-page__group,
.gsem-accordion-page__group:first-child {
  margin-top: 0;
}

.gsem-accordion-page__cards {
  display: grid;
  gap: 20px;
  align-items: start;
}

.gsem-accordion-page--faq_grid .gsem-accordion-page__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gsem-accordion-page--narrow_cards .gsem-accordion-page-card {
  width: min(680px, 66.666%);
}

.gsem-accordion-page-card,
.gsem-accordion-page-cta {
  min-width: 0;
  padding: 24px 28px 22px;
  border-radius: var(--gsem-ap-radius);
  background: var(--gsem-ap-card);
}

.gsem-accordion-page-card__title {
  margin: 0 0 14px;
  color: var(--gsem-ap-text);
  font-family: Poppins, inherit;
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
}

.gsem-accordion-page-card__lead {
  margin: 12px 0 19px;
  color: var(--gsem-ap-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.gsem-accordion-page-list {
  margin-top: 8px;
}

.gsem-accordion-page-card__title + .gsem-accordion-page-list {
  margin-top: 16px;
}

.gsem-accordion-page-item {
  border: 0;
}

.gsem-accordion-page-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 12px 0 11px;
  color: var(--gsem-ap-text);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.gsem-accordion-page-item summary::-webkit-details-marker {
  display: none;
}

.gsem-accordion-page-item summary:hover,
.gsem-accordion-page-item[open] summary {
  color: var(--gsem-ap-accent);
}

.gsem-accordion-page-item summary:focus-visible {
  outline: 3px solid rgba(15, 104, 255, 0.22);
  outline-offset: 4px;
  border-radius: 6px;
}

.gsem-accordion-page-item__title {
  min-width: 0;
}

.gsem-accordion-page-item__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.gsem-accordion-page-item__icon::before,
.gsem-accordion-page-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.gsem-accordion-page-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gsem-accordion-page-item[open] .gsem-accordion-page-item__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.gsem-accordion-page-item__answer {
  padding: 0 0 17px;
  color: var(--gsem-ap-muted);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.gsem-accordion-page-item__answer p {
  margin: 0 0 13px;
}

.gsem-accordion-page-item__answer p:last-child {
  margin-bottom: 0;
}

.gsem-accordion-page-item__answer ul,
.gsem-accordion-page-item__answer ol {
  margin: 10px 0 15px 20px;
  padding: 0;
}

.gsem-accordion-page-item__answer li {
  margin: 0 0 8px;
}

.gsem-accordion-page-item__answer h3,
.gsem-accordion-page-item__answer h4 {
  margin: 18px 0 10px;
  color: var(--gsem-ap-text);
  font-family: Poppins, inherit;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.3;
}

.gsem-accordion-page-item__answer strong {
  color: var(--gsem-ap-text);
  font-weight: 850;
}

.gsem-accordion-page-item__answer a {
  color: var(--gsem-ap-accent);
  font-weight: 850;
}

.gsem-accordion-page-item__answer img {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 14px 0 0;
  border-radius: 12px;
}

.gsem-accordion-page-cta {
  margin-top: 34px;
  text-align: center;
}

.gsem-accordion-page-cta__title {
  margin: 0 0 8px;
  color: var(--gsem-ap-text);
  font-family: Poppins, inherit;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
}

.gsem-accordion-page-cta__text {
  margin: 0 auto 18px;
  max-width: 620px;
  color: var(--gsem-ap-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.gsem-accordion-page-cta__button {
  margin-top: 0;
}

/* Product Pick */
.gsem-product-pick {
  --gsem-pp-card: #fff;
  --gsem-pp-text: #424763;
  --gsem-pp-muted: #5f6782;
  --gsem-pp-accent: #0f68ff;
  padding: 42px 0;
  color: var(--gsem-pp-text);
}

.gsem-product-pick__inner {
  --gsem-container: 880px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.gsem-product-pick--media-right .gsem-product-pick__media {
  order: 2;
}

.gsem-product-pick--media-right .gsem-product-pick__content {
  order: 1;
}

.gsem-product-pick__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 12px;
  align-items: start;
}

.gsem-product-pick__image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--gsem-pp-card);
}

.gsem-product-pick--media-card .gsem-product-pick__image-frame {
  box-shadow: var(--gsem-shadow-media);
}

.gsem-product-pick--media-transparent .gsem-product-pick__image-frame {
  background: transparent;
  box-shadow: none;
}

.gsem-product-pick__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.gsem-product-pick__thumbs {
  display: grid;
  gap: 8px;
}

.gsem-product-pick__thumb {
  display: block;
  width: 74px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--gsem-pp-card);
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-product-pick__product-name {
  margin: 0 0 8px;
  color: var(--gsem-pp-accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gsem-product-pick__title {
  margin: 0 0 12px;
  color: var(--gsem-pp-text);
  font-family: Poppins, inherit;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.gsem-product-pick__description {
  color: var(--gsem-pp-text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.gsem-product-pick__description p {
  margin: 0 0 13px;
}

.gsem-product-pick__description p:last-child {
  margin-bottom: 0;
}

.gsem-product-pick__price {
  margin-top: 14px;
  color: var(--gsem-pp-text);
  font-size: 17px;
  font-weight: 900;
}

.gsem-product-pick__price del {
  color: var(--gsem-pp-muted);
  font-weight: 700;
}

.gsem-product-pick__details {
  margin-top: 18px;
  border-top: 1px solid rgba(66, 71, 99, 0.14);
}

.gsem-product-pick-detail {
  border-bottom: 1px solid rgba(66, 71, 99, 0.14);
}

.gsem-product-pick-detail summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 12px 0;
  color: var(--gsem-pp-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
}

.gsem-product-pick-detail summary::-webkit-details-marker {
  display: none;
}

.gsem-product-pick-detail summary:hover,
.gsem-product-pick-detail[open] summary {
  color: var(--gsem-pp-accent);
}

.gsem-product-pick-detail summary:focus-visible {
  outline: 3px solid rgba(15, 104, 255, 0.22);
  outline-offset: 4px;
  border-radius: 6px;
}

.gsem-product-pick-detail__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.gsem-product-pick-detail__icon::before,
.gsem-product-pick-detail__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.gsem-product-pick-detail__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gsem-product-pick-detail[open] .gsem-product-pick-detail__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.gsem-product-pick-detail__content {
  padding: 0 0 16px;
  color: var(--gsem-pp-muted);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.gsem-product-pick-detail__content p {
  margin: 0 0 12px;
}

.gsem-product-pick-detail__content p:last-child {
  margin-bottom: 0;
}

.gsem-product-pick-detail__content ul,
.gsem-product-pick-detail__content ol {
  margin: 8px 0 12px 20px;
  padding: 0;
}

.gsem-product-pick-detail__content li {
  margin: 0 0 7px;
}

.gsem-product-pick__facts {
  margin: 0;
}

.gsem-product-pick__fact {
  display: grid;
  grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(66, 71, 99, 0.10);
}

.gsem-product-pick__fact:last-child {
  border-bottom: 0;
}

.gsem-product-pick__fact dt,
.gsem-product-pick__fact dd {
  margin: 0;
}

.gsem-product-pick__fact dt {
  color: var(--gsem-pp-text);
  font-weight: 850;
}

.gsem-product-pick__fact dd {
  color: var(--gsem-pp-muted);
}

.gsem-product-pick__button {
  margin-top: 18px;
}

.gsem-product-pick__notice {
  padding: 18px;
  border-radius: 8px;
  background: #fff4d8;
  color: #694900;
  font-weight: 800;
}

/* Lookbook Page */
.gk-lookbook {
  --gk-lb-bg: #f7f8f6;
  --gk-lb-surface: #ffffff;
  --gk-lb-surface-soft: #eef3f7;
  --gk-lb-ink: #111827;
  --gk-lb-muted: #5b6472;
  --gk-lb-border: rgba(17, 24, 39, 0.10);
  --gk-lb-accent: #0668ff;
  --gk-lb-flash: #f3e900;
  --gk-lb-shadow: 0 18px 52px rgba(17, 24, 39, 0.10);
  --gk-lb-shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.08);
  overflow: clip;
  background: var(--gk-lb-bg);
  color: var(--gk-lb-ink);
}

.gk-lookbook,
.gk-lookbook * {
  box-sizing: border-box;
}

.gk-lookbook__container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gk-lookbook__eyebrow {
  margin: 0 0 12px;
  color: var(--gk-lb-accent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gk-lookbook__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.gk-lookbook__button,
.gk-lookbook-chooser-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.gk-lookbook__button:hover,
.gk-lookbook-chooser-card__link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.gk-lookbook__button--primary {
  background: var(--gk-lb-ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.gk-lookbook__button--primary:hover {
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.gk-lookbook__button--ghost {
  border-color: var(--gk-lb-border);
  background: rgba(255, 255, 255, 0.74);
  color: var(--gk-lb-ink);
}

.gk-lookbook__button--ghost:hover {
  color: var(--gk-lb-ink);
  background: #fff;
}

.gk-lookbook__button--light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.gk-lookbook__button--light:hover {
  background: #fff;
  color: var(--gk-lb-ink);
}

.gk-lookbook-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(34px, 5vw, 72px);
}

.gk-lookbook-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.gk-lookbook-hero__copy {
  max-width: 520px;
}

.gk-lookbook-hero__title {
  margin: 0;
  color: var(--gk-lb-ink);
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.gk-lookbook-hero__subtitle {
  margin: 20px 0 0;
  color: var(--gk-lb-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.68;
}

.gk-lookbook-hero__collage {
  display: grid;
  grid-template-columns: 1.1fr 0.68fr 0.68fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 14px;
}

.gk-lookbook-hero__image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe3ea;
  box-shadow: var(--gk-lb-shadow-soft);
}

.gk-lookbook-hero__image.is-main {
  grid-row: span 2;
}

.gk-lookbook-hero__image img,
.gk-lookbook-model__main img,
.gk-lookbook-model__thumbs img,
.gk-lookbook-editorial-card img,
.gk-lookbook-chooser-card img,
.gk-lookbook-final-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gk-lookbook-hero__image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--gk-lb-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  backdrop-filter: blur(10px);
}

.gk-lookbook-filter {
  position: sticky;
  top: var(--gk-lookbook-sticky-top, 0);
  z-index: 30;
  border-block: 1px solid var(--gk-lb-border);
  background: rgba(247, 248, 246, 0.88);
  backdrop-filter: blur(16px);
}

.gk-lookbook-filter__scroll {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gk-lookbook-filter__scroll::-webkit-scrollbar {
  display: none;
}

.gk-lookbook-filter a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--gk-lb-muted);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.gk-lookbook-filter a:hover {
  border-color: var(--gk-lb-border);
  background: #fff;
  color: var(--gk-lb-ink);
  text-decoration: none;
}

.gk-lookbook-model {
  scroll-margin-top: 92px;
  padding: clamp(54px, 8vw, 104px) 0;
}

.gk-lookbook-model__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.gk-lookbook-model--reverse .gk-lookbook-model__media {
  order: 2;
}

.gk-lookbook-model--reverse .gk-lookbook-model__content {
  order: 1;
}

.gk-lookbook-model__media {
  display: grid;
  gap: 14px;
}

.gk-lookbook-model__main {
  min-height: clamp(320px, 44vw, 570px);
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe3ea;
  box-shadow: var(--gk-lb-shadow);
}

.gk-lookbook-model__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gk-lookbook-model__thumbs img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #dbe3ea;
  box-shadow: var(--gk-lb-shadow-soft);
}

.gk-lookbook-model__content {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 40px);
  border: 1px solid var(--gk-lb-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gk-lb-shadow-soft);
}

.gk-lookbook-model__kicker {
  margin: 0 0 10px;
  color: var(--gk-lb-accent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.gk-lookbook-model__title,
.gk-lookbook__section-header h2,
.gk-lookbook-chooser__heading,
.gk-lookbook-final-cta h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.gk-lookbook-model__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gk-lookbook-model__tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gk-lb-surface-soft);
  color: var(--gk-lb-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.gk-lookbook-model__benefits {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--gk-lb-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
}

.gk-lookbook-model__benefits li {
  position: relative;
  padding-left: 20px;
}

.gk-lookbook-model__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gk-lb-flash);
  box-shadow: 0 0 0 4px rgba(243, 233, 0, 0.22);
}

.gk-lookbook-editorial-grid,
.gk-lookbook-chooser {
  padding: clamp(56px, 8vw, 94px) 0;
}

.gk-lookbook__section-header {
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.gk-lookbook-editorial-grid__items {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gk-lookbook-editorial-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  border-radius: 22px;
  background: #dbe3ea;
  color: #fff;
  box-shadow: var(--gk-lb-shadow-soft);
  text-decoration: none;
}

.gk-lookbook-editorial-card:nth-child(6n + 1),
.gk-lookbook-editorial-card:nth-child(6n + 4) {
  grid-column: span 5;
  min-height: 420px;
}

.gk-lookbook-editorial-card:nth-child(6n + 2),
.gk-lookbook-editorial-card:nth-child(6n + 5) {
  grid-column: span 7;
}

.gk-lookbook-editorial-card:hover {
  color: #fff;
  text-decoration: none;
}

.gk-lookbook-editorial-card img {
  transition: transform 420ms ease;
}

.gk-lookbook-editorial-card:hover img {
  transform: scale(1.04);
}

.gk-lookbook-editorial-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.03), rgba(17, 24, 39, 0.72));
}

.gk-lookbook-editorial-card__text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.gk-lookbook-editorial-card small,
.gk-lookbook-editorial-card em {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0.9;
}

.gk-lookbook-editorial-card strong {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 950;
  line-height: 1.04;
}

.gk-lookbook-chooser {
  background: #fff;
}

.gk-lookbook-chooser__heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

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

.gk-lookbook-chooser-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--gk-lb-border);
  border-radius: 22px;
  background: var(--gk-lb-surface);
  box-shadow: var(--gk-lb-shadow-soft);
}

.gk-lookbook-chooser-card img {
  aspect-ratio: 1.12 / 1;
  border-radius: 18px;
  background: #dbe3ea;
}

.gk-lookbook-chooser-card h3 {
  margin: 16px 2px 8px;
  color: var(--gk-lb-ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.gk-lookbook-chooser-card p {
  margin: 0 2px;
  color: var(--gk-lb-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.gk-lookbook-chooser-card__link {
  width: 100%;
  margin-top: 16px;
  background: var(--gk-lb-surface-soft);
  color: var(--gk-lb-ink);
}

.gk-lookbook-final-cta {
  padding: clamp(58px, 8vw, 104px) 0;
}

.gk-lookbook-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  color: #fff;
  box-shadow: var(--gk-lb-shadow);
}

.gk-lookbook-final-cta__copy {
  padding: clamp(28px, 5vw, 58px);
}

.gk-lookbook-final-cta__copy p:not(.gk-lookbook__eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.gk-lookbook-final-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.gk-lookbook-final-cta__badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.gk-lookbook-final-cta__image {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

/* Loop Video Hero */
.gsem-loop-hero {
  position: relative;
  min-height: var(--gsem-loop-height, 560px);
  overflow: hidden;
  background: #05070d;
  isolation: isolate;
}

.gsem-loop-hero__media,
.gsem-loop-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gsem-loop-hero__video {
  border: 0;
  object-fit: cover;
}

.gsem-loop-hero iframe.gsem-loop-hero__video {
  width: 100vw;
  max-width: none;
  left: 50%;
  transform: translateX(-50%);
}

.gsem-loop-hero--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72));
  pointer-events: none;
}

.gsem-loop-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: var(--gsem-loop-height, 560px);
  width: min(var(--gsem-container), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  padding: 48px 0;
}

.gsem-loop-hero--center .gsem-loop-hero__overlay {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gsem-loop-hero--bottom_center .gsem-loop-hero__overlay {
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.gsem-loop-hero--bottom_left .gsem-loop-hero__overlay {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.gsem-loop-hero__text {
  max-width: 980px;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.gsem-loop-hero__text p {
  margin: 0;
}

.gsem-loop-hero--text-light .gsem-loop-hero__text {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.gsem-loop-hero--text-dark .gsem-loop-hero__text {
  color: var(--gsem-text);
}

/* Brand Story Timeline */
.gsem-brand-timeline {
  --gsem-bst-bg: #f3f8fc;
  --gsem-bst-card: #fff;
  --gsem-bst-text: #303852;
  --gsem-bst-muted: #5e6680;
  --gsem-bst-accent: #0668ff;
  --gsem-bst-radius: 8px;
  padding: clamp(42px, 6vw, 86px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0) 260px),
    var(--gsem-bst-bg);
  color: var(--gsem-bst-text);
}

.gsem-brand-timeline__inner {
  --gsem-container: 1180px;
}

.gsem-brand-timeline__hero {
  overflow: hidden;
  margin: 0 0 clamp(28px, 4vw, 54px);
  border-radius: var(--gsem-bst-radius);
  background: #dce8f5;
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-brand-timeline__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 18 / 5;
  object-fit: cover;
}

.gsem-brand-timeline__header {
  width: min(900px, 100%);
  margin: 0 0 clamp(30px, 5vw, 64px);
}

.gsem-brand-timeline__eyebrow {
  margin: 0 0 12px;
  color: var(--gsem-bst-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gsem-brand-timeline__title {
  margin: 0;
  color: var(--gsem-bst-text);
  font-family: Poppins, inherit;
  font-size: clamp(38px, 5.6vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.gsem-brand-timeline__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  margin-top: clamp(18px, 3vw, 30px);
  color: var(--gsem-bst-muted);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 650;
  line-height: 1.7;
}

.gsem-brand-timeline__intro p {
  margin: 0 0 14px;
}

.gsem-brand-timeline__intro p:last-child {
  margin-bottom: 0;
}

.gsem-brand-timeline__stage {
  display: block;
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline__stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.gsem-brand-timeline__sticky {
  display: none;
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline__sticky {
  position: sticky;
  top: 82px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 22px;
  height: min(760px, calc(100vh - 116px));
  min-height: 520px;
}

.gsem-brand-timeline__media-stack {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--gsem-bst-radius);
  background: #dce8f5;
  box-shadow: 0 22px 60px rgba(27, 42, 78, 0.16);
}

.gsem-brand-timeline__media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 800ms ease;
}

.gsem-brand-timeline__media.is-active {
  opacity: 1;
  transform: scale(1);
}

.gsem-brand-timeline--minimal .gsem-brand-timeline__media {
  transform: none;
  transition-duration: 220ms;
}

.gsem-brand-timeline__picture,
.gsem-brand-timeline__picture img,
.gsem-brand-timeline-item__mobile-media,
.gsem-brand-timeline-item__mobile-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.gsem-brand-timeline__picture img,
.gsem-brand-timeline-item__mobile-media img {
  object-fit: cover;
}

.gsem-brand-timeline__nav-wrap {
  padding: 18px;
  border-radius: var(--gsem-bst-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gsem-shadow-soft);
  backdrop-filter: blur(12px);
}

.gsem-brand-timeline__progress {
  position: relative;
  height: 4px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(48, 56, 82, 0.12);
}

.gsem-brand-timeline__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--gsem-bst-accent);
  transform: scaleX(0.1);
  transform-origin: left;
  transition: transform 260ms ease;
}

.gsem-brand-timeline__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gsem-brand-timeline__year-button {
  appearance: none;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(48, 56, 82, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--gsem-bst-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gsem-brand-timeline__year-button:hover,
.gsem-brand-timeline__year-button.is-active {
  border-color: var(--gsem-bst-accent);
  background: var(--gsem-bst-accent);
  color: #fff;
  transform: translateY(-1px);
}

.gsem-brand-timeline__year-button:focus-visible {
  outline: 3px solid rgba(6, 104, 255, 0.24);
  outline-offset: 3px;
}

.gsem-brand-timeline__items {
  display: grid;
  gap: clamp(20px, 3.5vw, 44px);
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline__items {
  gap: 0;
}

.gsem-brand-timeline-item {
  position: relative;
  min-width: 0;
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item {
  display: flex;
  min-height: min(760px, calc(100vh - 112px));
  align-items: center;
}

.gsem-brand-timeline-item__mobile-media {
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
  border-radius: var(--gsem-bst-radius);
  background: #dce8f5;
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item__mobile-media {
  display: none;
}

.gsem-brand-timeline-item__content {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(48, 56, 82, 0.08);
  border-radius: var(--gsem-bst-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item__content {
  opacity: 0.32;
  transform: translateY(34px);
  transition: opacity 320ms ease, transform 420ms ease, box-shadow 320ms ease;
}

.gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item.is-active .gsem-brand-timeline-item__content,
.gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item.is-visible .gsem-brand-timeline-item__content {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 24px 70px rgba(27, 42, 78, 0.13);
}

.gsem-brand-timeline--clean .gsem-brand-timeline-item__content,
.gsem-brand-timeline--minimal .gsem-brand-timeline-item__content {
  box-shadow: none;
}

.gsem-brand-timeline-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.gsem-brand-timeline-item__year {
  display: inline-flex;
  color: var(--gsem-bst-accent);
  font-size: clamp(36px, 6vw, 86px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.gsem-brand-timeline-item__badge,
.gsem-brand-timeline-item__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 104, 255, 0.10);
  color: var(--gsem-bst-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.gsem-brand-timeline-item__title {
  margin: 0 0 14px;
  color: var(--gsem-bst-text);
  font-family: Poppins, inherit;
  font-size: clamp(27px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.gsem-brand-timeline-item__body {
  color: var(--gsem-bst-muted);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 650;
  line-height: 1.68;
}

.gsem-brand-timeline-item__body p {
  margin: 0 0 14px;
}

.gsem-brand-timeline-item__body p:last-child {
  margin-bottom: 0;
}

.gsem-brand-timeline-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gsem-brand-timeline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.gsem-brand-timeline__button {
  margin: 0;
}

.gsem-brand-timeline__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gsem-bst-accent);
  font-weight: 900;
  text-decoration: none;
}

.gsem-brand-timeline__secondary:hover {
  text-decoration: underline;
}

.gsem-brand-timeline__closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(44px, 7vw, 96px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--gsem-bst-radius);
  background: var(--gsem-bst-card);
  box-shadow: var(--gsem-shadow-soft);
}

.gsem-brand-timeline__closing-title {
  margin: 0 0 14px;
  color: var(--gsem-bst-text);
  font-family: Poppins, inherit;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.gsem-brand-timeline__closing-text {
  color: var(--gsem-bst-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.gsem-brand-timeline__closing-button {
  margin-top: 10px;
}

.gsem-brand-timeline__closing-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: var(--gsem-bst-radius);
}

/* Modal */
.gsem-video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 8, 16, 0.82);
  backdrop-filter: blur(8px);
}

.gsem-video-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  background: #000;
  border-radius: var(--gsem-radius-md);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.gsem-video-modal__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
}

.gsem-video-modal__media iframe,
.gsem-video-modal__media video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gsem-video-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--gsem-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--gsem-shadow-soft);
}

@media (max-width: 900px) {
  :root {
    --gsem-section-y: 40px;
  }

  .gsem-feature__inner,
  .gsem-video-promo__inner,
  .gsem-product-pick__inner {
    grid-template-columns: 1fr;
  }

  .gsem-feature .gsem-feature__media,
  .gsem-video-promo .gsem-video-promo__media,
  .gsem-product-pick .gsem-product-pick__media {
    order: 1;
  }

  .gsem-feature .gsem-feature__content,
  .gsem-video-promo .gsem-video-promo__content,
  .gsem-product-pick .gsem-product-pick__content {
    order: 2;
  }

  .gk-lookbook__container {
    width: min(1180px, calc(100% - 32px));
  }

  .gk-lookbook-hero__inner,
  .gk-lookbook-model__inner,
  .gk-lookbook-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .gk-lookbook-hero__copy {
    max-width: 680px;
  }

  .gk-lookbook-hero__collage {
    grid-template-rows: repeat(2, minmax(150px, 1fr));
  }

  .gk-lookbook-model--reverse .gk-lookbook-model__media,
  .gk-lookbook-model__media {
    order: 1;
  }

  .gk-lookbook-model--reverse .gk-lookbook-model__content,
  .gk-lookbook-model__content {
    order: 2;
  }

  .gk-lookbook-model__main {
    min-height: 360px;
  }

  .gk-lookbook-editorial-card,
  .gk-lookbook-editorial-card:nth-child(6n + 1),
  .gk-lookbook-editorial-card:nth-child(6n + 2),
  .gk-lookbook-editorial-card:nth-child(6n + 4),
  .gk-lookbook-editorial-card:nth-child(6n + 5) {
    grid-column: span 6;
    min-height: 330px;
  }

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

  .gk-lookbook-final-cta__image {
    min-height: 330px;
  }

  .gsem-cards--cols-3 .gsem-cards__grid,
  .gsem-cards--cols-4 .gsem-cards__grid,
  .gsem-video-grid--cols-2 .gsem-video-grid__items,
  .gsem-video-grid--cols-3 .gsem-video-grid__items,
  .gsem-accordion-page--faq_grid .gsem-accordion-page__cards {
    grid-template-columns: 1fr;
  }

  .gsem-accordion-page--narrow_cards .gsem-accordion-page-card {
    width: 100%;
  }

  .gsem-cards__eyebrow {
    margin-top: 24px;
    letter-spacing: 0;
    text-align: left;
  }

  .gsem-loop-hero,
  .gsem-loop-hero__overlay {
    min-height: var(--gsem-loop-height-mobile, 360px);
  }

  .gsem-brand-timeline {
    padding: 40px 0 58px;
  }

  .gsem-brand-timeline__hero img {
    aspect-ratio: 16 / 7;
  }

  .gsem-brand-timeline__intro {
    grid-template-columns: 1fr;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline__stage {
    display: block;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline__sticky {
    position: sticky;
    top: 0;
    z-index: 5;
    display: block;
    height: auto;
    min-height: 0;
    margin: 0 -20px 18px;
    padding: 10px 20px;
    background: rgba(243, 248, 252, 0.92);
    backdrop-filter: blur(12px);
  }

  .gsem-brand-timeline__media-stack {
    display: none;
  }

  .gsem-brand-timeline__nav-wrap {
    padding: 10px;
  }

  .gsem-brand-timeline__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .gsem-brand-timeline__nav::-webkit-scrollbar {
    display: none;
  }

  .gsem-brand-timeline__year-button {
    flex: 0 0 auto;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline__items {
    display: grid;
    gap: 22px;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item {
    display: block;
    min-height: 0;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item__mobile-media {
    display: block;
  }

  .gsem-brand-timeline.is-enhanced .gsem-brand-timeline-item__content {
    opacity: 1;
    transform: none;
  }

  .gsem-brand-timeline__closing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gsem-container,
  .gsem-loop-hero__overlay {
    width: min(var(--gsem-container), calc(100% - 28px));
  }

  .gsem-feature__title,
  .gsem-video-promo__title {
    font-size: clamp(20px, 7vw, 28px);
  }

  .gsem-feature__body,
  .gsem-video-promo__body,
  .gsem-cards__intro,
  .gsem-video-grid__intro {
    font-size: 15px;
  }

  .gsem-play-button {
    width: 72px;
    height: 72px;
  }

  .gsem-play-button span {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 20px;
  }

  .gk-lookbook__container {
    width: min(1180px, calc(100% - 28px));
  }

  .gk-lookbook__actions,
  .gk-lookbook__button {
    width: 100%;
  }

  .gk-lookbook-hero {
    padding-top: 40px;
  }

  .gk-lookbook-hero__title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .gk-lookbook-hero__collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gk-lookbook-hero__image,
  .gk-lookbook-hero__image.is-main {
    grid-row: auto;
    aspect-ratio: 1.28 / 1;
  }

  .gk-lookbook-filter__scroll {
    min-height: 58px;
    padding-right: 14px;
  }

  .gk-lookbook-model,
  .gk-lookbook-editorial-grid,
  .gk-lookbook-chooser,
  .gk-lookbook-final-cta {
    padding: 42px 0;
  }

  .gk-lookbook-model__main {
    min-height: 0;
    aspect-ratio: 1.1 / 1;
  }

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

  .gk-lookbook-model__content {
    padding: 22px 16px;
  }

  .gk-lookbook-editorial-grid__items,
  .gk-lookbook-chooser__grid {
    grid-template-columns: 1fr;
  }

  .gk-lookbook-editorial-card,
  .gk-lookbook-editorial-card:nth-child(6n + 1),
  .gk-lookbook-editorial-card:nth-child(6n + 2),
  .gk-lookbook-editorial-card:nth-child(6n + 4),
  .gk-lookbook-editorial-card:nth-child(6n + 5) {
    grid-column: auto;
    min-height: 330px;
  }

  .gk-lookbook-final-cta__copy {
    padding: 24px 18px;
  }

  .gk-lookbook-final-cta__image {
    min-height: 280px;
  }

  .gsem-video-modal__close {
    top: -12px;
    right: -8px;
  }

  .gsem-product-pick {
    padding: 30px 0;
  }

  .gsem-product-pick__media {
    grid-template-columns: 1fr;
  }

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

  .gsem-product-pick__thumb {
    width: 100%;
  }

  .gsem-product-pick__fact {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .gsem-accordion-page {
    padding: 36px 0 56px;
  }

  .gsem-accordion-page__inner {
    width: 100%;
  }

  .gsem-accordion-page__header {
    margin-bottom: 22px;
  }

  .gsem-accordion-page__title,
  .gsem-accordion-page__group-title {
    margin-bottom: 22px;
  }

  .gsem-accordion-page__group {
    margin-top: 46px;
  }

  .gsem-accordion-page__cards {
    gap: 14px;
  }

  .gsem-accordion-page-card,
  .gsem-accordion-page-cta {
    padding: 20px 16px 18px;
  }

  .gsem-accordion-page-item summary {
    gap: 12px;
    padding: 11px 0;
  }

  .gsem-accordion-page-item__answer {
    font-size: 14px;
  }

  .gsem-brand-timeline__inner {
    width: min(var(--gsem-container), calc(100% - 28px));
  }

  .gsem-brand-timeline__hero {
    margin-bottom: 26px;
  }

  .gsem-brand-timeline__hero img {
    aspect-ratio: 16 / 9;
  }

  .gsem-brand-timeline__title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .gsem-brand-timeline__intro,
  .gsem-brand-timeline-item__body {
    font-size: 15px;
  }

  .gsem-brand-timeline-item__content {
    padding: 22px 16px;
  }

  .gsem-brand-timeline-item__year {
    font-size: clamp(35px, 12vw, 58px);
  }

  .gsem-brand-timeline-item__title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .gsem-brand-timeline__actions {
    align-items: stretch;
  }

  .gsem-brand-timeline__button,
  .gsem-brand-timeline__secondary {
    width: 100%;
  }

  .gsem-brand-timeline__closing {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gsem-accordion-page-item__icon::before,
  .gsem-accordion-page-item__icon::after,
  .gsem-product-pick-detail__icon::before,
  .gsem-product-pick-detail__icon::after,
  .gsem-brand-timeline__media,
  .gsem-brand-timeline-item__content,
  .gsem-brand-timeline__progress span,
  .gsem-brand-timeline__year-button {
    transition: none;
  }
}
