/* ── CSS Variables (scoped to page wrapper) ── */
.japanlounge-page {
  --blue-50: #f2f9ff;
  --blue-100: #bcdcff;
  --blue-200: #8fc5ff;
  --blue-400: #237bd9;
  --blue-500: #005cbf;
  --blue-800: #003166;
  --cyan-50: #ebffff;
  --cyan-100: #d3ffff;
  --cyan-500: #1adfdf;
  --cyan-600: #11cbcb;
  --cyan-700: #0ea6a6;
  --cyan-800: #0b8080;
  --yellow-100: #fff3c5;
  --yellow-200: #ffe789;
  --yellow-300: #ffe064;
  --yellow-400: #ffd942;
  --yellow-500: #fdd01c;
  --yellow-600: #f3c50e;
  --yellow-700: #e0b507;
  --yellow-800: #cea500;
  --red-100: #ffdcdc;
  --red-500: #ee5f5f;
  --red-600: #e24545;
  --red-800: #c21313;
  --orange-500: #ff8800;
  --green-600: #43a047;
  --gray-50: #fafafa;
  --gray-60: #f1f1f1;
  --gray-100: #e0e0e0;
  --gray-200: #c7c7c7;
  --gray-400: #949494;
  --gray-500: #7a7a7a;
  --gray-700: #464646;
  --gray-800: #333333;
  --blue-gray-50: #f9fafc;
  --blue-gray-200: #d6e1f0;
  --blue-gray-300: #b2c2d4;
  --blue-gray-400: #8ea3b9;
  --blue-gray-600: #6c8196;
  --blue-gray-700: #5e748a;
  --blue-gray-800: #50667d;

  --brand-blue: var(--blue-500);
  --brand-blue-dark: var(--blue-800);
  --brand-cyan: var(--cyan-500);
  --brand-cyan-dark: var(--cyan-700);

  --teal: var(--cyan-700);
  --teal-dark: var(--cyan-800);
  --teal-light: var(--cyan-100);
  --teal-50: var(--cyan-50);
  --blue: var(--blue-500);
  --blue-dark: var(--blue-800);
  --blue-light: var(--blue-50);

  --ink: var(--gray-800);
  --ink-1: var(--gray-800);
  --ink-2: var(--gray-700);
  --ink-3: var(--gray-500);
  --ink-4: var(--gray-400);
  --ink-5: var(--gray-200);

  --line: var(--gray-100);
  --line-soft: var(--gray-60);

  --bg: #ffffff;
  --bg-soft: var(--blue-gray-50);
  --bg-paper: var(--gray-50);

  --beige: var(--yellow-100);
  --beige-2: var(--yellow-200);
  --yellow-soft: var(--yellow-100);
  --yellow: var(--yellow-500);

  --jp-red: var(--red-600);
  --warn: var(--orange-500);
  --success: var(--green-600);
  --error: var(--red-600);

  font-family: "Pretendard", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  color: var(--ink-1);
  background: white;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Compensate for the fixed main GNB header */
.japanlounge-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 106px;
}
@media (max-width: 1130px) {
  .japanlounge-page { padding-top: 56px; }
}

.japanlounge-page *,
.japanlounge-page *::before,
.japanlounge-page *::after {
  box-sizing: border-box;
}

.japanlounge-page .layout {
  max-width: 1130px;
}

.japanlounge-page h1,
.japanlounge-page h2,
.japanlounge-page h3,
.japanlounge-page h4 {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

/* ── Screen reader utility ── */
.japanlounge-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Buttons ── */
.japanlounge-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.japanlounge-page .btn:hover { background: var(--bg-soft); }
.japanlounge-page .btn .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.japanlounge-page .btn .icon .path { fill: currentColor; }
.japanlounge-page .btn-primary {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}
.japanlounge-page .btn-primary:hover { background: var(--brand-blue-dark); border-color: var(--brand-blue-dark); color: white; }
.japanlounge-page .btn-teal {
  background: var(--brand-cyan-dark);
  color: white;
  border-color: var(--brand-cyan-dark);
}
.japanlounge-page .btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: white; }
.japanlounge-page .btn-kakao {
  background: #FEE500;
  color: #191919;
  border-color: #FEE500;
}
.japanlounge-page .btn-kakao:hover {
  background: #F4DC00;
  color: #191919;
  border-color: #F4DC00;
}
.japanlounge-page .btn-ghost {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.japanlounge-page .btn-ghost:hover { background: var(--bg-soft); }
.japanlounge-page .btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.japanlounge-page .btn-sm { padding: 7px 12px; font-size: 12.5px; border-radius: 6px; }

/* ── Hero ── */
.japanlounge-page .hero {
  background: var(--beige);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.japanlounge-page .hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.japanlounge-page .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--ink-5);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.japanlounge-page .hero h1 {
  font-size: 48px;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.japanlounge-page .hero h1 .accent { color: var(--brand-cyan-dark); }
.japanlounge-page .hero .lede {
  font-size: 16.5px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
}
.japanlounge-page .hero .checks {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.japanlounge-page .hero .checks span { display: flex; align-items: center; gap: 6px; }
.japanlounge-page .hero .checks svg { color: var(--brand-cyan-dark); }

.japanlounge-page .jl-v3-hero {
  background: var(--beige);
}
.japanlounge-page .jl-hero-card {
  border-radius: 12px;
}
.japanlounge-page .jl-hero-choice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.japanlounge-page .jl-hero-choice {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}
.japanlounge-page .jl-hero-choice .k {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
}
.japanlounge-page .jl-hero-choice .v {
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
}
.japanlounge-page .jl-privacy-note {
  margin: 12px 0 0;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

/* hero form card */
.japanlounge-page .hero-form {
  background: white;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 1px 2px rgba(51,51,51,0.04), 0 8px 32px rgba(51,51,51,0.08);
  border: 1px solid var(--line);
}
.japanlounge-page .hero-form .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.japanlounge-page .hero-form .head > div { min-width: 0; }
.japanlounge-page .hero-form h3 { font-size: 19px; margin-bottom: 4px; }
.japanlounge-page .hero-form .head .sub { font-size: 12.5px; color: var(--ink-3); }
.japanlounge-page .hero-form .head .badge {
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 0 auto;
}
.japanlounge-page .hero-form .row { display: flex; flex-direction: column; gap: 12px; }

/* ── Form fields ── */
.japanlounge-page .form-field {
  --jl-field-gap: 10px;
  --jl-field-sub-gap: 8px;
}
.japanlounge-page .field { display: flex; flex-direction: column; gap: 6px; }
.japanlounge-page .field-label,
.japanlounge-page .field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.japanlounge-page .form-field > .field-label {
  margin: 0 0 var(--jl-field-gap);
}
.japanlounge-page .field label .req,
.japanlounge-page .field-label .req { color: var(--jp-red); }
.japanlounge-page .field label .opt,
.japanlounge-page .field-label .opt {
  font-size: 11px;
  background: var(--bg-soft);
  color: var(--ink-3);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 4px;
}
.japanlounge-page .field-label .privacy-link {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}
.japanlounge-page .form-field > .field-label + .radio-list,
.japanlounge-page .form-field > .field-label + .segmented,
.japanlounge-page .form-field > .field-label + .check-chips,
.japanlounge-page .form-field > .field-label + .jl-program-choice-grid,
.japanlounge-page .form-field > .field-label + .field {
  margin-top: 0;
}
.japanlounge-page .form-field > .field + .help,
.japanlounge-page .form-field > .radio-list + .help,
.japanlounge-page .form-field > .segmented + .help,
.japanlounge-page .form-field > .check-chips + .help,
.japanlounge-page .form-field > .jl-program-choice-grid + .help {
  margin-top: var(--jl-field-sub-gap);
}
.japanlounge-page .form-field .other-text-wrap {
  margin-top: var(--jl-field-sub-gap);
}
.japanlounge-page .field input,
.japanlounge-page .field select,
.japanlounge-page .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .field input::placeholder,
.japanlounge-page .field textarea::placeholder { color: var(--ink-4); }
.japanlounge-page .field input:focus,
.japanlounge-page .field select:focus,
.japanlounge-page .field textarea:focus {
  border-color: var(--blue);
}
.japanlounge-page .field input:not(:focus),
.japanlounge-page .field select:not(:focus),
.japanlounge-page .field textarea:not(:focus) {
  border-color: var(--line);
  box-shadow: none;
}
.japanlounge-page .field input[readonly] {
  background: var(--bg-soft);
  color: var(--ink-2);
  cursor: default;
}
/* direct inputs in form-field (not wrapped in .field div) */
.japanlounge-page .form-field > input[type="text"],
.japanlounge-page .form-field > input[type="email"],
.japanlounge-page .form-field > input[type="tel"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .form-field > input:focus {
  border-color: var(--blue);
}
.japanlounge-page .help {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.japanlounge-page .error-text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--error);
  padding-left: 0;
  margin: 4px 0 0 0;
}
.japanlounge-page .err { color: var(--error); font-size: 11.5px; margin-top: 2px; display: none; }
.japanlounge-page .field.has-error input,
.japanlounge-page .field.has-error select,
.japanlounge-page .field.has-error textarea,
.japanlounge-page .field.has-error .select-wrap select {
  border-color: var(--error);
}

/* segmented (radio buttons styled as chips) */
.japanlounge-page .segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.japanlounge-page .segmented .seg {
  flex: 1;
  min-width: fit-content;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.japanlounge-page .segmented .seg:hover { background: var(--bg-soft); }
.japanlounge-page .segmented .seg.on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  font-weight: 600;
}

/* radio list (vertical) */
.japanlounge-page .radio-list { display: flex; flex-direction: column; gap: 8px; }
.japanlounge-page .radio-list .row,
.japanlounge-page .radio-list label.row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--ink-2);
  background: white;
  transition: all 0.12s;
  margin: 0;
}
.japanlounge-page .radio-list .row:hover,
.japanlounge-page .radio-list label.row:hover { background: var(--bg-soft); border-color: var(--ink-5); }
.japanlounge-page .radio-list .row.on,
.japanlounge-page .radio-list label.row.on { background: var(--blue-light); border-color: var(--blue); color: var(--ink); }
.japanlounge-page .radio-list .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-5);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.12s;
}
.japanlounge-page .radio-list .row.on .dot,
.japanlounge-page .radio-list label.row.on .dot {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 3px white;
}

/* check chips (multi checkbox) */
.japanlounge-page .check-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.japanlounge-page .check-chips .chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  background: white;
  font-weight: 500;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.japanlounge-page .check-chips .chip:hover { background: var(--bg-soft); }
.japanlounge-page .check-chips .chip.on {
  background: var(--blue-light);
  color: var(--ink);
  border-color: var(--blue);
  font-weight: 500;
}
.japanlounge-page .check-chips .chip.on::before {
  content: none;
}

/* select with caret */
.japanlounge-page .select-wrap { position: relative; }
.japanlounge-page .select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.japanlounge-page .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 36px 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  transition: all 0.15s;
}
.japanlounge-page .select-wrap select:focus {
  border-color: var(--blue);
}

/* ── 자체 드롭다운 (js-select) ── */
.japanlounge-page .select-area {
  position: relative;
  height: auto;
}
.japanlounge-page .select-area::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.japanlounge-page .select-area input.js-value,
.japanlounge-page .field .select-area input.js-value[readonly] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 36px 11px 13px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: var(--ink-1);
  outline: none;
  cursor: pointer;
  transition: all 0.15s;
}
.japanlounge-page .select-area input.js-value:focus {
  border-color: var(--blue);
}
.japanlounge-page .select-area .js-value::placeholder {
  color: var(--ink-4);
}
.japanlounge-page .field.has-error .select-area .js-value {
  border-color: var(--error);
}
.japanlounge-page .select-area .select-list {
  display: none;
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 6px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
  height: auto;
}
.japanlounge-page .select-area .select-list.d-active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.japanlounge-page .select-area .select-list .btn-select-item {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.5;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.japanlounge-page .select-area .select-list .btn-select-item:hover {
  background: var(--bg-soft);
  color: var(--ink-1);
  font-weight: 400;
}
.japanlounge-page .select-area .select-list .btn-select-item.d-active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
}

/* ── Section frame ── */
.japanlounge-page .section {
  padding: 88px 0;
  border-bottom: none;
}
.japanlounge-page .section-services { padding-bottom: 64px; }
.japanlounge-page .section .hd { text-align: center; margin-bottom: 48px; }
.japanlounge-page .section .hd .eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.japanlounge-page .section .hd h2 {
  font-size: 36px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.japanlounge-page .section .hd p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Service cards ── */
.japanlounge-page .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.japanlounge-page .service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  background: white;
  transition: all 0.2s;
}
.japanlounge-page .service-card:hover {
  border-color: var(--ink-5);
  box-shadow: 0 4px 20px rgba(51,51,51,0.04);
  transform: translateY(-2px);
}
.japanlounge-page .service-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.japanlounge-page .service-card.learning-card .ic {
  background: var(--yellow-soft);
  color: var(--yellow-800);
}
.japanlounge-page .service-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 17px;
  margin-bottom: 8px;
}
.japanlounge-page .service-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; margin: 0; }
.japanlounge-page .service-card .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.japanlounge-page .service-card .service-card-link:link,
.japanlounge-page .service-card .service-card-link:visited {
  color: var(--brand-blue);
}
.japanlounge-page .service-card .service-card-link:hover,
.japanlounge-page .service-card .service-card-link:active,
.japanlounge-page .service-card .service-card-link:focus {
  color: var(--brand-blue-dark);
  text-decoration: none;
}
.japanlounge-page .service-card .service-card-link .icon {
  width: 13px;
  height: 13px;
  margin-top: 1px;
}
.japanlounge-page .service-card .service-card-link .path {
  fill: currentColor;
}

/* ── v3 program cards ── */
.japanlounge-page .jl-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.japanlounge-page .jl-program-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.japanlounge-page .jl-program-card-aiit {
  background: var(--yellow-100);
  border-color: var(--yellow-200);
}
.japanlounge-page .jl-program-card-aiit .num {
  color: var(--blue);
}
.japanlounge-page .jl-program-card .num,
.japanlounge-page .jl-board-eyebrow {
  color: var(--brand-cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.japanlounge-page .jl-program-card h4 {
  font-size: 23px;
}
.japanlounge-page .jl-program-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.japanlounge-page .jl-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.japanlounge-page .co-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.japanlounge-page .jl-program-card .btn {
  margin-top: auto;
}
.japanlounge-page .jl-program-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.japanlounge-page .jl-program-card-actions .btn {
  margin-top: 0;
}
.japanlounge-page .jl-program-card-actions .btn-ghost {
  background: white;
  color: var(--ink-2);
}
.japanlounge-page .jl-program-card-actions .btn-ghost:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.japanlounge-page .jl-disclaimer {
  margin: 26px auto 0;
  max-width: 780px;
  color: var(--ink-3);
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}
.japanlounge-page .center {
  text-align: center;
}
.japanlounge-page .jl-story-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.japanlounge-page .jl-story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  text-decoration: none;
}
.japanlounge-page .jl-story-card:hover {
  border-color: var(--ink-5);
  box-shadow: 0 10px 26px rgba(51,51,51,0.06);
}
.japanlounge-page .jl-private-chip {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--red-500);
  color: white;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.japanlounge-page .jl-cat-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--blue-gray-50);
  border: 1px solid var(--blue-gray-200);
  color: var(--blue-gray-700);
  font-size: 12px;
  font-weight: 600;
}
.japanlounge-page .jl-new-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--jp-red);
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.japanlounge-page .jl-story-card h4 {
  font-size: 17px;
}
.japanlounge-page .jl-story-card p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}
.japanlounge-page .jl-story-card .read-more {
  margin-top: auto;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}
.japanlounge-page .jl-brand-stripe {
  padding: 52px 0;
  background: var(--ink);
  color: white;
}
.japanlounge-page .jl-brand-stripe h3 {
  color: white;
  font-size: 26px;
  margin-bottom: 10px;
}
.japanlounge-page .jl-brand-stripe p {
  max-width: 820px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ── Job cards ── */
.japanlounge-page .jobs-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.japanlounge-page .jobs-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.japanlounge-page .jobs-filters .filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  background: white;
  cursor: default;
  font-weight: 500;
}
.japanlounge-page .jobs-filters .filter.on {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.japanlounge-page .jobs-toolbar .meta { font-size: 13px; color: var(--ink-3); }

.japanlounge-page .jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.japanlounge-page .jobs-grid.jobs-grid--single {
  grid-template-columns: minmax(0, calc((100% - 36px) / 3));
}
.japanlounge-page .jobs-grid.jobs-grid--double {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 36px) / 3)));
}
.japanlounge-page .job-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  text-decoration: none;
  color: inherit;
  min-height: 230px;
}
.japanlounge-page .job-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(51,51,51,0.06);
  transform: translateY(-2px);
}
.japanlounge-page .job-card .head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.japanlounge-page .job-card .logo {
  position: relative;
  flex: 0 0 96px;
  width: 96px;
  height: 48px;
  background: #fff;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.04em;
  overflow: hidden;
}
.japanlounge-page .job-card .logo .img {
  position: absolute;
  max-width: 90%;
  width: auto;
  height: 90%;
  object-fit: contain;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.japanlounge-page .job-card .co {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.japanlounge-page .job-card .co .name,
.japanlounge-page .job-card .co .where {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .co .name { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.japanlounge-page .job-card .co .where { font-size: 11.5px; color: var(--ink-4); }
.japanlounge-page .job-card .title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  height: 45px;
}
.japanlounge-page .job-card .title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.35;
  height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .language-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  height: 24px;
  overflow: hidden;
}
.japanlounge-page .job-card .tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 24px;
  font-size: 11.5px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .tag.jp { background: var(--teal-light); color: var(--teal-dark); }
.japanlounge-page .job-card .tag.hot { background: var(--red-100); color: var(--jp-red); font-weight: 700; }
.japanlounge-page .job-card .meta-row {
  display: block;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--ink-3);
}
.japanlounge-page .job-card .meta-row .deadline {
  margin: 0;
  min-width: 0;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.japanlounge-page .job-card .meta-row .deadline span.--today {
  color: var(--red-500);
  font-weight: 700;
}
.japanlounge-page .job-card .meta-row .deadline span.--tomorrow {
  color: var(--orange-500);
  font-weight: 700;
}
.japanlounge-page .job-card .meta-row .deadline span.--expired {
  color: var(--gray-400);
}
.japanlounge-page .job-card .new-mark {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--jp-red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.japanlounge-page .jobs-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 12px;
}

/* ── Stats stripe ── */
.japanlounge-page .stats-stripe {
  background: var(--ink);
  color: white;
  padding: 48px 0;
  text-align: center;
}
.japanlounge-page .stats-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}
.japanlounge-page .stats-stripe .stat .num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 4px;
}
.japanlounge-page .stats-stripe .stat .num .accent { color: var(--cyan-700); }
.japanlounge-page .stats-stripe .stat .lbl {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 500;
}

/* ── Process ── */
.japanlounge-page .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.japanlounge-page .process-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.japanlounge-page .process-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.japanlounge-page .process-card h4 { font-size: 18px; margin-bottom: 10px; }
.japanlounge-page .process-card p { font-size: 13.5px; color: var(--ink-3); margin: 0; line-height: 1.6; }

/* ── Japanese learning service ── */
.japanlounge-page .learning-section {
  padding: 0 0 88px;
}
.japanlounge-page .learning-cta {
  margin: 0;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF7ED 100%);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #FED7AA;
  box-shadow: none;
}
.japanlounge-page .learning-cta .left .tag {
  display: inline-block;
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FED7AA;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.japanlounge-page .learning-cta .left h3 {
  color: #172033;
  font-size: 24px;
  margin-bottom: 6px;
}
.japanlounge-page .learning-cta .left h3 .brand-technikaru {
  color: #9A3412;
  font-weight: 800;
}
.japanlounge-page .learning-cta .left p { font-size: 14px; color: #536071; margin: 0; }
.japanlounge-page .learning-cta .btn {
  background: #C2410C;
  border-color: #C2410C;
  color: white;
  box-shadow: 0 12px 24px rgba(194,65,12,0.16);
}
.japanlounge-page .learning-cta .btn:hover {
  background: #9A3412;
  border-color: #9A3412;
  color: white;
  box-shadow: 0 14px 30px rgba(154,52,18,0.2);
}

/* ── FAQ ── */
.japanlounge-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.japanlounge-page .faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.japanlounge-page .faq-item .q,
.japanlounge-page .faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.japanlounge-page .faq-item .q .qmark,
.japanlounge-page .faq-item .faq-q .qmark {
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-right: 10px;
  flex-shrink: 0;
}
.japanlounge-page .faq-item .q .left,
.japanlounge-page .faq-item .faq-q .left { display: flex; align-items: center; flex: 1; }
.japanlounge-page .faq-item .q .caret,
.japanlounge-page .faq-item .faq-q .caret {
  color: var(--ink-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.japanlounge-page .faq-item.open { border-color: var(--ink-5); }
.japanlounge-page .faq-item.open .a { display: block; }
.japanlounge-page .faq-item .a {
  display: none;
  padding: 16px 22px 20px 54px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  border-top: 1px solid var(--line-soft);
}

/* ── CTA strip ── */
.japanlounge-page .cta-strip {
  background: var(--cyan-700);
  color: white;
  padding: 56px 0;
}
.japanlounge-page .cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.japanlounge-page .cta-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.japanlounge-page .cta-actions .btn {
  flex: 0 0 190px;
  min-width: 190px;
}
.japanlounge-page .cta-strip h3 { font-size: 28px; color: white; margin-bottom: 6px; letter-spacing: -0.03em; }
.japanlounge-page .cta-strip p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }
.japanlounge-page .cta-strip .btn-primary {
  background: white;
  color: var(--teal-dark);
  border-color: white;
  box-shadow: 0 12px 26px rgba(14,166,166,0.26);
}
.japanlounge-page .cta-strip .btn-primary:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: 0 14px 30px rgba(51,51,51,0.28);
}
.japanlounge-page .cta-strip .btn-kakao {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.58);
}
.japanlounge-page .cta-strip .btn-kakao:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: white;
}

/* ── Form page ── */
.japanlounge-page .formpage-wrap {
  background: var(--bg-soft);
  padding: 40px 0 64px;
}
.japanlounge-page .formpage {
  max-width: 760px;
  margin: 0 auto;
}
.japanlounge-page .formpage .crumbs {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.japanlounge-page .formpage .crumbs a { color: var(--ink-3); text-decoration: none; }
.japanlounge-page .formpage .crumbs a:hover { color: var(--ink-1); }
.japanlounge-page .formpage .crumbs .sep { margin: 0 6px; color: var(--ink-4); }
.japanlounge-page .formpage h1 { font-size: 32px; letter-spacing: -0.03em; margin-bottom: 8px; }
.japanlounge-page .formpage .lede { font-size: 15px; color: var(--ink-3); margin-bottom: 28px; }
.japanlounge-page .form-alert {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.5;
}
.japanlounge-page .form-alert-error {
  border-color: var(--error);
  background: var(--red-100);
  color: var(--red-800);
}

/* Form progress */
.japanlounge-page .form-progress-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 24px;
}
.japanlounge-page .form-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-3);
}
.japanlounge-page .form-progress-head #js-progress-top {
  color: var(--ink-1);
  white-space: nowrap;
}
.japanlounge-page .form-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}
.japanlounge-page .form-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 0.2s ease;
}

/* Form card (section wrapper) */
.japanlounge-page .form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 36px;
}
.japanlounge-page .form-card .hd { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.japanlounge-page .form-card .hd h3 { font-size: 20px; margin-bottom: 4px; }
.japanlounge-page .form-card .hd p { font-size: 13.5px; color: var(--ink-3); margin: 0; }

.japanlounge-page .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.japanlounge-page .form-grid .full { grid-column: 1 / -1; }

/* Form footer (nav buttons) */
.japanlounge-page .form-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}
.japanlounge-page .form-foot-left {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}
.japanlounge-page .form-foot-right {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.japanlounge-page .form-foot-progress {
  min-width: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
}

/* Consent rows */
.japanlounge-page .consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.japanlounge-page .consent-row:last-child { border-bottom: none; }
.japanlounge-page .consent-row .cb {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ink-5);
  border-radius: 4px;
  background: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 1px;
  transition: all 0.15s;
}
.japanlounge-page .consent-row.on .cb {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.japanlounge-page .consent-row.on .cb::after { content: "✓"; font-weight: 800; font-size: 12px; }
.japanlounge-page .consent-row .body { flex: 1; font-size: 13.5px; color: var(--ink-2); }
.japanlounge-page .consent-row .body label { cursor: pointer; }
.japanlounge-page .consent-row .body .req { color: var(--jp-red); font-weight: 700; margin-right: 4px; }
.japanlounge-page .consent-row .body .opt { color: var(--ink-3); margin-right: 4px; font-weight: 500; }
.japanlounge-page .consent-row .view {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  color: var(--brand-blue);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Consent modal ── */
.japanlounge-page .jl-consent-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.japanlounge-page .jl-consent-modal.d-active {
  display: flex;
}
.japanlounge-page .jl-consent-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.46);
}
.japanlounge-page .jl-consent-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(72vh, 620px);
  overflow: auto;
  border-radius: 12px;
  background: white;
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}
.japanlounge-page .jl-consent-modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.japanlounge-page .jl-consent-modal-head h3 {
  font-size: 18px;
}
.japanlounge-page .jl-consent-close {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.japanlounge-page .jl-consent-close:hover {
  background: var(--bg-soft);
}
.japanlounge-page .jl-consent-modal-body {
  padding: 20px;
}
.japanlounge-page .jl-consent-modal-body p {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}
/* ── Story board ── */
.japanlounge-page .jl-board-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}
.japanlounge-page .jl-board-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}
.japanlounge-page .jl-board-hero h1 {
  font-size: 40px;
  margin: 8px 0 10px;
}
.japanlounge-page .jl-board-hero p {
  max-width: 660px;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
}
.japanlounge-page .jl-board-section {
  background: var(--bg-soft);
  padding: 36px 0 72px;
  flex: 1 0 auto;
}
.japanlounge-page .jl-board-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}
.japanlounge-page .jl-board-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.japanlounge-page .jl-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.japanlounge-page .jl-filter-chip:hover {
  border-color: var(--ink-5);
  color: var(--ink);
}
.japanlounge-page .jl-filter-chip.d-active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.japanlounge-page .jl-board-search {
  display: flex;
  gap: 8px;
}
.japanlounge-page .jl-board-search input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
}
.japanlounge-page .jl-board-search input:focus {
  border-color: var(--teal);
  outline: none;
}
.japanlounge-page .jl-story-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
}
.japanlounge-page .jl-story-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  text-decoration: none;
}
.japanlounge-page .jl-story-list-item:last-child {
  border-bottom: none;
}
.japanlounge-page .jl-story-list-item:hover {
  background: #fbfdff;
}
.japanlounge-page .jl-story-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.japanlounge-page .jl-story-list-item h2 {
  font-size: 19px;
  margin-bottom: 8px;
}
.japanlounge-page .jl-story-list-item p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
.japanlounge-page .jl-story-list-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: var(--ink-4);
  font-size: 12.5px;
  white-space: nowrap;
}
.japanlounge-page .jl-pagination {
  margin-top: 24px;
  text-align: center;
}
.japanlounge-page .jl-pagination .paginator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.japanlounge-page .jl-pagination .pagination-anchor,
.japanlounge-page .jl-pagination .this-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.japanlounge-page .jl-pagination .pagination-anchor:hover {
  border-color: var(--ink-5);
  color: var(--ink);
}
.japanlounge-page .jl-pagination .this-page {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.japanlounge-page .jl-empty {
  padding: 64px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  text-align: center;
}
.japanlounge-page .jl-empty h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.japanlounge-page .jl-empty p {
  color: var(--ink-3);
  margin: 0;
}

/* ── Story article ── */
.japanlounge-page .jl-article-wrap {
  background: var(--bg-soft);
  padding: 40px 0 78px;
}
.japanlounge-page .jl-article {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
}
.japanlounge-page .jl-article-head {
  padding: 34px 38px 28px;
  border-bottom: 1px solid var(--line);
}
.japanlounge-page .jl-back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.japanlounge-page .jl-back-link:hover {
  color: var(--ink);
}
.japanlounge-page .jl-article-head h1 {
  font-size: 34px;
  margin: 8px 0 12px;
}
.japanlounge-page .jl-article-head p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 16px 0 0;
}
.japanlounge-page .jl-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-4);
  font-size: 12.5px;
}
.japanlounge-page .jl-article-content {
  padding: 34px 38px;
}
.japanlounge-page .markdown-body {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1.85;
}
.japanlounge-page .markdown-body h2 {
  font-size: 24px;
  margin: 34px 0 12px;
}
.japanlounge-page .markdown-body h3 {
  font-size: 19px;
  margin: 26px 0 10px;
}
.japanlounge-page .markdown-body p {
  margin: 0 0 16px;
}
.japanlounge-page .markdown-body ul,
.japanlounge-page .markdown-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.japanlounge-page .markdown-body ul {
  list-style: none;
}
.japanlounge-page .markdown-body ol {
  list-style: decimal outside;
}
.japanlounge-page .markdown-body .task-list {
  padding-left: 0;
}
.japanlounge-page .markdown-body .task-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.japanlounge-page .markdown-body .task-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 5px 0 0;
  border: 1.5px solid var(--blue-gray-800);
  border-radius: 3px;
  background: white;
}
.japanlounge-page .markdown-body .task-list-item input[type="checkbox"]:checked {
  background: var(--blue-gray-800);
}
.japanlounge-page .markdown-body .task-list-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--blue-gray-50);
  border-bottom: 2px solid var(--blue-gray-50);
  transform: rotate(45deg);
}
.japanlounge-page .markdown-body ul:not(.task-list) > li {
  position: relative;
}
.japanlounge-page .markdown-body ul:not(.task-list) > li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: -15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-2);
}
.japanlounge-page .markdown-body ol > li::marker {
  color: var(--ink-2);
  font-weight: 600;
}
.japanlounge-page .markdown-body li {
  margin: 6px 0;
}
.japanlounge-page .markdown-body blockquote {
  margin: 22px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--blue-gray-300);
  border-radius: 0 8px 8px 0;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.japanlounge-page .markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 14px;
}
.japanlounge-page .markdown-body th,
.japanlounge-page .markdown-body td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
.japanlounge-page .markdown-body th {
  background: var(--bg-soft);
  font-weight: 800;
}
.japanlounge-page .markdown-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.japanlounge-page .jl-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 38px 36px;
  padding: 22px;
  border-radius: 12px;
}
.japanlounge-page .jl-article-cta h2 {
  font-size: 19px;
  margin-bottom: 4px;
}
.japanlounge-page .jl-article-cta p {
  font-size: 13.5px;
  margin: 0;
}
.japanlounge-page .jl-related {
  max-width: none;
  margin: 34px auto 0;
}
.japanlounge-page .jl-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.japanlounge-page .jl-related-head h2 {
  font-size: 22px;
}
.japanlounge-page .jl-related-head a {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

/* ── Done page ── */
.japanlounge-page .done-page {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  padding: 40px 0 64px;
  text-align: center;
  min-height: 0;
}
.japanlounge-page .done-page .seal {
  width: 88px;
  height: 88px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(14,166,166,0.28);
}
.japanlounge-page .done-page h1 { font-size: 36px; letter-spacing: -0.03em; margin-bottom: 12px; }
.japanlounge-page .done-page .lede {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.japanlounge-page .done-page .summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
}
.japanlounge-page .done-page .summary .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed var(--line);
}
.japanlounge-page .done-page .summary .row:last-child { border-bottom: none; }
.japanlounge-page .done-page .summary .row .k { color: var(--ink-3); }
.japanlounge-page .done-page .summary .row .v { color: var(--ink-1); font-weight: 600; }

.japanlounge-page .done-page .next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 36px auto 28px;
}
.japanlounge-page .done-page .next-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
}
.japanlounge-page .done-page .next-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}
.japanlounge-page .done-page .next-card h4 { font-size: 15px; margin-bottom: 4px; }
.japanlounge-page .done-page .next-card p { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.5; }
.japanlounge-page .done-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 520px;
}
.japanlounge-page .done-actions .btn {
  flex: 1 1 0;
  min-width: 0;
}
.japanlounge-page .done-actions .btn-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  box-shadow: none;
}
.japanlounge-page .done-actions .btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: white;
  box-shadow: none;
}
.japanlounge-page .done-actions .done-action-text { white-space: nowrap; }

/* ── Utility ── */
.japanlounge-page .muted { color: var(--ink-3); }
.japanlounge-page .divider { height: 1px; background: var(--line); margin: 24px 0; }

/* ── Responsive ── */
@media (max-width: 1130px) {
  .japanlounge-page .layout {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .japanlounge-page .hero {
    padding: 40px 0;
  }
  .japanlounge-page .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .japanlounge-page .hero h1 { font-size: 30px; }
  .japanlounge-page .section { padding: 56px 0; }
  .japanlounge-page .section-services { padding-bottom: 56px; }
  .japanlounge-page .stats-stripe {
    padding: 32px 0;
  }
  .japanlounge-page .stats-layout { gap: 20px; }
  .japanlounge-page .learning-section { padding: 0 0 56px; }
  .japanlounge-page .learning-cta {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .japanlounge-page .cta-strip {
    padding: 40px 0;
  }
  .japanlounge-page .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .japanlounge-page .cta-actions {
    justify-content: center;
  }
  .japanlounge-page .cta-actions .btn {
    flex: 1 1 190px;
  }
  .japanlounge-page .formpage-wrap { padding: 24px 0 48px; }
  .japanlounge-page .form-card { padding: 24px 20px; }
  .japanlounge-page .form-foot {
    gap: 8px;
    padding-top: 14px;
  }
  .japanlounge-page .form-foot .btn {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .japanlounge-page .done-page { padding: 32px 0 48px; }
  .japanlounge-page .done-page .next-grid { grid-template-columns: 1fr; }
  .japanlounge-page .done-actions { gap: 8px; }
  .japanlounge-page .done-actions .btn {
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    line-height: 1.35;
    text-align: center;
  }
  .japanlounge-page .section .hd h2 { font-size: 28px; }
  .japanlounge-page .jl-program-grid,
  .japanlounge-page .jl-story-card-grid {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .jl-program-card {
    min-height: auto;
    padding: 24px;
  }
  .japanlounge-page .jl-board-hero {
    padding: 40px 0;
  }
  .japanlounge-page .jl-board-hero-inner,
  .japanlounge-page .jl-board-toolbar,
  .japanlounge-page .jl-article-cta {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .jl-board-hero h1 {
    font-size: 30px;
  }
  .japanlounge-page .jl-board-search {
    max-width: none;
  }
  .japanlounge-page .jl-story-list-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .japanlounge-page .jl-story-list-side {
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
  .japanlounge-page .jl-article-head,
  .japanlounge-page .jl-article-content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .japanlounge-page .jl-article-head h1 {
    font-size: 28px;
  }
  .japanlounge-page .jl-article-cta {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 1130px) {
  .japanlounge-page .jobs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .japanlounge-page .hero .checks {
    flex-direction: column;
    gap: 8px;
  }
  .japanlounge-page .jl-hero-choice {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .japanlounge-page .jl-board-section,
  .japanlounge-page .jl-article-wrap {
    padding-top: 24px;
  }
  .japanlounge-page .jl-board-search {
    flex-direction: column;
  }
  .japanlounge-page .jl-story-list-item {
    padding: 18px;
  }
  .japanlounge-page .jl-article {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .japanlounge-page .jl-article-head,
  .japanlounge-page .jl-article-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  .japanlounge-page .jl-article-cta {
    margin-left: 18px;
    margin-right: 18px;
    padding: 18px;
  }
  .japanlounge-page .jl-consent-modal {
    padding: 14px;
  }
}

.japanlounge-page .layout {
  max-width: 1100px;
}
.japanlounge-page .hero {
  border-bottom: 0;
}
.japanlounge-page .jl-v3-hero {
  background: var(--beige);
  padding: 56px 0;
}
.japanlounge-page .hero-layout {
  gap: 48px;
}
.japanlounge-page .hero h1 {
  font-size: 48px;
  line-height: 1.15;
}
.japanlounge-page .hero .lede {
  font-size: 16.5px;
}
.japanlounge-page .hero-form {
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.08);
}
.japanlounge-page .hero-form .row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.japanlounge-page .field input,
.japanlounge-page .field select,
.japanlounge-page .field textarea,
.japanlounge-page .select-wrap select {
  font-size: 16px;
  border-color: var(--line);
}
.japanlounge-page .field input:focus,
.japanlounge-page .field select:focus,
.japanlounge-page .field textarea:focus,
.japanlounge-page .select-wrap select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.japanlounge-page .section {
  padding: 88px 0;
  border-bottom: 0;
  background: white;
}
.japanlounge-page .jl-program-section {
  background: var(--bg-soft);
}
.japanlounge-page .jl-program-section + .section {
  background: white;
}
.japanlounge-page .jl-story-preview {
  background: var(--bg-soft);
}
.japanlounge-page .jl-program-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.japanlounge-page .jl-program-card {
  border-radius: 16px;
  border-top: 4px solid var(--teal);
  min-height: 0;
  padding: 28px 26px;
}
.japanlounge-page .jl-program-card-aiit {
  background: white;
  border-color: var(--line);
  border-top-color: var(--blue);
}
.japanlounge-page .jl-program-card-aiit .num {
  color: var(--blue);
}
.japanlounge-page .jl-program-card-aiit .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.japanlounge-page .jl-program-card-aiit .btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: white;
}
.japanlounge-page .jl-program-card h4 {
  font-size: 19px;
}
.japanlounge-page .co-chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink-1);
}
.japanlounge-page .process-grid,
.japanlounge-page .jl-story-card-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.japanlounge-page .process-card,
.japanlounge-page .jl-story-card,
.japanlounge-page .form-card,
.japanlounge-page .faq-item {
  border-radius: 16px;
}
.japanlounge-page .jl-brand-stripe {
  background: var(--teal-50);
  color: var(--ink);
  padding: 44px 0;
  border-top: 0;
  border-bottom: 0;
}
.japanlounge-page .jl-brand-stripe h3 {
  color: var(--ink);
  font-size: 22px;
}
.japanlounge-page .jl-brand-stripe p {
  color: var(--ink-2);
}
.japanlounge-page .learning-section {
  padding: 88px 0;
  background: var(--bg-soft);
}
.japanlounge-page .learning-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF7ED 100%);
  border-color: #FED7AA;
  box-shadow: none;
  grid-template-columns: 1fr auto;
}
.japanlounge-page .learning-cta .left .tag {
  background: #FFF7ED;
  color: #9A3412;
  border: 1px solid #FED7AA;
}
.japanlounge-page .learning-cta .left h3 {
  color: #172033;
}
.japanlounge-page .learning-cta .left h3 .brand-technikaru {
  color: #9A3412;
  font-weight: 800;
}
.japanlounge-page .learning-cta .left p {
  color: #536071;
}
.japanlounge-page .learning-cta .btn {
  background: #C2410C;
  border-color: #C2410C;
  color: white;
  box-shadow: 0 12px 24px rgba(194,65,12,0.16);
}
.japanlounge-page .learning-cta .btn:hover {
  background: #9A3412;
  border-color: #9A3412;
  color: white;
  box-shadow: 0 14px 30px rgba(154,52,18,0.2);
}
.japanlounge-page .cta-strip {
  background: var(--teal);
}

/* stepped registration form */
.japanlounge-page .formpage-wrap {
  padding: 40px 0 64px;
  flex: 1 0 auto;
  display: flex;
  min-height: 0;
  background: var(--bg-soft);
}
.japanlounge-page .formpage-wrap .layout {
  width: 100%;
}
.japanlounge-page .form-field > input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.japanlounge-page .segmented .seg.on {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.japanlounge-page .radio-list .row.on,
.japanlounge-page .radio-list label.row.on,
.japanlounge-page .check-chips .chip.on {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--ink);
}
.japanlounge-page .radio-list .row.on .dot,
.japanlounge-page .radio-list label.row.on .dot,
.japanlounge-page .consent-row.on .cb {
  border-color: var(--blue);
  background: var(--blue);
}
.japanlounge-page .formpage {
  max-width: 720px;
}
.japanlounge-page .formpage h1 {
  font-size: 32px;
}
.japanlounge-page .form-card {
  padding: 32px 36px;
  margin-bottom: 16px;
}
.japanlounge-page .form-card .hd {
  margin-bottom: 18px;
  padding-bottom: 12px;
}
.japanlounge-page .form-card .hd h3 {
  font-size: 18px;
}
.japanlounge-page .form-section[data-section-id="step_basic"] .form-section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field {
  margin-bottom: 0 !important;
}
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="email"],
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="university"],
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="major"],
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="status"],
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="intent"],
.japanlounge-page .form-section[data-section-id="step_basic"] .form-field[data-question-id="graduation_year"] {
  grid-column: 1 / -1;
}
.japanlounge-page .jl-program-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.japanlounge-page .jl-program-choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}
.japanlounge-page .jl-program-choice-card.on {
  border-color: var(--blue);
  background: var(--blue-light);
}
.japanlounge-page .jl-program-choice-check {
  display: none;
  position: absolute;
  top: 12px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.japanlounge-page .jl-program-choice-card.on .jl-program-choice-check {
  display: flex;
}
.japanlounge-page .jl-program-choice-ic {
  font-size: 20px;
  margin-bottom: 6px;
}
.japanlounge-page .jl-program-choice-title {
  padding-right: 24px;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.japanlounge-page .jl-program-choice-desc {
  color: var(--ink-3);
  font-size: 12.5px;
  line-height: 1.55;
}
.japanlounge-page .form-foot .progress,
.japanlounge-page .form-foot .progress {
  color: var(--ink-3);
  font-size: 12.5px;
}
.japanlounge-page .jl-form-note {
  margin-top: 14px;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* board list and article */
.japanlounge-page .jl-board-hero {
  background: white;
  border-bottom: 0;
  padding: 40px 0;
}
.japanlounge-page .jl-board-hero .jl-board-crumbs {
  margin-bottom: 28px;
}
.japanlounge-page .jl-board-hero-inner {
  display: block;
}
.japanlounge-page .jl-board-crumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 10px;
}
.japanlounge-page .jl-board-crumbs a {
  color: var(--ink-3);
  text-decoration: none;
}
.japanlounge-page .jl-board-crumbs a:hover {
  color: var(--blue);
}
.japanlounge-page .jl-board-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.japanlounge-page .jl-board-section {
  background: white;
  padding: 28px 0 72px;
}
.japanlounge-page .jl-board-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.japanlounge-page .jl-filter-chip {
  min-height: 34px;
  padding: 8px 14px;
}
.japanlounge-page .jl-board-search input {
  width: 200px;
  height: 36px;
}
.japanlounge-page .jl-board-search input:focus {
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.japanlounge-page .jl-board-search .btn-primary {
  background: var(--blue-800);
  border-color: var(--blue-800);
}
.japanlounge-page .jl-story-list {
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
}
.japanlounge-page .jl-story-list-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
}
.japanlounge-page .jl-story-list-item:hover {
  background: transparent;
}
.japanlounge-page .jl-story-list-item h2 {
  font-size: 17px;
  margin-bottom: 5px;
}
.japanlounge-page .jl-story-list-side {
  justify-content: center;
}
.japanlounge-page .jl-pagination {
  margin-top: 24px;
}
.japanlounge-page .jl-pagination .paginator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink-3);
  font-size: 16px;
}
.japanlounge-page .jl-pagination .pagination-anchor,
.japanlounge-page .jl-pagination .this-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink-3);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}
.japanlounge-page .jl-pagination .pagination-anchor:hover {
  background: var(--blue-light);
  color: var(--ink-3);
}
.japanlounge-page .jl-pagination .this-page {
  background: var(--blue-800);
  color: white;
}
.japanlounge-page .jl-pagination .pagination-nav .icon {
  width: 14px;
  height: 14px;
  margin-top: -2px;
  vertical-align: middle;
}
.japanlounge-page .jl-pagination .pagination-nav .path {
  fill: var(--ink-3);
}
.japanlounge-page .jl-pagination .pagination-nav:hover .path {
  fill: var(--ink-3);
}
.japanlounge-page .jl-brand-stripe {
  background: white;
  padding: 88px 0;
}
.japanlounge-page .jl-brand-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px;
  border: 1px solid var(--blue-100);
  border-radius: 20px;
  background: linear-gradient(145deg, #FFFFFF 0%, var(--blue-50) 100%);
  box-shadow: none;
}
.japanlounge-page .jl-brand-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  border: 1px solid var(--blue-100);
  border-radius: 4px;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.japanlounge-page .jl-brand-card h3 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 8px;
}
.japanlounge-page .jl-brand-card p {
  max-width: 820px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.japanlounge-page #faq {
  background: var(--bg-soft);
}
.japanlounge-page .learning-section {
  background: white;
}
.japanlounge-page .jl-article-wrap {
  background: white;
  padding: 36px 0 72px;
}
.japanlounge-page .jl-article {
  max-width: none;
  width: 100%;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.japanlounge-page .jl-related {
  max-width: none;
}
.japanlounge-page .jl-article-head {
  padding: 0 0 20px;
}
.japanlounge-page .jl-article-head h1 {
  font-size: 30px;
  line-height: 1.3;
}
.japanlounge-page .jl-article-content {
  padding: 28px 0 0;
}
.japanlounge-page .markdown-body {
  font-size: 15.5px;
  line-height: 1.75;
}
.japanlounge-page .markdown-body .headerlink {
  display: none !important;
}
.japanlounge-page .markdown-body h1 {
  display: block;
  font-size: 26px;
  line-height: 1.35;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: 0;
}
.japanlounge-page .markdown-body h2 {
  font-size: 21px;
  margin: 34px 0 12px;
}
.japanlounge-page .jl-related .jl-story-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.japanlounge-page .jl-related .jl-story-card {
  min-height: 0;
  padding: 16px 18px;
}

@media (max-width: 1130px) {
  .japanlounge-page .layout {
    padding-left: 24px;
    padding-right: 24px;
  }
  .japanlounge-page .hero h1,
  .japanlounge-page .jl-board-hero h1 {
    font-size: 34px;
  }
  .japanlounge-page .section {
    padding: 56px 0;
  }
  .japanlounge-page .form-section[data-section-id="step_basic"] .form-section-body,
  .japanlounge-page .jl-program-choice-grid {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .form-section[data-section-id="step_basic"] .form-field {
    grid-column: 1 / -1;
  }
  .japanlounge-page .jl-board-toolbar {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .jl-board-search {
    max-width: 100%;
  }
  .japanlounge-page .jl-board-search input {
    width: 100%;
  }
  .japanlounge-page .jl-story-list-item {
    display: block;
  }
  .japanlounge-page .jl-story-list-side {
    align-items: flex-start;
    flex-direction: row;
    margin-top: 10px;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
  .japanlounge-page .jl-article-head,
  .japanlounge-page .jl-article-content {
    padding-left: 0;
    padding-right: 0;
  }
  .japanlounge-page .jl-related .jl-story-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .japanlounge-page .jl-v3-hero {
    padding: 40px 0;
  }
  .japanlounge-page .hero h1 {
    font-size: 30px;
  }
  .japanlounge-page .hero .checks {
    flex-direction: column;
  }
  .japanlounge-page .form-card {
    padding: 24px 20px;
  }
  .japanlounge-page .jl-brand-card {
    padding: 28px 22px;
    border-radius: 16px;
  }
  .japanlounge-page .jl-board-cta,
  .japanlounge-page .jl-article-cta {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── CTA consistency overrides ── */
.japanlounge-page .jl-board-cta,
.japanlounge-page .jl-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 40px 0 0;
  padding: 22px;
  border: 0;
  border-radius: 12px;
  background: var(--teal);
  color: white;
}
.japanlounge-page .jl-board-cta h2,
.japanlounge-page .jl-article-cta h2 {
  color: white;
  font-size: 19px;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.japanlounge-page .jl-board-cta p,
.japanlounge-page .jl-article-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  margin: 0;
}
.japanlounge-page .jl-board-cta .btn-primary,
.japanlounge-page .jl-article-cta .btn-primary {
  background: white;
  border-color: white;
  color: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(14,166,166,0.26);
}
.japanlounge-page .jl-board-cta .btn-primary:hover,
.japanlounge-page .jl-article-cta .btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  box-shadow: 0 14px 30px rgba(51,51,51,0.28);
}
.japanlounge-page .jl-board-crumbs,
.japanlounge-page .jl-board-crumbs a,
.japanlounge-page .jl-board-crumbs .jl-crumb-separator {
  color: var(--blue-gray-600);
}
.japanlounge-page .jl-board-crumbs a.d-current {
  color: var(--blue-dark);
  font-weight: 800;
}
.japanlounge-page .jl-board-crumbs a:hover {
  color: var(--blue-dark);
}
.japanlounge-page .jl-board-crumbs .icon {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
}
.japanlounge-page .jl-board-crumbs .path {
  fill: currentColor;
}
.japanlounge-page .jl-story-card .read-more,
.japanlounge-page .jl-related-head a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
}
.japanlounge-page .jl-story-card .read-more .icon,
.japanlounge-page .jl-related-head a .icon,
.japanlounge-page .jl-story-preview .btn-ghost .icon {
  width: 14px;
  height: 14px;
}
.japanlounge-page .jl-story-card .read-more .path,
.japanlounge-page .jl-related-head a .path,
.japanlounge-page .jl-story-preview .btn-ghost .path {
  fill: currentColor;
}
.japanlounge-page .jl-story-preview .btn-ghost {
  border-color: var(--line);
  color: var(--ink-2);
}
.japanlounge-page .jl-story-preview .btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink-2);
}
.japanlounge-page .jl-share-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 28px 0 0;
  padding: 0;
}
.japanlounge-page .jl-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-4);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
.japanlounge-page .jl-share-btn:hover {
  color: var(--ink-2);
}
.japanlounge-page .jl-share-btn svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.japanlounge-page .form-progress-fill,
.japanlounge-page .segmented .seg.on,
.japanlounge-page .radio-list .row.on .dot,
.japanlounge-page .radio-list label.row.on .dot,
.japanlounge-page .consent-row.on .cb,
.japanlounge-page .jl-program-choice-check {
  background: var(--blue);
}
.japanlounge-page .segmented .seg.on,
.japanlounge-page .radio-list .row.on,
.japanlounge-page .radio-list label.row.on,
.japanlounge-page .check-chips .chip.on,
.japanlounge-page .radio-list .row.on .dot,
.japanlounge-page .radio-list label.row.on .dot,
.japanlounge-page .consent-row.on .cb,
.japanlounge-page .jl-program-choice-card.on {
  border-color: var(--blue);
}
.japanlounge-page .radio-list .row.on,
.japanlounge-page .radio-list label.row.on,
.japanlounge-page .check-chips .chip.on,
.japanlounge-page .jl-program-choice-card.on {
  background: var(--blue-light);
}
.japanlounge-page .jl-bootcamp-hero {
  background: var(--blue-light);
  padding: 40px 0 72px;
}
.japanlounge-page .jl-bootcamp-hero .jl-board-crumbs {
  margin-bottom: 28px;
}
.japanlounge-page .jl-bootcamp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 44px;
  align-items: center;
}
.japanlounge-page .jl-bootcamp-copy {
  min-width: 0;
}
.japanlounge-page .jl-bootcamp-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.japanlounge-page .jl-bootcamp-copy h1 {
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: 0;
  margin: 0 0 18px;
}
.japanlounge-page .jl-bootcamp-copy h1 span {
  color: var(--blue-dark);
}
.japanlounge-page .jl-bootcamp-copy p {
  max-width: 660px;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 22px;
}
.japanlounge-page .jl-bootcamp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.japanlounge-page .jl-bootcamp-actions .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.japanlounge-page .jl-bootcamp-actions .btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: white;
}
.japanlounge-page .jl-bootcamp-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 700;
}
.japanlounge-page .jl-bootcamp-checks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.japanlounge-page .jl-bootcamp-checks span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.japanlounge-page .jl-bootcamp-summary {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.08);
}
.japanlounge-page .jl-bootcamp-summary h2 {
  font-size: 18px;
  margin-bottom: 14px;
}
.japanlounge-page .jl-bootcamp-summary dl,
.japanlounge-page .jl-bootcamp-summary dd {
  margin: 0;
}
.japanlounge-page .jl-bootcamp-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.japanlounge-page .jl-bootcamp-summary dl > div:last-child {
  border-bottom: 0;
}
.japanlounge-page .jl-bootcamp-summary dt {
  color: var(--ink-3);
  font-size: 13px;
}
.japanlounge-page .jl-bootcamp-summary dd {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 800;
  text-align: right;
}
.japanlounge-page .jl-blue-eyebrow,
.japanlounge-page .jl-blue-num {
  color: var(--blue) !important;
}
.japanlounge-page .jl-bootcamp-soft {
  background: var(--bg-soft);
}
.japanlounge-page.jl-bootcamp-page .jl-bootcamp-soft .process-card {
  background: white;
}
.japanlounge-page .jl-bootcamp-stat-grid,
.japanlounge-page .jl-bootcamp-two-col,
.japanlounge-page .jl-feature-grid {
  display: grid;
  gap: 18px;
}
.japanlounge-page .jl-bootcamp-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.japanlounge-page .jl-bootcamp-stat,
.japanlounge-page .jl-bootcamp-card,
.japanlounge-page .jl-feature-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.japanlounge-page .jl-bootcamp-stat {
  padding: 28px 22px;
  text-align: center;
}
.japanlounge-page .jl-bootcamp-stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.japanlounge-page .jl-bootcamp-stat span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.japanlounge-page .jl-bootcamp-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.japanlounge-page .jl-bootcamp-card {
  padding: 26px 28px;
  border-top: 4px solid var(--ink-4);
}
.japanlounge-page .jl-bootcamp-card-blue {
  border-top-color: var(--blue);
}
.japanlounge-page .jl-bootcamp-card h3,
.japanlounge-page .jl-feature-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.japanlounge-page .jl-check-list,
.japanlounge-page .jl-x-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.japanlounge-page .jl-check-list li,
.japanlounge-page .jl-x-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}
.japanlounge-page .jl-check-list li::before,
.japanlounge-page .jl-x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
.japanlounge-page .jl-check-list li::before {
  content: "✓";
  color: var(--blue);
}
.japanlounge-page .jl-x-list li::before {
  content: "×";
  color: var(--ink-4);
}
.japanlounge-page .jl-week-list {
  max-width: 880px;
  margin: 0 auto;
}
.japanlounge-page .jl-week-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.japanlounge-page .jl-week-row + .jl-week-row {
  margin-top: 14px;
}
.japanlounge-page .jl-week-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  background: var(--blue);
  color: white;
}
.japanlounge-page .jl-week-row-final .jl-week-num {
  background: var(--ink);
}
.japanlounge-page .jl-week-num strong {
  font-size: 28px;
  line-height: 1;
}
.japanlounge-page .jl-week-num span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}
.japanlounge-page .jl-week-body {
  padding: 20px 24px;
}
.japanlounge-page .jl-week-body h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.japanlounge-page .jl-week-body p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}
.japanlounge-page .jl-bootcamp-note {
  max-width: 880px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  background: var(--blue-50);
}
.japanlounge-page .jl-bootcamp-note h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.japanlounge-page .jl-bootcamp-note p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.japanlounge-page .jl-bootcamp-note p + p {
  margin-top: 10px;
}
.japanlounge-page .jl-bootcamp-note-plain {
  border-color: var(--line);
  background: white;
}
.japanlounge-page .jl-salary-card {
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 30px 34px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
}
.japanlounge-page .jl-salary-card span {
  display: block;
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.japanlounge-page .jl-salary-card strong {
  display: block;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}
.japanlounge-page .jl-salary-card p {
  color: var(--ink-5);
  font-size: 13.5px;
  margin: 8px 0 0;
}
.japanlounge-page .jl-feature-grid {
  max-width: 960px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}
.japanlounge-page .jl-feature-card {
  padding: 20px 22px;
}
.japanlounge-page .jl-feature-card p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}
.japanlounge-page .jl-recruit-box {
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.japanlounge-page .jl-recruit-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.japanlounge-page .jl-recruit-row:last-child {
  border-bottom: 0;
}
.japanlounge-page .jl-recruit-row .k,
.japanlounge-page .jl-recruit-row .v {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.55;
}
.japanlounge-page .jl-recruit-row .k {
  background: var(--blue-50);
  color: var(--blue-dark);
  font-weight: 800;
}
.japanlounge-page .jl-recruit-row .v {
  color: var(--ink-2);
}
.japanlounge-page .faq-item .faq-q .jl-blue-qmark {
  background: var(--blue-100);
  color: var(--blue-dark);
}
.japanlounge-page .jl-bootcamp-cta {
  background: var(--blue);
}
.japanlounge-page .jl-bootcamp-cta .btn-primary {
  background: white;
  border-color: white;
  color: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(0,49,102,0.18);
}
.japanlounge-page .jl-bootcamp-cta .btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.japanlounge-page .jl-bootcamp-operator {
  padding: 28px 0 12px;
  background: white;
}
.japanlounge-page .jl-bootcamp-operator strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-3);
  font-size: 11.5px;
  letter-spacing: 0.08em;
}
.japanlounge-page .jl-bootcamp-operator p {
  max-width: 940px;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 1130px) {
  .japanlounge-page .jl-bootcamp-hero-grid,
  .japanlounge-page .jl-bootcamp-two-col,
  .japanlounge-page .jl-bootcamp-stat-grid,
  .japanlounge-page .jl-feature-grid {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .jl-bootcamp-copy h1 {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .japanlounge-page .done-actions {
    flex-direction: column;
    max-width: 320px;
  }
  .japanlounge-page .done-actions .btn {
    flex: none;
    width: 100%;
  }
  .japanlounge-page .jl-board-cta,
  .japanlounge-page .jl-article-cta,
  .japanlounge-page .learning-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .japanlounge-page .jl-board-cta .btn,
  .japanlounge-page .jl-article-cta .btn,
  .japanlounge-page .learning-cta .btn {
    justify-self: start;
  }
  .japanlounge-page .jl-program-card > .btn,
  .japanlounge-page .jl-board-cta .btn,
  .japanlounge-page .jl-article-cta .btn {
    justify-self: stretch;
    width: 100%;
  }
  .japanlounge-page .jl-program-card-actions,
  .japanlounge-page .jl-bootcamp-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .japanlounge-page .jl-program-card-actions .btn,
  .japanlounge-page .jl-bootcamp-actions .btn {
    width: 100%;
  }
  .japanlounge-page .jl-bootcamp-hero {
    padding: 28px 0 48px;
  }
  .japanlounge-page .jl-bootcamp-copy h1 {
    font-size: 30px;
  }
  .japanlounge-page .jl-bootcamp-copy p {
    font-size: 15px;
  }
  .japanlounge-page .jl-week-row,
  .japanlounge-page .jl-recruit-row {
    grid-template-columns: 1fr;
  }
  .japanlounge-page .jl-week-num {
    min-height: 54px;
    padding: 12px;
  }
  .japanlounge-page .jl-week-num strong {
    font-size: 22px;
  }
  .japanlounge-page .jl-week-body {
    min-height: 116px;
    padding: 22px 20px 24px;
  }
  .japanlounge-page .jl-salary-card {
    padding: 24px 22px;
  }
  .japanlounge-page .jl-salary-card strong {
    font-size: 30px;
  }
}
