*{

-webkit-tap-highlight-color: transparent;

}

.mobile-page {
  display: none;
}

@media (max-width: 1125px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .mobile-page,
  .mobile-page * {
    -webkit-user-select: none;
    user-select: none;
  }

  .poster-stage {
    display: block;
    min-height: auto;
  }

  .poster-frame {
    display: none;
  }

  .mobile-page {
    display: block;
    width: 100%;
    min-height: 100dvh;
    background: var(--poster-orange);
    color: var(--poster-white);
    --mobile-header-height: 60px;
  }

  .mobile-page-body {
    width: 100%;
    padding-top: var(--mobile-header-height);
  }

  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-header-height);
    transform: none;
    z-index: 60;
    padding: 0 18px;
    background: var(--poster-orange);
    transition: background-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
    box-sizing: border-box;
  }

  .mobile-header.is-footer {
    background: var(--poster-footer);
  }

  .mobile-header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .mobile-header-start {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .mobile-menu-toggle{
    
  }
  .mobile-menu-toggle img{
    flex-direction: column;
    justify-content: center;
    border: 0;
    height: 20px;
    border-radius: 0; 
    color: var(--poster-white);
    cursor: pointer;
  }

  .mobile-menu-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-header-wordmark {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-self: center;
    gap: 3px;
    min-width: 0;
    text-align: center;
  }

  .mobile-header-logo {
    display: block;
    height: 13px;
    color: var(--poster-white);
  }

  .mobile-header-wordmark-sub {
    margin: 0;
    font-family: "DINPro-Bold", "DIN Pro", sans-serif;
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: left;
    white-space: nowrap;
  }

  .mobile-header-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    justify-self: end;
  }

  .mobile-header-member-icon {
    display: block;
    width: 15px;
    height: auto;
  }

  .mobile-header-member-label {
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 11px;
    line-height: 1;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 59;
    border: 0;
    background: rgba(22, 20, 18, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 60;
    width: min(100vw, 316px);
    padding: 0;
    background: #f7f7f5;
    color: var(--poster-orange);
    box-shadow: 14px 0 34px rgba(34, 22, 14, 0.12);
    transform: translateX(-100%);
    transition: transform 260ms ease;
    overflow-y: auto;
  }

  body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-nav-open .mobile-submenu {
    transform: translateX(0);
  }

  .mobile-submenu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 23px;
  }

  .mobile-submenu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-submenu-intro {
    margin: 10px 0 0;
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -0.05em;
    color: var(--poster-orange);
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--poster-orange);
    font-family: "DINPro-Light", "DINPro-Regular", "DIN Pro", sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-submenu-nav {
    display: grid;
    gap: 28px;
    margin-top: 54px;
  }

  .mobile-submenu-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }

  .mobile-submenu-main {
    display: block;
    font-family: "DINPro-Bold", "DIN Pro", sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--poster-orange);
    white-space: nowrap;
  }

  .mobile-submenu-about {
    margin-top: 72px;
    padding-top: 0;
  }

  .mobile-submenu-about-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-submenu-about-icon {
    display: inline-block;
    width: 48px;
    height: 32px;
    background-color: var(--poster-orange);
    -webkit-mask: center / contain no-repeat url("/assets/logo.svg");
    mask: center / contain no-repeat url("/assets/logo.svg");
    flex: none;
  }

  .mobile-submenu-about-title {
    font-family: "DINPro-Bold", "DIN Pro", sans-serif;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--poster-orange);
  }

  .mobile-submenu-about-links {
    display: grid;
    gap: 26px;
    margin-top: 34px;
  }

  .mobile-submenu-about-link {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--poster-orange);
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    text-align: left;
    cursor: pointer;
  }

  .mobile-footer-inner {
    width: 100%;
  }

  .mobile-section--hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .mobile-hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 92px;
  }

  .mobile-hero-logo {
    display: block;
    height: 152px;
  }

  .mobile-hero-copy {
    width: 100%;
    margin-top: clamp(40px, 8vh, 76px);
  }

  .mobile-hero-copy-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .mobile-hero-heading {
    margin: 0 0 clamp(28px, 5vh, 42px);
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 30px;
    line-height: 0.94;
    letter-spacing: -0.08em;
    word-break: keep-all;
    white-space: nowrap;
  }

  .mobile-hero-line {
    margin: 0;
    max-width: 100%;
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.055em;
    word-break: keep-all;
  }

  .mobile-section--details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100dvh - var(--mobile-header-height));
    text-align: center;
    margin-bottom: 100px;
  }
    .mobile-details{
    }
    .mobile-details-heading {
      
      margin-top: 121px !important; 
      display: flex;
      flex-direction: column;
      gap: clamp(6px, 1.5vh, 14px);
      align-items: center;
    }

  .heading-grp {
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    container-type: inline-size;
  }

  .mobile-details-title {
    margin: 0;
    font-family: "DINPro-Bold", "DIN Pro", sans-serif;
    font-size: 16px;
    line-height: 1;
    color: var(--poster-yellow);
    letter-spacing: clamp(-0.02em, -0.18cqi, 0.02em);
    white-space: nowrap;
  }

  .mobile-details-title span {

    font-family: "DINPro-Regular", "DIN Pro", sans-serif;
    font-size: clamp(21px, 6vw, 36px);;
    font-weight: 400;
  }

  @keyframes drawTracePath {
    0% {
      opacity: 0;
      stroke-dashoffset: var(--trace-dash-start, var(--trace-length, 0));
    }
    8% {
      opacity: 0;
      stroke-dashoffset: var(--trace-dash-start, var(--trace-length, 0));
    }
    12% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      stroke-dashoffset: var(--trace-dash-end, 0);
    }
  }

  @keyframes mobileTracePathOut {
    0% {
      opacity: 1;
      stroke-dashoffset: var(--trace-dash-end, 0);
    }
    100% {
      opacity: 0;
      stroke-dashoffset: var(--trace-dash-start, var(--trace-length, 0));
    }
  }

  .mobile-details-subtitle {
    margin: 0;
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 14.2px;
    line-height: 1.2;
    letter-spacing: clamp(-0.12em, -0.42cqi, -0.03em);
    word-break: keep-all;
    text-wrap: balance;
  }

  .mobile-details-chain-group {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .mobile-service-grid {
    display: flex;
    justify-content: center;
    width: 283.2px;
    margin-top: 0;
  }

  .mobile-service-layout {
    width: var(--mobile-chain-outer-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .mobile-service-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .mobile-service-frame {
    position: relative;
    width: var(--mobile-chain-frame-width);
    height: var(--mobile-chain-frame-height);
    margin-top: calc(var(--mobile-chain-frame-overlap) * -1);
    padding-top: var(--mobile-chain-frame-overlap);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: var(--mobile-chain-stroke) solid var(--poster-yellow);
    border-left: var(--mobile-chain-stroke) solid var(--poster-yellow);
    border-right: var(--mobile-chain-stroke) solid var(--poster-yellow);
    border-bottom: var(--mobile-chain-stroke) solid var(--poster-yellow);
    border-radius: var(--mobile-chain-corner-radius);
    box-sizing: border-box;
  }

  .mobile-service-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-service-stack-item:first-child {
    margin-top: calc(var(--mobile-chain-stroke) * -1);
  }

  .mobile-service-connector {
    width: var(--mobile-chain-stroke);
    height: var(--mobile-chain-connector-height);
    background: var(--poster-white);
  }

  .mobile-service-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: var(--mobile-chain-pill-width);
    height: var(--mobile-chain-pill-height);
    border: var(--mobile-chain-stroke) solid var(--poster-white);
    border-radius: var(--mobile-chain-pill-radius);
    background: var(--poster-orange);
    text-align: center;
    box-sizing: border-box;
    flex: none;
  }

  .mobile-service-pill--featured {
    border-color: var(--poster-yellow);
  }

  .mobile-service-pill-title {
    font-family: "DINPro-Black", "DIN Pro", sans-serif;
    font-size: 19px;
    line-height: 0.95;
    color: var(--poster-white);
  }

  .mobile-service-pill-subtitle {
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--poster-white);
    position: relative;
    top: 2px;
  }

  .mobile-service-pill--featured .mobile-service-pill-title,
  .mobile-service-pill--featured .mobile-service-pill-subtitle {
    color: var(--poster-yellow);
  }

  .mobile-system-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: clamp(18px, 3vh, 28px);
  }

  .mobile-system-logo {
    display: block;
    height: 13px !important;
  }
    
  .mobile-system-title {
    margin: 0;
    font-size: 16px;
    color: var(--poster-yellow);
    line-height: 1;
  }

  .mobile-system-copy-title {
    font-family: "DINPro-Bold", "DIN Pro", sans-serif;
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .mobile-details-copy p {
    margin: 0;
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: anywhere;
    flex-shrink: 0;
  }
  .mobile-details-copy p:first-child {
    margin-bottom: 10px;
  }
  .mobile-details-copy {
    margin-top: 61px;
  }

  .mobile-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
    background: var(--poster-footer);
    color: var(--poster-white);
    overflow: visible;
  }

  .mobile-footer-inner {
    width: 100%;
    padding: 20px 0 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-content: start;
    gap: 16px;
    
    margin-bottom: 40px;
    overflow: visible;
  }

  .mobile-footer-top {
    grid-column: 1 / 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .mobile-footer-social-strip {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
    flex: none;
  }

  .mobile-footer-managed-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    flex: none;
    position: relative;
    left:0.5px;
  }

  .mobile-footer-managed-link img {
    display: block;
    width: auto;
    height: auto;
  }

  .mobile-footer-managed-link--store img {
    height: 9px;
  }

  .mobile-footer-managed-link--instagram img {
    height: 15px;
  }

  .mobile-footer-managed-link--youtube img {
    height: 15px;
  }

  .mobile-footer-divider {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    flex: none;
  }

  .mobile-footer-links {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 8px;
    top: 1px;
    margin-left: auto;
    flex: none;
  }

  .mobile-footer-top-link {
    margin: 0;
    color: var(--poster-yellow);
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-footer-kr {
    margin: 0;
    color: var(--poster-white);
    font-family: "GmarketSansLight", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .mobile-footer-store-copy {
    grid-column: 1 / 4;
    max-width: 100%;
    position: relative;
    top: -5px;  
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
  }
  .mobile-footer-store-copy span{
    flex-shrink: 0; 
  }
   .mobile-footer-store-copy span span{
    position: relative;
    display: inline-flex;
    width: 6px;
    justify-content: center;
  }
  .mobile-footer-lower {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-content: start;
  }

  .mobile-footer-lower-brand {
    grid-column: 1 / 4;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .mobile-footer-brand-logo {
    width: 66px;
    height: auto;
  }

  .mobile-footer-brand-copy {
    grid-column: 1 / 4;
    grid-row: 2;
    display: grid;
    align-content: start;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 5px;
  }
  .mobile-footer-brand-copy .mobile-footer-kr{
    margin-bottom: 2px;
  }
    .mobile-footer-brand-copy .mobile-footer-kr:last-child{
    margin-bottom: 0px;
  }
  .mobile-footer-managed-note {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    align-self: start;
    justify-self: start;
    width: max-content;
  }

  .mobile-footer-managed-label,
  .mobile-footer-managed-sub {
    margin: 0;
    width: max-content;
    color: var(--poster-white);
    font-family: "DINPro-Light", "DINPro-Regular", "DIN Pro", sans-serif;
    font-size: 10px;
    line-height: 1.0;
    text-align: left;
  }

  .mobile-footer-incom-block {
    align-content: start;
    width: 100%;
  }
.mobile-footer-incom-block .copyright{
  font-family: 'DINPro-Regular', 'DIN Pro', sans-serif !important;
  letter-spacing: 0.5px;
}
  .mobile-footer-incom-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    align-items: start;
    max-width: 100%;
    min-width: 0;
  }

  .mobile-footer-brand-incom {
    display: block;
    height: 10px;
    width: auto;
    flex: none;
  }

  .mobile-footer-incom-legal {
    font-size: 10px;
    line-height: 1.15;
  }

  .mobile-footer-copyright {
    margin: 0;
    color: var(--poster-white);
    font-family: "DINPro-Regular", "DIN Pro Regular", "DIN Pro", sans-serif;
    font-size: 8px;
    line-height: 1.1;
    max-width: 100%;
  }
}





