@charset "utf-8";

:root {
  --belt-speed: 110;
  --belt-stage-width: 100vw;
  --page-bg: #050915;
  --page-bg-2: #252941;
  --muted: rgba(240, 237, 231, 0.9);
  --line: rgba(240, 237, 231, 0.52);
  --panel-overlap: 0px;
  --bg-overscan: 8vh;
  --dash-grow: 0;
  --luggage-grow: 0;
  --seating-grow: 0;
  --carpet-grow: 0;
  --photo-scale: 0.76;
  --photo-opacity: 0;
  --photo-y: 18px;
  --ev6-details-bottom: clamp(34px, 7.5vh, 74px);
  --ev6-photo-card-bottom: var(--ev6-details-bottom);
  --ev6-bg-layer-bottom: calc(var(--ev6-photo-card-bottom) + var(--bg-overscan));
}

/* main_visual */
.main_visual {
  width: 100%;
  position: relative;
}

.main_visual .inner {
  width: 100%;
  height: 100vh;
  min-height: clamp(950px, 90vh, 100vh);
}

.main_visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main_visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12,17,21,0) 0%, rgba(12,17,21,0.72) 58%, #0C1115 100%);
}

/* section.best */
html.section_transition_lock,
body.section_transition_lock {
    overflow: hidden;
}

.section_transition_stage {
    position: fixed;
    inset: 0;
    z-index: 1600;
    overflow: hidden;
    pointer-events: none;
    background: #0C1115;
}

.section_transition_panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    will-change: transform;
}

.section_transition_panel.is-next {
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.16);
}

.best {
    overflow-x: clip;
    overflow-y: visible;
}

.best .inner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: clamp(950px, 90vh, 100vh);
    padding-block: clamp(100px, 20vw, 200px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.best .tit {
    text-align: center;
}

.best .tit h2 {
    font-size: clamp(38px, 4.5vw, 64px);
}

.best .tit p {
    margin-top: 6px;
    font-size: clamp(20px, 2vw, 24px);
}

.best_showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1000px) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    flex: 1;
    width: 100%;
    height: clamp(450px, 60vh, 700px);
    margin-top: 20px;
    overflow: visible;
    z-index: 1;
    perspective: 1800px;
}

.best_back_text {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease, transform 0.45s ease;
    z-index: 0;
}

.best_back_text .text_group {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 1;
}

.glass {
    display: block;
    font-size: 360px;
    font-family: var(--font-roboto);
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -30px;
    text-align: center;
    margin: 0;
    padding-top: 32px;
    padding-right: 0.12em;
    padding-bottom: 24px;
    background: linear-gradient(
        to bottom,
        #151c24 0%,
        #0c1015 75%,
        #212a36 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter:
        drop-shadow(-1.5px -1.5px 2px rgba(175, 194, 209, 0.6))
        drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.95))
        drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.5));
    transform-origin: center center;
}

.glass.is-seltos {
    transform: scaleX(0.88);
}

.best_back_text.is-emphasized {
    opacity: 0.9;
    transform: scale(1.04);
}

.best_car_card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    border: 0;
    opacity: 0.62;
    background: transparent;
    appearance: none;
    cursor: pointer;
    transition:
        opacity 0.42s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.42s ease;
    transform-origin: center center;
    will-change: transform, opacity;
}

.best_car_card:not(.best_car_card_left):not(.best_car_card_main):not(.best_car_card_right) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.best_car_card_left {
    grid-column: 1;
    transform: translate3d(22px, 0, 0) scale(0.92);
}

.best_car_card_main {
    grid-column: 2;
    transform: translate3d(0, 0, 0) scale(1);
}

.best_car_card_right {
    grid-column: 3;
    transform: translate3d(-22px, 0, 0) scale(0.92);
}

.best_car_card:hover {
    opacity: 0.95;
    filter: brightness(1.05);
}

.best_car_card_left:hover {
    transform: translate3d(10px, -8px, 0) scale(0.95);
}

.best_car_card_right:hover {
    transform: translate3d(-10px, -8px, 0) scale(0.95);
}

.best_car_frame {
    width: 100%;
    max-width: 220px;
    display: block;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.best_car_image {
    width: 100%;
    filter: brightness(0.82);
    display: block;
    transform-origin: center center;
    transition:
        filter 0.55s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
}

.best_car_card.main {
    position: relative;
    z-index: 1;
    padding-inline: 50px;
    opacity: 1;
    filter: none;
}

.best_car_card.main .best_car_frame {
    width: auto;
    max-width: none;
    height: 350px;
}

.best_car_card.is-entering-main .best_car_frame {
    max-width: none;
}

.best_car_card.is-entering-main .best_car_image {
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.38));
}

.best_car_card.is-leaving-main {
    padding-inline: 50px;
}

.best_car_card.is-leaving-main .best_car_frame {
    max-width: none;
}

.best_car_card.is-leaving-main .best_car_image {
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.38));
}

.best_car_card.main.is-holding-position {
    padding-inline: 0;
    opacity: 0.95;
}

.best_car_card.main.is-holding-position .best_car_frame {
    max-width: 220px;
}

.best_car_card.main .best_car_image {
    width: auto;
    height: 100%;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.38));
    transform: scale(1);
}

.best_car_card_left .best_car_image,
.best_car_card_right .best_car_image {
    transform: scale(0.96);
    filter: brightness(0.78) saturate(0.92);
}

.best_car_card.is-hidden-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.best_car_card.is-delayed-reveal {
    opacity: 0;
}

.best_main_car {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 1000px);
    flex: 0 0 min(100%, 1000px);
    padding-inline: 100px;
    min-width: 0;
}

.best_showcase.is-transitioning .best_car_card {
    pointer-events: none;
}

.best_car_card.is-moving {
    will-change: transform;
    z-index: 2;
}

.best_car_card.is-floating {
    position: fixed;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    pointer-events: none;
}

.best_car_card.is-floating {
    position: fixed;
    z-index: 6;
    padding: 0;
    margin: 0;
    pointer-events: none;
    visibility: visible !important;
    transform: none;
    will-change: left, top, width, height;
}

.best_outgoing_car {
    position: fixed;
    z-index: 3;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform, left, top, opacity;
    transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1), top 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease;
}

.best_car_card.is-entering-main .best_car_image {
    filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.42));
}

.best_car_card.is-leaving-main .best_car_image {
    transform: scale(0.97);
    filter: brightness(0.8) saturate(0.9);
}


.info_con {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.best_spec_list {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.best_spec_item {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 110px;
    padding: 22px 20px;
}

.best_spec_label {
    font-size: 45px;
}

.best_spec_label img {
    display: block;
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.best_spec_label_engine {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px;
}

.best_engine_icon {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
}

.best_engine_icon img {
    position: absolute;
    display: block;
}

.best_engine_icon img:nth-child(1) {
    left: 7.5px;
    top: 3.75px;
    width: 18.75px;
    height: 37.5px;
}

.best_engine_icon img:nth-child(2) {
    left: 5.63px;
    top: 39px;
    width: 22.5px;
    height: 3px;
}

.best_engine_icon img:nth-child(3) {
    left: 7.5px;
    top: 16.88px;
    width: 18.75px;
    height: 3px;
}

.best_engine_icon img:nth-child(4) {
    left: 26.25px;
    top: 9.38px;
    width: 15px;
    height: 26.25px;
}

.best_spec_value {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    font-family: var(--font-outfit);
    font-weight: 600;
    font-family: var(--font-roboto);
    color: var(--kia-white1);
}

.best_spec_number {
    font-size: clamp(24px, 2.5vw, 48px);
}

.best_spec_unit {
    margin-top: 16px;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: rgba(221, 216, 209, 0.72);
}

/* section.ev6 */
.ev6 {
  overflow-x: clip;
}

.serif {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.scroll_scene {
  position: relative;
  height: 1460vh;
  background: var(--page-bg);
  color: var(--kia-white1);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sticky_scene {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-bg);
}

.scroll_down_wrap {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  margin-top: -100vh;
  padding-bottom: 32px;
  pointer-events: none;
}

.scroll_down {
  position: relative;
  display: inline-block;
  padding-top: 60px;
  color: var(--kia-white1);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(12, 17, 21, 0.28);
  user-select: none;
  opacity: 0.88;
}

.scroll_down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid var(--kia-white1);
  border-radius: 999px;
  box-sizing: border-box;
}

.scroll_down span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--kia-white1);
  border-radius: 50%;
  animation: scroll-down-dot 2s infinite;
  box-sizing: border-box;
}

@keyframes scroll-down-dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.bg_viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bg2_features_viewport {
  position: absolute;
  inset: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
}

.bg_track {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--panel-overlap));
  width: 100%;
  height: calc(200vh + (var(--panel-overlap) * 2));
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.bg_panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh + var(--panel-overlap));
  overflow: hidden;
}

.bg2_features_track {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--panel-overlap));
  width: 100%;
  height: calc(200vh + (var(--panel-overlap) * 2));
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.bg2_features_panel {
  position: absolute;
  left: 0;
  top: calc(100vh - var(--panel-overlap));
  width: 100%;
  height: calc(100vh + var(--panel-overlap));
  overflow: hidden;
}

.bg2_features_surface {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--bg-overscan));
  width: 100%;
  height: calc(100% + (var(--bg-overscan) * 2));
  user-select: none;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bg1_panel {
  top: 0;
  background: #0C1115;
}

.bg2_panel {
  top: calc(100vh - var(--panel-overlap));
  background: #0C1115;
}

.bg_viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: none;
}

.bg1_copy_stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  text-rendering: geometricPrecision;
}

.bg1_copy_left {
  position: absolute;
  left: clamp(74px, 11.1vw, 228px);
  top: 44.45vh;
  width: max-content;
}

.bg1_copy_left .title_row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
  color: var(--kia-white1);
}

.bg1_copy_left .num {
  font-family: "Baskervville", Georgia, serif;
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.bg1_copy_left .word, .bg1_copy_right .title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--kia-white1);
}

.bg1_copy_left .copy {
  margin-top: 12px;
  margin-left: 132px;
  width: 272px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.38;
  text-align: center;
  color: var(--kia-white2);
}

.bg1_copy_right {
  position: absolute;
  right: 0;
  top: 17vh;
  width: min(46.92vw, 961px);
}

.bg1_copy_right .sub {
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.32;
  color: var(--kia-white2);
}

.bg1_copy_right .line {
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: rgba(243, 238, 232, 0.58);
}

.bg1_copy_right .desc {
  width: min(33.1vw, 678px);
  margin: 18px 124px 0 auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.34;
  text-align: right;
  color: var(--kia-white2);
}

.bg_panel .bg_surface {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--bg-overscan));
  width: 100%;
  height: calc(100% + (var(--bg-overscan) * 2));
  user-select: none;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bg2_surface {
  background: #0C1115;
}

.bg2_copy_stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #f3eee8;
  pointer-events: none;
  text-rendering: geometricPrecision;
}

.bg2_copy_left {
  position: absolute;
  left: clamp(76px, 6.1vw, 112px);
  top: calc(15vh + 50px);
  width: min(31vw, 530px);
}

.bg2_copy_left .title {
  margin: 0;
  font-family: var(--font-outfit);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--kia-white1);
}

.bg2_copy_left .desc {
  margin-top: 18px;
  width: min(29vw, 480px);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.36;
  color: var(--kia-white2);
}

.bg2_copy_right {
  position: absolute;
  right: clamp(74px, 7vw, 126px);
  top: calc(15vh + 50px);
  text-align: right;
}

.bg2_copy_right .title {
  margin: 0;
  font-family: var(--font-Cormorant-Garamond);
  font-size: 96px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--kia-white1);
}

.bg2_features {
  position: absolute;
  left: clamp(76px, 6.1vw, 112px);
  top: auto;
  bottom: var(--ev6-bg-layer-bottom);
  width: min(40vw, 640px);
  display: grid;
  grid-template-columns: minmax(220px, 1.08fr) minmax(190px, 0.92fr);
  gap: 16px;
  align-items: start;
  align-content: start;
  color: var(--kia-white2);
}

.bg2_feature_title {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--kia-white1);
  transition: font-size .18s cubic-bezier(.22,.9,.22,1.08), color .18s cubic-bezier(.22,.9,.22,1.08);
}

.bg2_feature_copy {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
  color: var(--kia-white2);
  transition: font-size .18s cubic-bezier(.22,.9,.22,1.08), color .18s cubic-bezier(.22,.9,.22,1.08);
}

.bg2_feature_dashboard .bg2_feature_title {
  font-size: calc(20px + (8px * var(--dash-grow)));
  color: color-mix(in srgb, var(--kia-white1) calc(100% - (var(--dash-grow) * 100%)), #90E3FF calc(var(--dash-grow) * 100%));
}

.bg2_feature_dashboard {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg2_feature_dashboard .bg2_feature_copy {
  width: 320px;
  max-width: 320px;
  font-size: calc(18px + (8px * var(--dash-grow)));
  line-height: 1.18;
  color: color-mix(in srgb, var(--kia-white2), #90E3FF calc(var(--dash-grow) * 100%));
}

.bg2_feature_copy_dashboard span {
  white-space: nowrap;
  display: inline-block;
  color: inherit;
}

.bg2_feature_luggage .bg2_feature_title {
  font-size: calc(20px + (8px * var(--luggage-grow)));
  color: color-mix(in srgb, var(--kia-white1) calc(100% - (var(--luggage-grow) * 100%)), #90E3FF calc(var(--luggage-grow) * 100%));
}

.bg2_feature_luggage {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg2_feature_luggage .bg2_feature_copy {
  font-size: calc(18px + (8px * var(--luggage-grow)));
  color: color-mix(in srgb, var(--kia-white2) calc(100% - (var(--luggage-grow) * 100%)), #90E3FF calc(var(--luggage-grow) * 100%));
}

.bg2_feature_seating .bg2_feature_title {
  font-size: calc(20px + (8px * var(--seating-grow)));
  color: color-mix(in srgb, var(--kia-white1) calc(100% - (var(--seating-grow) * 100%)), #90E3FF calc(var(--seating-grow) * 100%));
}

.bg2_feature_seating {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg2_feature_seating .bg2_feature_copy {
  font-size: calc(18px + (8px * var(--seating-grow)));
  color: color-mix(in srgb, var(--kia-white2) calc(100% - (var(--seating-grow) * 100%)), #90E3FF calc(var(--seating-grow) * 100%));
}

.bg2_feature_carpets .bg2_feature_title {
  font-size: calc(20px + (8px * var(--carpet-grow)));
  color: color-mix(in srgb, var(--kia-white1) calc(100% - (var(--carpet-grow) * 100%)), #90E3FF calc(var(--carpet-grow) * 100%));
}

.bg2_feature_carpets {
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg2_feature_carpets .bg2_feature_copy {
  font-size: calc(18px + (8px * var(--carpet-grow)));
  color: color-mix(in srgb, var(--kia-white2) calc(100% - (var(--carpet-grow) * 100%)), #90E3FF calc(var(--carpet-grow) * 100%));
}

.bg_panel img {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--bg-overscan));
  width: 100%;
  height: calc(100% + (var(--bg-overscan) * 2));
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.car_wrap {
  position: absolute;
  left: 50%;
  top: 100%;
  height: min(132vh, 1460px);
  aspect-ratio: 1152 / 2048;
  transform-origin: 50% 100%;
  will-change: transform;
  z-index: 8;
  pointer-events: none;
  filter: saturate(1.02);
}

.car {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: auto;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  will-change: opacity, filter, clip-path;
  transform-origin: 50% 100%;
}

.solid {
  opacity: 0;
  z-index: 1;
  filter: drop-shadow(0 34px 64px rgba(0,0,0,0.44));
}

.xray {
  opacity: 0;
  z-index: 2;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 26px rgba(255,255,255,0.16)) blur(7px) brightness(1.04);
}

.dash_mask, .luggage_mask, .seating_mask, .carpets_mask {
  opacity: 0;
  z-index: 3;
  filter: drop-shadow(0 0 14px rgba(110,220,255,0.18));
  transform: translate(-50%, -5px);
  transition: opacity .16s linear;
}

.luggage_mask {
  z-index: 4;
}

.seating_mask {
  z-index: 5;
}

.carpets_mask {
  z-index: 6;
}

.depth_overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: none;
}

.top_fade, .bottom_fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 16;
  pointer-events: none;
}

.top_fade {
  top: 0;
  height: 22vh;
  background: linear-gradient(180deg, rgba(12,17,21,0.92) 0%, rgba(12,17,21,0.7) 38%, rgba(12,17,21,0) 100%);
}

.bottom_fade {
  bottom: 0;
  height: 0;
  background: none;
}

.materials_layer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform;
}

.overview_left {
  position: absolute;
  left: clamp(42px, 11vw, 190px);
  top: 56%;
  transform: translateY(-50%);
  width: min(32vw, 520px);
  text-align: left;
}

.overview_left h2 {
  margin: 0;
  font-size: clamp(56px, 6.6vw, 104px);
  line-height: 0.98;
  font-weight: 400;
}

.overview_left p {
  margin: 18px 0 0 0;
  width: min(18vw, 280px);
  margin-left: clamp(94px, 8.5vw, 138px);
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.22;
  color: var(--muted);
  text-align: center;
}

.overview_right {
  position: absolute;
  right: clamp(40px, 7vw, 110px);
  top: clamp(44px, 8vh, 88px);
  width: min(52vw, 760px);
  text-align: left;
}

.overview_right h3, .details_right h3 {
  margin: 0;
  font-size: clamp(64px, 6.1vw, 108px);
  line-height: 0.96;
  font-weight: 400;
}

.overview_right .sub, .details_intro .sub {
  margin-top: 14px;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.2;
  color: var(--muted);
}

.overview_right .line, .details_intro .line {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: var(--line);
}

.overview_right .desc, .details_intro .desc {
  margin: 16px 0 0 auto;
  width: min(38vw, 560px);
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.34;
  color: var(--muted);
  text-align: right;
}

.details_intro {
  position: absolute;
  left: clamp(42px, 6vw, 94px);
  top: clamp(68px, 11vh, 118px);
  width: min(30vw, 470px);
  text-align: left;
}

.details_intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 70px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.details_intro .desc {
  width: min(30vw, 470px);
  margin: 16px 0 0 0;
  text-align: left;
  font-size: clamp(16px, 1.22vw, 21px);
  line-height: 1.27;
}

.details_right {
  position: absolute;
  right: clamp(36px, 8vw, 128px);
  top: clamp(72px, 12vh, 170px);
  width: min(25vw, 360px);
  display: grid;
  justify-items: end;
  gap: clamp(150px, 24vh, 260px);
  text-align: right;
}

.photo_only_right {
  right: clamp(76px, 7.2vw, 122px);
  top: auto;
  bottom: var(--ev6-details-bottom);
  width: clamp(250px, 22vw, 360px);
  display: block;
  position: absolute;
}

.details_features {
  position: absolute;
  left: clamp(42px, 6vw, 94px);
  bottom: clamp(56px, 11vh, 110px);
  width: min(44vw, 720px);
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px clamp(24px, 3vw, 52px);
  align-items: start;
}

.feature_item {
  min-width: 0;
}

.feature_title {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.feature_copy {
  margin-top: 6px;
  font-size: clamp(16px, 1.22vw, 22px);
  line-height: 1.24;
  color: var(--muted);
}

.feature_dashboard .feature_title, 
.feature_dashboard .feature_copy {
  transform-origin: left center;
  transition: font-size .18s cubic-bezier(.22,.9,.22,1.08);
}

.feature_dashboard .feature_title {
  font-size: calc(clamp(22px, 1.8vw, 34px) + (8px * var(--dash-grow)));
}

.feature_dashboard .feature_copy {
  font-size: calc(clamp(16px, 1.22vw, 22px) + (8px * var(--dash-grow)));
}

.photo_card {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: center center;
  opacity: var(--photo-opacity);
  transform: translate3d(0, var(--photo-y), 0) scale(var(--photo-scale));
  transition: opacity .12s linear, transform .18s cubic-bezier(.22,.9,.22,1.16);
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.18));
}

.photo_card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.photo_card.is_hidden {
  opacity: 0;
  pointer-events: none;
}


/* section.match */
.match,
.partnership,
.review,
.map,
footer {
  overflow-x: hidden;
}

.match,
.intro {
  background: #0C1115;
}

.match {
  position: relative;
  isolation: isolate;
  background: #0C1115;
}

.intro {
  position: relative;
  z-index: 0;
  opacity: 1;
  transform-origin: center center;
  will-change: transform, opacity;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0C1115;
  z-index: 0;
}

.intro .inner {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: clamp(950px, 90vh, 100vh);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: none;
  opacity: 1;
  z-index: 2;
  transform-origin: center center;
  will-change: transform, opacity;
}

.intro p {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 16px;
}

.char {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.char span {
  transform: translateX(100%);
  display: inline-block;
  will-change: transform;
}

/* ===== Option Sections 공통 ===== */
section[class*="option"] {
  position: relative;
  background: #0C1115;
  z-index: 5;
  transform-origin: center top;
  will-change: transform, opacity;
}

section[class*="option"] .inner {
  width: 100%;
  height: 100vh;
  padding-block: 100px;
  min-height: clamp(950px, 90vh, 100vh);
  min-height: 950px;
  display: flex;
  flex-direction: column;
}

section[class*="option"] .top {
  flex: 0 0 116px;
  height: 116px;
  width: 100%;
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section[class*="option"] .top strong {
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
}

section[class*="option"] .top strong span{
  font-size: 1rem;
  padding-left: 32px;
}

section[class*="option"] .top a {
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

section[class*="option"] .top a i {
  font-size: 24px;
}

section[class*="option"] .top a span {
  font-size: 1.1rem;
}

section[class*="option"] .top a:hover span {
  text-decoration: underline;
}


section[class*="option"] .bottom {
  width: 100%;
  flex: 1 1 auto;
  min-height: 800px;
}

section[class*="option"] .bottom>ul.cars,
section[class*="option"] .bottom>ul {
  width: 100%;
  height: 100%;
  display: flex;
  list-style: none;
  gap: 0;
}

section[class*="option"] .bottom>ul.cars>li {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  padding: 64px 64px 120px;
  background-size: cover;
  background-position: center;
  align-content: flex-end;
}

section[class*="option"] .bottom>ul.cars>li .match_card_link_overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 4;
}

section[class*="option"] .bottom>ul.cars>li .match_card_link_overlay:focus-visible {
  outline: 2px solid var(--kia-white1);
  outline-offset: -2px;
}

section.option01 .bottom>ul.cars>li:nth-child(1) {
  background-image: url("../img/main/match/Outdoor_Adventure_01_Telluride_img.jpg");
}

section.option01 .bottom>ul.cars>li:nth-child(2) {
  background-image: url("../img/main/match/Outdoor_Adventure_02_Sportage_img.jpg");
}

section.option01 .bottom>ul.cars>li:nth-child(3) {
  background-image: url("../img/main/match/Outdoor_Adventure_03_Sorento_img.jpg");
}

section.option02 .bottom>ul.cars>li:nth-child(1) {
  background-image: url("../img/main/match/City_Commute_01_Seltos_img.jpg");
}

section.option02 .bottom>ul.cars>li:nth-child(2) {
  background-image: url("../img/main/match/City_Commute_02_K4_img.jpg");
}

section.option02 .bottom>ul.cars>li:nth-child(3) {
  background-image: url("../img/main/match/City_Commute_03_Niro_Hybrid_img.jpg");
}

section.option03 .bottom>ul.cars>li:nth-child(1) {
  background-image: url("../img/main/match/Family_Roadtrips_01_EV9_img.jpg");
}

section.option03 .bottom>ul.cars>li:nth-child(2) {
  background-image: url("../img/main/match/Family_Roadtrips_02_Telluride_img.jpg");
}

section.option03 .bottom>ul.cars>li:nth-child(3) {
  background-image: url("../img/main/match/Family_Roadtrips_03_Carnival_img.jpg");
}

section.option04 .bottom>ul.cars>li:nth-child(1) {
  background-image: url("../img/main/match/Electric_Eco_01_Niro_EV_img.jpg");
}

section.option04 .bottom>ul.cars>li:nth-child(2) {
  background-image: url("../img/main/match/Electric_Eco_02_EV6_img.jpg");
}

section.option04 .bottom>ul.cars>li:nth-child(3) {
  background-image: url("../img/main/match/Electric_Eco_03_EV9_img.jpg");
}

section[class*="option"] .bottom>ul.cars>li>h2 {
  z-index: 2;
  transform: translateY(0);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  line-height: 1.4;
}

section[class*="option"] .bottom>ul.cars>li h2 span {
  font-size: 58px;
  text-align: center;
  display: inline-block;
  transform: translateY(-16px);
  color: var(--kia-white1);
  line-height: 1;
}

section.option02 .bottom>ul.cars>li h2 span {
  font-size: 64px;
  transform: translateY(-12px);
}

section[class*="option"] .bottom>ul.cars>li>strong {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: var(--kia-white2);
  z-index: 2;
  transform: translateY(0);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

section[class*="option"] .bottom>ul.cars>li .info_con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.45s ease;
}

section[class*="option"] .bottom>ul.cars>li .info_con .tit {
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
  padding: 0 0 8px;
  text-align: left;
  flex-direction: column-reverse;
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

section[class*="option"] .bottom>ul.cars>li .info_con .tit h2 {
  width: 100%;
  font-size: 64px;
  font-weight: 500;
}

section[class*="option"] .bottom>ul.cars>li .info_con .tit strong {
  font-style: normal;
  font-weight: 400;
  color: var(--kia-white2);
}

section[class*="option"] .bottom>ul.cars>li:hover .info_con {
  opacity: 1;
  pointer-events: auto;
}

section[class*="option"] .bottom>ul.cars>li .info_con>p {
  padding-block: 16px;
  line-height: 1.3;
  color: var(--kia-white1);
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

section[class*="option"] .bottom>ul.cars>li .info_con>ul.info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

section[class*="option"] .bottom>ul.cars>li .info_con>ul.info>li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding-inline: 16px;
}

section[class*="option"] .bottom>ul.cars>li .info_con>ul.info>li>b {
  color: var(--kia-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

section[class*="option"] .bottom>ul.cars>li .info_con>ul.info>li>p {
  color: var(--kia-white2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%
}

section[class*="option"] .bottom>ul.cars>li:hover>h2,
section[class*="option"] .bottom>ul.cars>li:hover>strong {
  opacity: 0;
  transform: translateY(-28px);
}

section[class*="option"] .bottom>ul.cars>li:hover .info_con .tit,
section[class*="option"] .bottom>ul.cars>li:hover .info_con>p,
section[class*="option"] .bottom>ul.cars>li:hover .info_con>ul.info {
  opacity: 1;
  transform: translateY(0);
}

section[class*="option"] .bottom>ul.cars>li:hover .info_con>p {
  transition-delay: 0.08s;
}

section[class*="option"] .bottom>ul.cars>li:hover .info_con>ul.info {
  transition-delay: 0.14s;
}

.match-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 50px 50px 50px;
  background: rgba(251, 246, 239, 0.12);
  border: 1px solid rgba(251, 246, 239, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1200;
}

.match-cursor span {
  color: var(--kia-white1);
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 500;
}

.match-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.match-cursor.is-active {
  border: 1px solid var(--kia-white1);
}

@media (pointer: fine) {

  .match section[class*="option"] .bottom>ul.cars>li,
  .match section[class*="option"] .bottom>ul.cars>li * {
    cursor: none;
  }
}

/* section.partnership */
.partnership {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.partnership .inner {
  width: 100%;
  height: 100vh;
  min-height: clamp(950px, 90vh, 100vh);
  margin: 0 auto;
  padding: 72px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.partnership .tit {
  padding-block: 64px;
  text-align: center;
}

.partnership .tit p {
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--kia-white2);
}

.par_visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.belt_stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2048 / 921;
  overflow: hidden;
}

.belt_motion_view {
  position: absolute;
  inset: 0;
}

.belt_track_window {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.rail_lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.rail_track {
  display: flex;
  width: max-content;
  will-change: transform;
  position: relative;
  z-index: 2;
  transform: translate3d(0, 0, 0);
}

.rail_item {
  flex: 0 0 auto;
  width: 100%;
}

.rail_item img {
  display: block;
  width: 100%;
  height: auto;
}

.car_lane {
  position: absolute;
  left: 0;
  width: 86.6%;
  bottom: 20%;
  overflow: hidden;
  z-index: 3;
}

.car_lane_track {
  z-index: 3;
}

.car_track {
  display: flex;
  align-items: flex-end;
  width: max-content;
  gap: clamp(84px, 6vw, 148px);
  position: relative;
  z-index: 3;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.car_item {
  flex: 0 0 auto;
  height: clamp(152px, 15vw, 300px);
  width: auto;
  display: flex;
  align-items: flex-end;
}

.car_item img {
  display: block;
  width: auto;
  height: 100%;
}

.belt_machine {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.belt_machine_base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.belt_machine_body,
.belt_machine_body2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.belt_machine_body {
  z-index: 4;
}

.belt_machine_body2 {
  z-index: 2;
}

/* section.review */
html.review_locked,
body.review_locked {
  overscroll-behavior: none;
}

html.review_locked {
  overflow-y: scroll;
}

body.review_locked {
  overflow: hidden;
}

.review {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  overscroll-behavior: contain;
}

.review .inner {
  max-width: 1440px;
  height: 100vh;
  min-height: clamp(950px, 90vh, 100vh);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-block: 60px;
  box-sizing: border-box;
}

.review .tit {
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index: 20;
  padding-block: 32px 64px;
  width: 100%;
}

.review .tit p {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  margin: 0;
}

.review .review_con {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 60px;
  height: clamp(530px, 70vh, 800px);
  overflow: hidden;
  align-items: flex-start;
  padding-top: calc((clamp(530px, 70vh, 800px) - 300px) / 2);
}

.review .review_con::before {
  content: '';
  width: 100%;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #0C1115 0%, rgba(12, 17, 21, 0.88) 36%, rgba(12, 17, 21, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.review .review_con::after {
  content: '';
  width: 100%;
  height: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(12, 17, 21, 0.00) 40.39%, #0C1115 91.98%);
  pointer-events: none;
}

.review .review_con ul.re_left,
.review .review_con ul.re_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.review .review_con ul>li {
  border-radius: 32px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  margin-top: -12px;
  backdrop-filter: blur(8px);
  z-index: 1;
}

.review .review_con ul>li:first-child {
  margin-top: 0;
}

.review .review_con ul>li.on {
  opacity: 1;
  z-index: 10;
}

.review .review_con ul.re_left>li.on {
  transform: translateX(64px);
}

.review .review_con ul.re_right>li.on {
  transform: translateX(-64px);
}

.review .review_con ul>li:not(.on) {
  /* opacity: 0.3; */
  z-index: 1;
}

.review .review_con ul>li>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 48px;
  width: 500px;
  height: 300px;
  box-sizing: border-box;
}

.review .review_con ul>li>a b {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  display: block;
}

.review .review_con ul>li.on>a b {
  font-style: italic;
}

.review .review_con ul>li>a p {
  font-size: 16px;
  line-height: 1.3;
  color: #ccc;
}

.review .review_con ul>li>a>.star {
  display: flex;
  gap: 4px;
  min-height: 14px;
  flex-shrink: 0;
}

.review .review_con ul>li>a>.star i {
  color: #A7BAC8;
  font-size: 14px;
  display: block;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal .white_origin {
  padding: 16px 32px;
  border-radius: 55px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  opacity: 0.35;
}

.modal .white_origin:hover {
  transform: translateY(-4px);
}

/* section.map */
.map {
  background: url("../img/main/map_bg_img.jpg") center/cover;
}

.map .inner {
  width: 100%;
  height: 600px;
  padding-block: 240px;
  position: relative;
}

.map .bg1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #0C1115 75.6%);
}

.map .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: linear-gradient(0deg, rgba(12, 17, 21, 0.10) 25.81%, #0C1115 91%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.map p {
  font-size: clamp(20px, 2vw, 24px);
  padding-bottom: 32px;
}

.map button,
.map .txt_box > a {
  position: relative;
  min-width: 170px;
  height: 56px;
  padding-inline: 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.34),
      rgba(255, 255, 255, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: var(--kia-black);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  color: var(--kia-white1);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: baseline;
}

.map button::before,
.map .txt_box > a::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.05));
  pointer-events: none;
  opacity: 0.7;
}

.map button:hover,
.map .txt_box > a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 34px rgba(0, 0, 0, 0.2);
}
