:root {
  --jg-orange: #ff6500;
  --jg-orange-dark: #d94f00;
  --jg-yellow: #edff23;
  --jg-ink: #181816;
  --jg-paper: #fff8ee;
  --jg-white: #ffffff;
  --jg-cloud: #f2f4f1;
  --jg-muted: #6d665e;
  --jg-line: #d9d0c4;
  --jg-green: #1e6b45;
  --jg-danger: #b42318;
  --jg-focus: #005fcc;
  --jg-overlay: rgba(24, 24, 22, .62);
  --jg-shadow: rgba(24, 24, 22, .18);
  --jg-transparent: rgba(255, 255, 255, 0);
  --jg-container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--jg-ink);
  background: var(--jg-paper);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  letter-spacing: 0;
}

body.jg-lock {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--jg-focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.jg-skip {
  position: fixed;
  left: 16px;
  top: -64px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--jg-ink);
  color: var(--jg-white);
  font-weight: 800;
}

.jg-skip:focus {
  top: 16px;
}

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

.jg-section {
  padding-block: 112px;
}

.jg-section--white {
  background: var(--jg-white);
}

.jg-section--ink {
  color: var(--jg-white);
  background: var(--jg-ink);
}

.jg-section-head {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(360px, 1.3fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.jg-section-head h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  word-break: keep-all;
}

.jg-section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--jg-muted);
  font-size: 17px;
  line-height: 1.75;
}

.jg-section--ink .jg-section-head p {
  color: var(--jg-line);
}

.jg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

.jg-eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.jg-state {
  display: inline-flex;
  min-height: 30px;
  padding: 5px 9px;
  align-items: center;
  border: 1px solid var(--jg-ink);
  border-radius: 2px;
  background: var(--jg-white);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.jg-state--yellow {
  background: var(--jg-yellow);
}

.jg-btn {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--jg-ink);
  border-radius: 2px;
  background: var(--jg-white);
  color: var(--jg-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.jg-btn:hover {
  transform: translateY(-2px);
}

.jg-btn--dark {
  background: var(--jg-ink);
  color: var(--jg-white);
}

.jg-btn--yellow {
  background: var(--jg-yellow);
}

.jg-btn--orange {
  background: var(--jg-orange);
}

.jg-icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--jg-ink);
  border-radius: 2px;
  background: var(--jg-transparent);
  line-height: 0;
}

.jg-icon-button > svg,
.jg-icon-button > i {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.jg-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 2px solid var(--jg-ink);
  background: var(--jg-white);
}

body[data-page="home"] .jg-header {
  background: var(--jg-orange);
}

.jg-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
}

.jg-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-self: start;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.jg-logo span {
  font-size: 11px;
  font-weight: 750;
}

.jg-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.jg-main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid var(--jg-transparent);
  font-size: 14px;
  font-weight: 750;
}

.jg-main-nav a:hover,
.jg-main-nav a[aria-current="page"] {
  border-color: var(--jg-ink);
}

.jg-nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.jg-nav-inquiry {
  min-height: 44px;
  padding-inline: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--jg-ink);
  background: var(--jg-ink);
  color: var(--jg-white);
  font-size: 14px;
  font-weight: 850;
}

.jg-mobile-open {
  display: none;
}

.jg-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(88vw, 420px);
  visibility: hidden;
  background: var(--jg-overlay);
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.jg-mobile-panel[data-open="true"] {
  visibility: visible;
  opacity: 1;
}

.jg-mobile-panel__sheet {
  grid-column: 2;
  min-width: 0;
  padding: 20px;
  background: var(--jg-paper);
  transform: translateX(100%);
  transition: transform .25s ease;
}

.jg-mobile-panel[data-open="true"] .jg-mobile-panel__sheet {
  transform: translateX(0);
}

.jg-mobile-panel__top {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--jg-line);
}

.jg-mobile-panel nav {
  padding-block: 24px;
  display: grid;
}

.jg-mobile-panel nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
  font-size: 21px;
  font-weight: 850;
}

.jg-search-dialog,
.jg-modal {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  border: 2px solid var(--jg-ink);
  border-radius: 4px;
  background: var(--jg-paper);
  box-shadow: 0 20px 60px var(--jg-shadow);
}

.jg-search-dialog::backdrop,
.jg-modal::backdrop {
  background: var(--jg-overlay);
}

.jg-dialog-head {
  min-height: 68px;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--jg-line);
}

.jg-dialog-head h2 {
  margin: 0;
  font-size: 20px;
}

.jg-dialog-body {
  padding: 28px 22px;
}

.jg-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.jg-search-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid var(--jg-ink);
  border-radius: 2px;
  background: var(--jg-white);
  font-size: 16px;
}

.jg-search-hint {
  margin: 14px 0 0;
  color: var(--jg-muted);
  font-size: 13px;
  line-height: 1.65;
}

.jg-hero {
  min-height: 710px;
  padding-block: 54px 44px;
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(560px, 1.14fr);
  gap: 48px;
  align-items: center;
}

.jg-hero-band {
  background: var(--jg-orange);
  border-bottom: 2px solid var(--jg-ink);
}

.jg-hero-copy h1 {
  max-width: 690px;
  margin: 0 0 14px;
  font-size: 78px;
  line-height: 1.02;
  font-weight: 950;
  word-break: keep-all;
}

.jg-hero-tagline {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: 37px;
  line-height: 1.15;
  font-weight: 900;
  word-break: keep-all;
}

.jg-hero-copy > p {
  max-width: 540px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 560;
}

.jg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jg-hero-collage {
  position: relative;
  min-height: 550px;
}

.jg-hero-image {
  position: absolute;
  inset: 26px 3% 0 13%;
  width: 78%;
  height: 500px;
  border: 3px solid var(--jg-ink);
  border-radius: 2px;
  object-fit: cover;
  transform: rotate(1.5deg);
}

.jg-hero-image--small {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 37%;
  height: 250px;
  border: 3px solid var(--jg-ink);
  border-radius: 2px;
  object-fit: cover;
  transform: rotate(-5deg);
}

.jg-hero-sticker {
  position: absolute;
  right: 0;
  top: 0;
  width: 148px;
  height: 148px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 3px solid var(--jg-ink);
  border-radius: 50%;
  background: var(--jg-yellow);
  text-align: center;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
  transform: rotate(8deg);
}

.jg-ticker {
  overflow: hidden;
  border-bottom: 2px solid var(--jg-ink);
  background: var(--jg-yellow);
}

.jg-ticker__track {
  width: max-content;
  padding-block: 16px;
  display: flex;
  gap: 34px;
  white-space: nowrap;
  animation: jg-ticker 24s linear infinite;
}

.jg-ticker__track span {
  font-size: 16px;
  font-weight: 900;
}

.jg-ticker__track span::after {
  margin-left: 34px;
  content: "✦";
}

@keyframes jg-ticker {
  to { transform: translateX(-50%); }
}

.jg-product-explorer {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 620px;
  background: var(--jg-white);
  border-bottom: 2px solid var(--jg-ink);
}

.jg-product-index {
  border-right: 2px solid var(--jg-ink);
}

.jg-product-index__label {
  min-height: 92px;
  padding: 30px max(24px, calc((100vw - var(--jg-container)) / 2));
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.jg-product-tab {
  width: 100%;
  min-height: 132px;
  padding: 24px max(24px, calc((100vw - var(--jg-container)) / 2));
  display: grid;
  grid-template-columns: 58px 1fr 44px;
  gap: 16px;
  align-items: center;
  border: 0;
  border-top: 2px solid var(--jg-ink);
  background: var(--jg-white);
  text-align: left;
}

.jg-product-tab:last-child {
  border-bottom: 2px solid var(--jg-ink);
}

.jg-product-tab[aria-pressed="true"] {
  background: var(--jg-yellow);
}

.jg-product-tab__num {
  font-size: 14px;
  font-weight: 900;
}

.jg-product-tab__name {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 950;
}

.jg-product-tab__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.jg-product-tab__icon > svg,
.jg-product-tab__icon > i {
  display: block;
  width: 20px;
  height: 20px;
}

.jg-product-stage {
  padding: 62px 5vw;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1.1fr);
  gap: 52px;
  align-items: center;
  background: var(--jg-paper);
}

.jg-product-stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 2px solid var(--jg-ink);
  border-radius: 2px;
  object-fit: cover;
}

.jg-product-stage h2 {
  margin: 18px 0 14px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 950;
  word-break: keep-all;
}

.jg-product-stage p {
  max-width: 470px;
  margin: 0 0 24px;
  color: var(--jg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.jg-principles {
  border-top: 2px solid var(--jg-ink);
}

.jg-principle {
  min-height: 170px;
  display: grid;
  grid-template-columns: 110px minmax(220px, .8fr) minmax(340px, 1.2fr);
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-principle__num {
  font-size: 14px;
  font-weight: 900;
}

.jg-principle h3 {
  margin: 0;
  font-size: 35px;
  line-height: 1.2;
}

.jg-principle p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.jg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jg-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  background: var(--jg-white);
}

.jg-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--jg-cloud);
}

.jg-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.jg-product-card:hover .jg-product-card__media img {
  transform: scale(1.025);
}

.jg-product-card__media .jg-state {
  position: absolute;
  left: 12px;
  top: 12px;
}

.jg-product-card__body {
  min-height: 188px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.jg-product-card__meta {
  margin-bottom: 9px;
  color: var(--jg-muted);
  font-size: 12px;
  font-weight: 800;
}

.jg-product-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.jg-product-card p {
  margin: 0 0 20px;
  color: var(--jg-muted);
  font-size: 14px;
  line-height: 1.65;
}

.jg-product-card__button {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--jg-line);
  background: var(--jg-transparent);
  font-size: 14px;
  font-weight: 850;
}

.jg-product-card__button span:last-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.jg-product-card__button svg,
.jg-product-card__button i {
  width: 18px;
  height: 18px;
}

.jg-news-preview {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  border-top: 2px solid var(--jg-ink);
}

.jg-news-preview__title {
  padding: 36px 30px 36px 0;
  border-right: 1px solid var(--jg-line);
}

.jg-news-preview__title h2 {
  margin: 0 0 20px;
  font-size: 44px;
  line-height: 1.1;
}

.jg-news-list {
  padding-left: 34px;
}

.jg-news-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 120px 1fr 44px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-news-row:first-child {
  border-top: 0;
}

.jg-news-row__meta {
  color: var(--jg-muted);
  font-size: 12px;
  font-weight: 800;
}

.jg-news-row h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.jg-news-row__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.jg-news-row__icon svg,
.jg-news-row__icon i {
  width: 19px;
  height: 19px;
}

.jg-business-band {
  padding-block: 84px;
  background: var(--jg-orange);
  border-top: 2px solid var(--jg-ink);
  border-bottom: 2px solid var(--jg-ink);
}

.jg-business-band__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
}

.jg-business-band h2 {
  max-width: 850px;
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 950;
  word-break: keep-all;
}

.jg-business-band__action {
  justify-self: end;
}

.jg-page-hero {
  min-height: 520px;
  padding-block: 74px;
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(420px, .92fr);
  gap: 70px;
  align-items: center;
}

.jg-page-hero h1 {
  margin: 0 0 22px;
  font-size: 66px;
  line-height: 1.08;
  font-weight: 950;
  word-break: keep-all;
}

.jg-page-hero p {
  max-width: 590px;
  margin: 0;
  color: var(--jg-muted);
  font-size: 18px;
  line-height: 1.75;
}

.jg-page-hero__visual {
  position: relative;
  min-height: 390px;
  background: var(--jg-orange);
  border: 2px solid var(--jg-ink);
}

.jg-page-hero__visual img {
  position: absolute;
  inset: 34px 10% -24px 10%;
  width: 80%;
  height: 380px;
  border: 2px solid var(--jg-ink);
  object-fit: cover;
}

.jg-page-hero__label {
  position: absolute;
  left: -18px;
  top: 22px;
  padding: 10px 12px;
  border: 2px solid var(--jg-ink);
  background: var(--jg-yellow);
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.jg-role-list {
  border-top: 2px solid var(--jg-ink);
}

.jg-role {
  min-height: 200px;
  display: grid;
  grid-template-columns: 130px minmax(240px, .8fr) minmax(380px, 1.2fr);
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-role__num {
  font-size: 15px;
  font-weight: 900;
}

.jg-role h2,
.jg-role h3 {
  margin: 0;
  font-size: 37px;
  line-height: 1.2;
}

.jg-role p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.jg-status-board {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  border-top: 2px solid var(--jg-ink);
  border-bottom: 2px solid var(--jg-ink);
}

.jg-status-board__intro {
  padding: 42px 42px 42px 0;
  border-right: 1px solid var(--jg-line);
}

.jg-status-board__intro h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
}

.jg-status-board__intro p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 15px;
  line-height: 1.75;
}

.jg-status-rows {
  padding-left: 36px;
}

.jg-status-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 190px 1fr 120px;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-status-row:last-child {
  border-bottom: 0;
}

.jg-status-row span {
  color: var(--jg-muted);
  font-size: 13px;
}

.jg-status-row strong {
  font-size: 17px;
}

.jg-status-row em {
  justify-self: end;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.jg-brand-showcase {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.jg-brand-showcase__large,
.jg-brand-showcase__small {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--jg-ink);
}

.jg-brand-showcase__large {
  min-height: 620px;
  background: var(--jg-orange);
}

.jg-brand-showcase__small {
  min-height: 620px;
  background: var(--jg-yellow);
}

.jg-brand-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jg-brand-showcase__copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 2px solid var(--jg-ink);
  background: var(--jg-white);
}

.jg-brand-showcase__copy h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.jg-brand-showcase__copy p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 14px;
  line-height: 1.65;
}

.jg-shop-hero {
  padding-block: 76px 52px;
  background: var(--jg-orange);
  border-bottom: 2px solid var(--jg-ink);
}

.jg-shop-hero h1 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: 68px;
  line-height: 1.05;
  font-weight: 950;
}

.jg-shop-hero p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.jg-shop-toolbar {
  padding-block: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 370px);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jg-segment {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--jg-line);
  border-radius: 2px;
  background: var(--jg-white);
  font-size: 14px;
  font-weight: 800;
}

.jg-segment[aria-pressed="true"] {
  border-color: var(--jg-ink);
  background: var(--jg-yellow);
}

.jg-inline-search {
  display: grid;
  grid-template-columns: 1fr 44px;
}

.jg-inline-search input {
  min-width: 0;
  min-height: 44px;
  padding-inline: 13px;
  border: 1px solid var(--jg-ink);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  background: var(--jg-white);
}

.jg-inline-search button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--jg-ink);
  border-radius: 0 2px 2px 0;
  background: var(--jg-ink);
  color: var(--jg-white);
  line-height: 0;
}

.jg-inline-search button svg,
.jg-inline-search button i {
  width: 18px;
  height: 18px;
}

.jg-empty {
  min-height: 240px;
  padding: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--jg-line);
  background: var(--jg-white);
  text-align: center;
}

.jg-empty h2,
.jg-empty h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.jg-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--jg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.jg-shop-note {
  margin-top: 62px;
  padding: 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  border: 2px solid var(--jg-ink);
  background: var(--jg-yellow);
}

.jg-shop-note strong {
  font-size: 15px;
}

.jg-shop-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.jg-product-modal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

.jg-product-modal-grid img {
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid var(--jg-ink);
  object-fit: cover;
}

.jg-product-modal-grid h3 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.jg-product-modal-grid p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.jg-news-hero {
  padding-block: 88px 54px;
  background: var(--jg-white);
  border-bottom: 1px solid var(--jg-line);
}

.jg-news-hero h1 {
  margin: 0 0 20px;
  font-size: 68px;
  line-height: 1.05;
}

.jg-news-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--jg-muted);
  font-size: 17px;
  line-height: 1.75;
}

.jg-news-board {
  border-top: 2px solid var(--jg-ink);
}

.jg-news-item {
  min-height: 170px;
  padding-block: 28px;
  display: grid;
  grid-template-columns: 160px 1fr 170px 52px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--jg-line);
}

.jg-news-item__meta {
  color: var(--jg-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jg-news-item h2 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.35;
}

.jg-news-item p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 14px;
  line-height: 1.65;
}

.jg-news-item__source {
  justify-self: end;
  font-size: 13px;
  font-weight: 800;
}

.jg-news-item__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.jg-news-item__arrow svg,
.jg-news-item__arrow i {
  width: 19px;
  height: 19px;
}

.jg-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.jg-contact-copy {
  position: sticky;
  top: 112px;
}

.jg-contact-copy h1 {
  margin: 0 0 20px;
  font-size: 59px;
  line-height: 1.08;
}

.jg-contact-copy p {
  margin: 0;
  color: var(--jg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.jg-contact-types {
  margin-top: 32px;
  border-top: 2px solid var(--jg-ink);
}

.jg-contact-type {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--jg-line);
  font-size: 15px;
  font-weight: 800;
}

.jg-contact-form {
  padding: 34px;
  border: 2px solid var(--jg-ink);
  background: var(--jg-white);
}

.jg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jg-field {
  margin-bottom: 20px;
}

.jg-field label,
.jg-field legend {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 850;
}

.jg-field input,
.jg-field select,
.jg-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--jg-ink);
  border-radius: 2px;
  background: var(--jg-paper);
  font-size: 15px;
}

.jg-field textarea {
  min-height: 150px;
  resize: vertical;
}

.jg-field [aria-invalid="true"] {
  border: 2px solid var(--jg-danger);
}

.jg-field__error {
  min-height: 20px;
  margin: 5px 0 0;
  color: var(--jg-danger);
  font-size: 12px;
  line-height: 1.5;
}

.jg-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.jg-radio {
  position: relative;
}

.jg-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.jg-radio span {
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jg-line);
  background: var(--jg-paper);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.jg-radio input:checked + span {
  border: 2px solid var(--jg-ink);
  background: var(--jg-yellow);
}

.jg-radio input:focus-visible + span {
  outline: 3px solid var(--jg-focus);
  outline-offset: 2px;
}

.jg-consent {
  margin: 5px 0 22px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.jg-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
}

.jg-consent span {
  color: var(--jg-muted);
  font-size: 13px;
  line-height: 1.65;
}

.jg-form-note {
  margin: 14px 0 0;
  color: var(--jg-muted);
  font-size: 12px;
  line-height: 1.65;
}

.jg-faq {
  border-top: 2px solid var(--jg-ink);
}

.jg-faq details {
  border-bottom: 1px solid var(--jg-line);
}

.jg-faq summary {
  min-height: 76px;
  padding-block: 16px;
  display: grid;
  grid-template-columns: 34px 1fr 44px;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 850;
}

.jg-faq summary::-webkit-details-marker {
  display: none;
}

.jg-faq__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 0;
  transition: transform .2s ease;
}

.jg-faq__icon svg,
.jg-faq__icon i {
  width: 18px;
  height: 18px;
}

.jg-faq details[open] .jg-faq__icon {
  transform: rotate(45deg);
}

.jg-faq__answer {
  max-width: 860px;
  padding: 0 44px 26px 46px;
  color: var(--jg-muted);
  font-size: 15px;
  line-height: 1.75;
}

.jg-source-note {
  padding: 22px;
  border-left: 5px solid var(--jg-orange);
  background: var(--jg-white);
  color: var(--jg-muted);
  font-size: 13px;
  line-height: 1.7;
}

.jg-footer {
  color: var(--jg-white);
  background: var(--jg-ink);
}

.jg-footer__top {
  padding-block: 68px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.jg-footer__brand {
  font-size: 31px;
  font-weight: 950;
}

.jg-footer__brand p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--jg-line);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 450;
}

.jg-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  align-content: start;
}

.jg-footer__nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--jg-muted);
  font-size: 14px;
}

.jg-footer__bottom {
  min-height: 72px;
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--jg-muted);
  color: var(--jg-line);
  font-size: 12px;
}

.jg-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.jg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .jg-nav {
    grid-template-columns: 210px 1fr 170px;
  }

  .jg-main-nav {
    gap: 16px;
  }

  .jg-hero {
    grid-template-columns: minmax(330px, .86fr) minmax(450px, 1.14fr);
  }

  .jg-hero-copy h1 {
    font-size: 62px;
  }

  .jg-hero-tagline {
    font-size: 32px;
  }

  .jg-product-stage {
    grid-template-columns: 1fr;
  }

  .jg-product-stage img {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .jg-section {
    padding-block: 84px;
  }

  .jg-section-head,
  .jg-business-band__inner,
  .jg-page-hero,
  .jg-contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .jg-section-head h2 {
    font-size: 42px;
  }

  .jg-nav {
    grid-template-columns: 1fr auto;
  }

  .jg-main-nav,
  .jg-nav-inquiry {
    display: none;
  }

  .jg-mobile-open {
    display: grid;
  }

  .jg-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .jg-hero-copy h1 {
    font-size: 56px;
  }

  .jg-hero-tagline {
    font-size: 30px;
  }

  .jg-hero-collage {
    min-height: 480px;
  }

  .jg-hero-image {
    height: 430px;
  }

  .jg-hero-image--small {
    height: 200px;
  }

  .jg-product-explorer {
    grid-template-columns: 1fr;
  }

  .jg-product-index {
    border-right: 0;
  }

  .jg-product-index__label,
  .jg-product-tab {
    padding-inline: 24px;
  }

  .jg-product-stage {
    grid-template-columns: minmax(240px, .8fr) minmax(260px, 1.2fr);
  }

  .jg-principle,
  .jg-role {
    grid-template-columns: 70px 1fr;
    padding-block: 26px;
  }

  .jg-principle p,
  .jg-role p {
    grid-column: 2;
  }

  .jg-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jg-news-preview,
  .jg-status-board {
    grid-template-columns: 1fr;
  }

  .jg-news-preview__title,
  .jg-status-board__intro {
    border-right: 0;
  }

  .jg-news-list,
  .jg-status-rows {
    padding-left: 0;
  }

  .jg-business-band__action {
    justify-self: start;
  }

  .jg-page-hero__visual {
    margin-bottom: 28px;
  }

  .jg-brand-showcase {
    grid-template-columns: 1fr;
  }

  .jg-brand-showcase__large,
  .jg-brand-showcase__small {
    min-height: 500px;
  }

  .jg-contact-copy {
    position: static;
  }

  .jg-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .jg-container {
    width: min(var(--jg-container), calc(100% - 32px));
  }

  .jg-section {
    padding-block: 68px;
  }

  .jg-section-head {
    gap: 22px;
    margin-bottom: 36px;
  }

  .jg-section-head h2 {
    font-size: 34px;
  }

  .jg-nav {
    min-height: 64px;
  }

  .jg-logo {
    font-size: 17px;
  }

  .jg-logo span {
    display: none;
  }

  .jg-hero {
    padding-block: 34px 26px;
    gap: 24px;
  }

  .jg-hero-copy h1 {
    font-size: 43px;
    line-height: 1.04;
  }

  .jg-hero-tagline {
    font-size: 27px;
  }

  .jg-hero-copy > p {
    font-size: 16px;
  }

  .jg-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .jg-btn {
    min-width: 0;
    padding-inline: 14px;
    font-size: 14px;
  }

  .jg-hero-collage {
    min-height: 350px;
  }

  .jg-hero-image {
    inset: 20px 1% 0 11%;
    width: 82%;
    height: 320px;
  }

  .jg-hero-image--small {
    width: 38%;
    height: 150px;
  }

  .jg-hero-sticker {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-size: 14px;
  }

  .jg-product-index__label {
    min-height: 68px;
  }

  .jg-product-tab {
    min-height: 94px;
    grid-template-columns: 40px 1fr 34px;
  }

  .jg-product-tab__name {
    font-size: 24px;
  }

  .jg-product-stage {
    padding: 40px 20px 54px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jg-product-stage h2 {
    font-size: 34px;
  }

  .jg-principle,
  .jg-role {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .jg-principle h3,
  .jg-role h2,
  .jg-role h3 {
    font-size: 27px;
  }

  .jg-card-grid {
    grid-template-columns: 1fr;
  }

  .jg-news-preview__title {
    padding-right: 0;
  }

  .jg-news-preview__title h2 {
    font-size: 36px;
  }

  .jg-news-row {
    min-height: 120px;
    grid-template-columns: 86px 1fr 34px;
    gap: 12px;
  }

  .jg-business-band {
    padding-block: 62px;
  }

  .jg-business-band h2 {
    font-size: 38px;
  }

  .jg-page-hero {
    min-height: 0;
    padding-block: 56px;
    gap: 44px;
  }

  .jg-page-hero h1,
  .jg-shop-hero h1,
  .jg-news-hero h1,
  .jg-contact-copy h1 {
    font-size: 44px;
  }

  .jg-page-hero__visual {
    min-height: 300px;
  }

  .jg-page-hero__visual img {
    inset: 26px 7% -18px;
    width: 86%;
    height: 300px;
  }

  .jg-status-board__intro {
    padding-right: 0;
  }

  .jg-status-board__intro h2 {
    font-size: 34px;
  }

  .jg-status-row {
    min-height: 116px;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .jg-status-row strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .jg-brand-showcase__large,
  .jg-brand-showcase__small {
    min-height: 440px;
  }

  .jg-shop-toolbar {
    grid-template-columns: 1fr;
  }

  .jg-shop-note {
    grid-template-columns: 1fr;
  }

  .jg-product-modal-grid {
    grid-template-columns: 1fr;
  }

  .jg-product-modal-grid img {
    width: 100%;
  }

  .jg-news-item {
    min-height: 0;
    padding-block: 24px;
    grid-template-columns: 1fr 44px;
    gap: 10px 14px;
  }

  .jg-news-item__meta,
  .jg-news-item__source {
    grid-column: 1;
    justify-self: start;
  }

  .jg-news-item h2,
  .jg-news-item p {
    grid-column: 1;
  }

  .jg-news-item__arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .jg-contact-layout {
    gap: 52px;
  }

  .jg-contact-form {
    padding: 24px 18px;
  }

  .jg-form-row,
  .jg-radio-grid {
    grid-template-columns: 1fr;
  }

  .jg-faq summary {
    grid-template-columns: 28px 1fr 38px;
    font-size: 15px;
  }

  .jg-faq__answer {
    padding-left: 40px;
    padding-right: 12px;
  }

  .jg-footer__top {
    padding-block: 54px 36px;
  }

  .jg-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .jg-search-form {
    grid-template-columns: 1fr;
  }
}

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

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

  .jg-ticker__track {
    transform: none;
  }

  .jg-reveal {
    opacity: 1;
    transform: none;
  }
}
