.productPage {
  --productSurface: color-mix(in srgb, var(--mainAreaBg) 92%, var(--cardBg));
  --productSurfaceTonal: color-mix(in srgb, var(--accent) 6%, var(--mainAreaBg));
  --productSurfaceSecurity: color-mix(in srgb, var(--accent) 10%, var(--mainAreaBg));
  --productLine: color-mix(in srgb, var(--cardBorder) 86%, var(--fgColor) 8%);
  --productIconColor: color-mix(in srgb, var(--accent) 82%, var(--fgColor));
  position: relative;
  z-index: 10;
  overflow: clip;
  color: var(--fgColor);
}

.productPage,
.productPage * {
  box-sizing: border-box;
}

.productHero {
  display: flex;
  min-height: calc(100svh - 80px);
  align-items: center;
  border-bottom: 1px solid var(--productLine);
  background-color: var(--productSurface);
}
.productHero .container {
  width: 100%;
  padding-top: clamp(76px, 10vw, 86px);
  padding-bottom: clamp(82px, 9vw, 132px);
}

.productHeroHeading {
  max-width: 1180px;
}

.productHero h1 {
  margin: 0;
  padding-bottom: 0.15em;
  color: var(--fg);
  font-size: clamp(4.4rem, 8.5vw, 6.4rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, var(--fg), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.productHeroIntroduction {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: start;
  gap: clamp(60px, 8vw, 126px);
  margin-top: clamp(64px, 8vw, 112px);
}

.productHeroLead {
  max-width: 650px;
  margin: 0;
  color: var(--fgColorMuted);
  font-size: clamp(1.18rem, 1.75vw, 1.42rem);
  line-height: 1.72;
}

.productHeroPrinciples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--productLine);
  border-bottom: 1px solid var(--productLine);
}
.productHeroPrinciples > div {
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
}
.productHeroPrinciples > div + div {
  border-left: 1px solid var(--productLine);
}
.productHeroPrinciples .ms {
  margin-bottom: 28px;
  color: var(--productIconColor);
  font-size: 34px;
}
.productHeroPrinciples strong {
  color: var(--fgColor);
  font-size: 1.08rem;
  line-height: 1.4;
}
.productHeroPrinciples span:last-child {
  margin-top: 8px;
  color: var(--fgColorMuted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.productHeroAreas {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 126px);
  border-top: 1px solid var(--productLine);
  border-bottom: 1px solid var(--productLine);
}
.productHeroAreas span {
  display: flex;
  min-height: 104px;
  align-items: center;
  padding: 22px;
  color: var(--fgColor);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
.productHeroAreas span + span {
  border-left: 1px solid var(--productLine);
}

.productShowcase {
  padding: clamp(112px, 12vw, 180px) 0;
  border-bottom: 1px solid var(--productLine);
  background-color: var(--productSurface);
  scroll-margin-top: 80px;
}
.productShowcase .container {
  width: 100%;
}

.productShowcaseTonal {
  background-color: var(--productSurfaceTonal);
}

.productShowcaseSecurity {
  background-color: var(--productSurfaceSecurity);
}

.productShowcaseHeader {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: clamp(58px, 8vw, 126px);
}

.productShowcaseIdentity {
  display: grid;
  align-content: start;
}
.productShowcaseIdentity p {
  max-width: 210px;
  margin: 0;
  color: var(--fgColor);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.productShowcaseIcon {
  display: inline-flex;
  width: 144px;
  height: 144px;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--productIconColor);
}
.productShowcaseIcon .ms {
  font-size: 116px;
}

.productShowcaseHeading {
  max-width: 900px;
}
.productShowcaseHeading h2 {
  margin: 0;
  color: var(--fgColor);
  font-size: clamp(2.8rem, 4.25vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.productShowcaseHeading p {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--fgColorMuted);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.productShowcaseStatement {
  max-width: 900px;
  margin: clamp(70px, 7vw, 102px) 0 0 calc(280px + clamp(58px, 8vw, 126px));
  color: var(--fgColor);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1.38;
}

.productFeatureList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(50px, 7vw, 108px);
  margin: clamp(70px, 7vw, 102px) 0 0 calc(280px + clamp(58px, 8vw, 126px));
  border-top: 1px solid var(--productLine);
}
.productFeatureList > :last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.productFeatureList > :last-child:nth-child(odd) > div {
  max-width: 700px;
}

.productFeature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--productLine);
  scroll-margin-top: 108px;
}
.productFeature h3 {
  margin: 0;
  color: var(--fgColor);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.productFeature p {
  margin: 14px 0 0;
  color: var(--fgColorMuted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.productFeatureIcon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--productIconColor);
}
.productFeatureIcon .ms {
  font-size: 32px;
}

.productFinale {
  padding: clamp(120px, 13vw, 190px) 0;
  color: #ffffff;
  background-color: color-mix(in srgb, var(--accent) 82%, #24122f);
}
.productFinale p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}
.productFinale h2 {
  max-width: 1040px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.98;
}

html[data-theme=dark] .productFinale {
  background-color: color-mix(in srgb, rgb(55, 19, 77) 82%, #24122f);
}

.productFinaleAreas {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 124px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.productFinaleAreas span {
  display: flex;
  min-height: 104px;
  align-items: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}
.productFinaleAreas span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 1150px) {
  .productHeroIntroduction {
    grid-template-columns: 1fr;
  }
  .productHeroLead {
    max-width: 820px;
  }
  .productHeroPrinciples {
    max-width: 900px;
  }
  .productShowcaseHeader {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 54px;
  }
  .productShowcaseIcon {
    width: 120px;
    height: 120px;
  }
  .productShowcaseIcon .ms {
    font-size: 98px;
  }
  .productShowcaseStatement,
  .productFeatureList {
    margin-left: 274px;
  }
}
@media (max-width: 900px) {
  .productHero {
    min-height: auto;
  }
  .productHeroPrinciples {
    grid-template-columns: 1fr;
  }
  .productHeroPrinciples > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    column-gap: 16px;
    padding: 22px 0;
  }
  .productHeroPrinciples > div + div {
    border-top: 1px solid var(--productLine);
    border-left: 0;
  }
  .productHeroPrinciples .ms {
    grid-row: 1/span 2;
    margin: 1px 0 0;
    font-size: 30px;
  }
  .productHeroPrinciples span:last-child {
    margin-top: 5px;
  }
  .productHeroAreas {
    grid-template-columns: 1fr 1fr;
  }
  .productHeroAreas span {
    min-height: 82px;
    border-bottom: 1px solid var(--productLine);
  }
  .productHeroAreas span + span {
    border-left: 0;
  }
  .productHeroAreas span:nth-child(even) {
    border-left: 1px solid var(--productLine);
  }
  .productHeroAreas span:last-child {
    grid-column: 1/-1;
    border-bottom: 0;
    border-left: 0;
  }
  .productShowcaseHeader {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .productShowcaseIdentity {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
  }
  .productShowcaseIdentity p {
    max-width: none;
  }
  .productShowcaseIcon {
    width: 96px;
    height: 96px;
  }
  .productShowcaseIcon .ms {
    font-size: 80px;
  }
  .productShowcaseStatement,
  .productFeatureList {
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .productHero h1 {
    font-size: clamp(3.5rem, 14vw, 5.4rem);
  }
  .productHeroIntroduction {
    margin-top: 54px;
  }
  .productHeroAreas {
    grid-template-columns: 1fr;
  }
  .productHeroAreas span {
    min-height: 70px;
    padding: 18px 0;
  }
  .productHeroAreas span:nth-child(even), .productHeroAreas span:last-child {
    grid-column: auto;
    border-left: 0;
  }
  .productHeroAreas span:last-child {
    border-bottom: 0;
  }
  .productShowcaseHeading h2 {
    font-size: clamp(2.45rem, 9.5vw, 3.35rem);
  }
  .productShowcaseHeading p {
    margin-top: 26px;
    font-size: 1.04rem;
  }
  .productShowcaseStatement {
    font-size: clamp(1.48rem, 6.5vw, 2rem);
  }
  .productFeatureList {
    grid-template-columns: 1fr;
  }
  .productFeatureList > :last-child:nth-child(odd) {
    grid-column: auto;
  }
  .productFinale h2 {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }
}
@media (max-width: 576px) {
  .productHero .container,
  .productShowcase .container,
  .productFinale .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .productHero .container {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .productHero h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }
  .productHeroLead {
    font-size: 1.04rem;
    line-height: 1.68;
  }
  .productShowcase {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .productShowcaseIdentity {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }
  .productShowcaseIcon {
    width: 76px;
    height: 76px;
  }
  .productShowcaseIcon .ms {
    font-size: 64px;
  }
  .productShowcaseHeading h2 {
    font-size: clamp(2.2rem, 10vw, 2.85rem);
  }
  .productShowcaseStatement {
    margin-top: 54px;
  }
  .productFeatureList {
    margin-top: 54px;
  }
  .productFeature {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    padding: 30px 0 34px;
  }
  .productFeature h3 {
    font-size: 1.13rem;
  }
  .productFeature p {
    font-size: 0.94rem;
  }
  .productFeatureIcon {
    width: 38px;
    height: 38px;
  }
  .productFeatureIcon .ms {
    font-size: 28px;
  }
  .productFinaleAreas {
    grid-template-columns: 1fr;
  }
  .productFinaleAreas span {
    min-height: 72px;
    border-left: 0;
  }
  .productFinaleAreas span + span {
    border-left: 0;
  }
}
