@font-face {
  font-family: "Pretendard ICLO";
  src: url("fonts/pretendard-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/* ============================================================
   ICLO Global Layout System
   1200 content / 1536 desktop GNB rail / 112 section / editorial surfaces
   ============================================================ */

:root {
  /* Figma homepage (1:11) is the canonical visual system. */
  --ds-blue: #3184f6;
  --ds-blue-strong: #2175ee;
  --ds-ink: #191f28;
  --ds-body: #333d4b;
  --ds-muted: #6b7580;
  --ds-line: #d1d6db;
  --ds-surface: #f3f4f6;
  --ds-surface-soft: #f7f9fa;
  --ds-white: #fff;
  --ds-danger: #e13535;
  --ds-logo-accent: #b15a3c;
  --ds-content: 1050px;
  --ds-radius-button: 12px;
  --ds-radius-card: 24px;
  --ds-shadow-card: 0 12px 28px rgba(25, 31, 40, .14);
  --layout-max: var(--ds-content);
  --layout-gutter: 32px;
  --layout-gutter-mobile: 20px;
  --gnb-height: 60px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --editorial-white: var(--ds-white);
  --editorial-soft: var(--ds-surface-soft);
  --editorial-line: rgba(0, 27, 55, .1);
  --editorial-ink: var(--ds-ink);
  --editorial-muted: var(--ds-muted);
  --radius: var(--ds-radius-button);
  --r: 10px;
  --r-s: 8px;
  --shadow: none;

  /* Canonical typography roles. Layout breakpoints must not rescale these. */
  --font-sans: "Pretendard ICLO", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --type-display-size: clamp(44px, calc(24px + 1.6667vw), 56px);
  --type-display-line: clamp(56px, calc(36px + 1.6667vw), 68px);
  --type-heading-size: clamp(36px, calc(16px + 1.6667vw), 48px);
  --type-heading-line: clamp(48px, calc(28px + 1.6667vw), 60px);
  --type-title-size: clamp(20px, calc(10px + .8333vw), 26px);
  --type-title-line: clamp(30px, calc(20px + .8333vw), 36px);
  --type-body-lg-size: clamp(18px, calc(11.333px + .5556vw), 22px);
  --type-body-lg-line: clamp(30px, calc(23.333px + .5556vw), 34px);
  --type-body-size: clamp(16px, calc(12.667px + .2778vw), 18px);
  --type-body-line: clamp(24px, calc(19px + .4167vw), 27px);
  --type-body-sm-size: 15px;
  --type-body-sm-line: 23px;
  --type-label-size: 14px;
  --type-label-line: 20px;
  --type-caption-size: 13px;
  --type-caption-line: 20px;
  --type-micro-size: 12px;
  --type-micro-line: 18px;
  --type-weight-regular: 400;
  --type-weight-medium: 500;
  --type-weight-semibold: 600;
  --type-weight-bold: 700;
  --type-tracking-display: -.02em;
  --type-tracking-heading: -.015em;
  --type-tracking-title: -.01em;
}

html {
  scroll-padding-top: calc(var(--gnb-height) + 16px);
  color-scheme: light;
}
body {
  color: var(--editorial-ink);
  background: var(--editorial-white);
  font-family: var(--font-sans);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-weight-regular);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
[id] { scroll-margin-top: 0; }
.wrap {
  width: 100%;
  max-width: calc(var(--layout-max) + (var(--layout-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}
.section-wrap {
  width: min(var(--layout-max), calc(100vw - (var(--layout-gutter) * 2)));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--ds-ink);
}
.skip-link:focus,
.skip-link:focus-visible { top: 16px; }
:focus-visible {
  outline: 2px solid var(--ds-blue);
  outline-offset: 3px;
}

/* ---------- Global GNB ---------- */
.global-gnb {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: var(--gnb-height);
  color: var(--editorial-ink);
  background: #fff;
  border-bottom: 1px solid var(--editorial-line);
  font-family: var(--font-sans);
  line-height: 1;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.global-gnb.is-overlay {
  color: #fff;
  background: rgba(20, 23, 21, .18);
  border-bottom-color: rgba(255, 255, 255, .16);
}
body[data-mode="night"] .global-gnb:not(.is-overlay) {
  color: #f1f5f9;
  background: rgba(11, 13, 18, .9);
  border-bottom-color: rgba(255, 255, 255, .11);
}
.global-gnb__inner {
  width: min(var(--layout-max), calc(100% - (var(--layout-gutter) * 2)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.global-gnb__logo {
  flex: 0 0 auto;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 800;
}
.global-gnb__logo i { color: var(--ds-logo-accent); font-style: normal; }
.global-gnb__desktop { display: flex; align-items: center; gap: 40px; margin-left: auto; }
.global-nav-group { position: relative; }
.global-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  color: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--type-weight-semibold);
  white-space: nowrap;
  opacity: 1;
  transition: opacity .2s ease;
}
.global-nav-link:hover,
.global-nav-link:focus-visible,
.global-nav-group.is-current > .global-nav-link,
.global-nav-link[aria-current="page"] { color: var(--ds-ink); opacity: 1; }
.global-nav-group.is-current > .global-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--ds-blue);
}
.global-nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--ds-blue);
}
.global-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 188px;
  padding: 8px;
  color: var(--editorial-ink);
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--editorial-line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(30, 29, 26, .08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.global-nav-dropdown::before { content: ""; position: absolute; inset: -11px 0 auto; height: 11px; }
.global-nav-group:hover .global-nav-dropdown,
.global-nav-group:focus-within .global-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.global-nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--editorial-muted);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: var(--type-weight-medium);
  white-space: nowrap;
}
.global-nav-dropdown a:hover,
.global-nav-dropdown a:focus-visible,
.global-nav-dropdown a[aria-current="page"] { color: var(--editorial-ink); background: #f3f2ef; }
.global-gnb__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  height: 44px;
  margin-left: -22px;
  padding: 0 20px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: var(--type-weight-semibold);
  transition: background .2s ease;
}
.global-gnb__cta:hover { background: #20252b; }
.global-gnb__cta[aria-current="page"] { background: #20252b; }
.global-gnb__language {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #b0b8c1;
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  white-space: nowrap;
}
.global-gnb__language a:first-child { color: var(--ds-body); }
.global-gnb__language i { width: 1px; height: 16px; background: var(--ds-line); }
.global-gnb__language a:hover,
.global-gnb__language a:focus-visible { color: var(--ds-blue); }
.global-gnb__menu-button { display: none; }
.global-gnb__mobile { display: none; }

/* Use a full-width corporate navigation scale on desktop. */
@media (min-width: 901px) {
  :root {
    --gnb-height: 96px;
    --gnb-rail: 1536px;
  }

  .global-gnb__inner {
    width: min(var(--gnb-rail), calc(100% - 96px));
    gap: 48px;
  }
  .global-gnb__logo { font-size: 28px; }
  .global-gnb__desktop {
    flex: 1;
    gap: 48px;
    margin-left: 0;
  }
  .global-nav-link {
    min-height: 44px;
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--type-weight-semibold);
  }
  .global-nav-link[aria-current="page"]::after,
  .global-nav-group.is-current > .global-nav-link::after { bottom: -26px; height: 2px; }
  .global-nav-dropdown { top: calc(100% + 26px); }
  .global-nav-dropdown::before { inset: -27px 0 auto; height: 27px; }
  .global-gnb__cta {
    min-width: 96px;
    height: 44px;
    margin-left: auto;
    padding: 0 20px;
    font-size: var(--type-label-size);
    font-weight: var(--type-weight-semibold);
  }
}

/* ---------- Layout standards ---------- */
.pad-s,
.section-pad { padding-block: var(--section-space); }
.page-head {
  padding: calc(var(--gnb-height) + 68px) 0 92px;
  border-bottom: 1px solid var(--editorial-line);
}
.page-head .h-sec,
.company-heading h1,
.ceo-heading h1,
.subpage-head h1 {
  max-width: 920px;
  font-size: var(--type-display-size);
  line-height: var(--type-display-line);
  letter-spacing: var(--type-tracking-display);
  font-weight: var(--type-weight-bold);
}
.page-head .h-sec,
.subpage-head h1 { margin: 0; }
.page-head .hero-statement,
.subpage-head .hero-statement {
  max-width: 920px;
  margin: 30px 0 0;
  color: var(--editorial-ink);
  font-family: var(--font-display);
  font-size: var(--type-heading-size);
  line-height: var(--type-heading-line);
  letter-spacing: var(--type-tracking-heading);
  font-weight: var(--type-weight-bold);
}
.page-head .hero-statement.sage { color: #3f645e; }
.page-head .lede {
  max-width: 65ch;
  margin: 30px 0 0;
  color: var(--editorial-muted);
}
.page-head .hero-ctas { margin-top: 34px; }
.page-head .hero-note { max-width: 65ch; margin-top: 22px; }
.subpage-head .hero-statement + p {
  max-width: 65ch;
  margin: 28px 0 0;
  color: var(--editorial-muted);
}
.company-mv { padding: calc(var(--gnb-height) + 36px) 0 84px; }
.ceo-intro { padding: calc(var(--gnb-height) + 68px) 0 104px; }
.company-journey,
.company-locations,
.ceo-principle,
.ceo-closing,
.contact-section,
.faq-section { padding-block: var(--section-space); }
.mv-editorial { margin-top: 0; }
.ceo-editorial { margin-top: 72px; }
.tint-a { background: var(--editorial-white); }
.tint-b { background: var(--editorial-soft); }
.tint-sage { background: #f1f6f4; }
.h-sub {
  font-size: var(--type-heading-size);
  line-height: var(--type-heading-line);
  letter-spacing: var(--type-tracking-heading);
  font-weight: var(--type-weight-bold);
}
.copy > p,
.lede,
.section-heading > p,
.news-head > p { max-width: 65ch; }
.eyebrow {
  gap: 0;
  color: #747168;
  font-size: var(--type-micro-size);
  line-height: var(--type-micro-line);
  font-weight: var(--type-weight-semibold);
  letter-spacing: .04em;
  text-transform: none;
}
.eyebrow::before { display: none; }
.flist li { padding-left: 18px; }
.flist li::before { content: "–"; left: 0; color: #747168; }
.frame,
.location-map,
.contact-form {
  border-color: var(--editorial-line);
  border-radius: 8px;
  box-shadow: none;
}
.frame img { border-radius: 0; }
.btn {
  min-height: 48px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--type-weight-semibold);
}
.btn-ghost { background: transparent; }

/* Product and service imagery stays factual and lightly framed. */
.search-window,
.connect-window,
.product-shot,
.app-photo {
  border-radius: 8px;
  box-shadow: none;
}
.float-note { display: none; }
.service-points { gap: 10px 18px; }
.service-points span {
  position: relative;
  padding: 0 0 0 14px;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .68);
  font-weight: 500;
}
.service-points span::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, .42);
}
.hero-scene {
  padding-inline: max(var(--layout-gutter), calc((100vw - var(--layout-max)) / 2));
}
.hero-progress {
  left: max(var(--layout-gutter), calc((100vw - var(--layout-max)) / 2));
  right: max(var(--layout-gutter), calc((100vw - var(--layout-max)) / 2));
}

/* ---------- Main page editorial treatment ---------- */
.proof { background: var(--editorial-white); }
.proof-grid { margin-top: 72px; }
.news { background: var(--editorial-soft); }
.news-grid { gap: 28px; margin-top: 58px; }
.news-card {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.news-card:hover { transform: none; box-shadow: none; }
.news-card:focus-visible { outline-offset: 8px; }
.news-art,
.featured .news-art { height: 230px; margin-top: 18px; border-radius: 8px; }
.news-copy { padding: 24px 0 0; }
.next-links { padding-top: 0; background: var(--editorial-white); }
.next-grid { gap: 48px; }
.next-card,
.next-card.dark {
  min-height: 300px;
  padding: 36px 0 0;
  border-top: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
  color: var(--editorial-ink);
}
.next-card::after { display: none; }
.next-card h2 { margin-top: 34px; }
.next-card.dark p { color: var(--editorial-muted); }
.next-card > i,
.next-card.dark > i { right: 0; top: 26px; background: #f0efeb; }
.footer-cta {
  padding-block: var(--section-space);
  color: var(--editorial-ink);
  background: var(--editorial-soft);
  border-top: 1px solid var(--editorial-line);
}
.footer-cta p { color: var(--editorial-muted); }
.footer-cta a { background: #b15a3c; color: #fff8f4; }

/* ---------- Product-first page introductions ---------- */
.product-page-head {
  min-height: min(860px, 100svh);
  padding: calc(var(--gnb-height) + 58px) 0 64px;
  background: #f7f7f5;
}
.product-page-head.sage-product { background: #f1f6f4; }
.product-head-grid {
  display: grid;
  grid-template-columns: minmax(340px, 4fr) minmax(540px, 7fr);
  align-items: center;
  gap: clamp(54px, 6vw, 92px);
}
.product-head-copy { min-width: 0; }
.product-page-head .h-sec {
  margin: 0;
  color: var(--editorial-ink);
  font-size: var(--type-display-size);
  line-height: var(--type-display-line);
  letter-spacing: var(--type-tracking-display);
  font-weight: var(--type-weight-bold);
}
.product-page-head .hero-statement {
  max-width: 620px;
  margin-top: 40px;
  font-size: var(--type-heading-size);
  line-height: var(--type-heading-line);
  letter-spacing: var(--type-tracking-heading);
  font-weight: var(--type-weight-bold);
}
.product-page-head .lede {
  max-width: 48ch;
  margin-top: 28px;
  color: var(--editorial-muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}
.product-page-head .hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.product-page-head .hero-note {
  margin: 19px 0 0;
  color: var(--editorial-muted);
  font-size: var(--type-caption-size);
  line-height: var(--type-caption-line);
}
.product-page-head .badge { display: inline-flex; margin-top: 18px; }
.product-head-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--editorial-line);
  border-radius: 8px;
  background: #fff;
}
.product-visual-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--editorial-line);
  color: var(--editorial-muted);
  background: rgba(255,255,255,.94);
  font: 600 10px/1 var(--mono, ui-monospace, monospace);
  letter-spacing: .09em;
}
.product-visual-bar em { color: #49756d; font-style: normal; }
.product-head-visual > img {
  width: 100%;
  height: clamp(390px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
}
.product-head-visual figcaption {
  min-height: 46px;
  padding: 13px 16px;
  border-top: 1px solid var(--editorial-line);
  color: var(--editorial-muted);
  background: #fff;
  font-size: var(--type-caption-size);
  line-height: var(--type-caption-line);
}
.arrange-head-visual > img { object-position: 50% 50%; }
.connect-head-visual > img { object-position: 34% 68%; }
.app-head-visual > img { object-position: 50% 55%; }
.public-head-visual > img { object-position: 50% 50%; }

.alaseo-hero-ui {
  display: grid;
  align-content: center;
  min-height: clamp(390px, 42vw, 520px);
  padding: clamp(28px, 4vw, 52px);
  background: #f4f1eb;
}
.alaseo-hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--editorial-line);
}
.alaseo-hero-search b,
.alaseo-hero-answer > b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #b15a3c;
  color: #fff;
  font-size: 17px;
}
.alaseo-hero-search span { color: var(--editorial-muted); font-size: 12px; }
.alaseo-hero-search i { margin-left: auto; color: #49756d; font: 700 9px/1 var(--mono, ui-monospace, monospace); font-style: normal; letter-spacing: .1em; }
.alaseo-hero-question {
  width: 82%;
  margin: 26px 0 22px auto;
  padding: 15px 18px;
  border-radius: 14px 14px 3px 14px;
  background: #e7e2d9;
  font-size: 13px;
  font-weight: 600;
}
.alaseo-hero-answer { display: flex; align-items: flex-start; gap: 12px; }
.alaseo-hero-answer > b { width: 27px; height: 27px; border-radius: 7px; background: #ead7cd; color: #a94f32; font-size: 13px; }
.alaseo-hero-answer p { margin: 0; color: #55524c; font-size: 13px; line-height: 1.7; }
.alaseo-hero-answer strong { color: #a94f32; }
.alaseo-hero-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 0 39px;
  padding: 15px 16px;
  border: 1px solid var(--editorial-line);
  border-radius: 8px;
  background: #fff;
}
.alaseo-hero-result span { display: grid; gap: 2px; }
.alaseo-hero-result small { color: var(--editorial-muted); font-size: 9px; }
.alaseo-hero-result strong { font-size: 13px; }
.alaseo-hero-result em { padding: 8px 11px; border-radius: 999px; background: #b15a3c; color: #fff; font-size: 9px; font-style: normal; font-weight: 700; }

/* ---------- Standalone pages ---------- */
.subpage { padding-top: var(--gnb-height); }
.subpage-head { padding: 104px 0 88px; background: var(--editorial-white); border-bottom: 1px solid var(--editorial-line); }
.contact-section,
.faq-section { background: var(--editorial-white); }
.contact-form { padding: 38px; }
.contact-form input,
.contact-form select,
.contact-form textarea { border-radius: 8px; background: #fff; }
.faq-head { background: #f1f6f4; }
.faq-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}
.faq-index {
  position: sticky;
  top: calc(var(--gnb-height) + 32px);
  display: grid;
  gap: 4px;
}
.faq-index a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--editorial-muted);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: var(--type-weight-semibold);
}
.faq-index a:hover,
.faq-index a:focus-visible { color: var(--editorial-ink); }
.faq-list { min-width: 0; }
.faq-group + .faq-group { margin-top: 72px; }
.faq-group > p {
  margin: 0 0 16px;
  color: var(--editorial-muted);
  font-size: var(--type-caption-size);
  line-height: var(--type-caption-line);
  font-weight: var(--type-weight-semibold);
}
.faq-group details { border-top: 1px solid var(--editorial-line); }
.faq-group details:last-child { border-bottom: 1px solid var(--editorial-line); }
.faq-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px 0;
  color: var(--editorial-ink);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  font-weight: var(--type-weight-bold);
  list-style: none;
  cursor: pointer;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary span {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  font-weight: var(--type-weight-regular);
  transition: transform .2s ease;
}
.faq-group details[open] summary span { transform: rotate(45deg); }
.faq-group details > div {
  max-width: 65ch;
  padding: 0 48px 28px 0;
  color: var(--editorial-muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}
.faq-cta { padding: 48px 0; background: var(--editorial-soft); }
.faq-cta .section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-cta p { font-size: var(--type-body-size); line-height: var(--type-body-line); }
.faq-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--type-weight-semibold);
}
.compact-footer { padding: 40px 0; }
.compact-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 32px;
  color: rgba(241, 245, 243, .68);
  font-size: var(--type-caption-size);
  line-height: var(--type-caption-line);
}
.compact-footer .footer-bottom > p:last-child { grid-column: 1 / -1; }
.compact-footer .footer-bottom > div { display: flex; flex-wrap: wrap; gap: 20px; }

/* Company history: a concise, editorial index instead of long-form chapters. */
.company-history {
  padding: clamp(86px, 9vw, 124px) 0 clamp(94px, 10vw, 136px);
  color: var(--editorial-ink);
  background: #f6f6f3;
}
.history-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding-bottom: clamp(38px, 5vw, 58px);
  border-bottom: 2px solid var(--editorial-ink);
}
.history-heading--single { grid-template-columns: 1fr; }
.history-kicker {
  display: block;
  color: var(--sage-deep, #3f645e);
  font: var(--type-weight-semibold) var(--type-micro-size)/var(--type-micro-line) var(--mono, ui-monospace, monospace);
  letter-spacing: .1em;
}
.history-heading h2 {
  margin: 13px 0 0;
  font-size: var(--type-heading-size);
  font-weight: var(--type-weight-bold);
  line-height: var(--type-heading-line);
  letter-spacing: var(--type-tracking-heading);
}
.history-heading > p {
  margin: 0;
  color: var(--editorial-muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}
.history-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--editorial-line);
}
.history-period {
  min-width: 0;
  padding: 39px clamp(26px, 3.4vw, 48px) 38px 0;
  border-right: 1px solid var(--editorial-line);
}
.history-period + .history-period { padding-left: clamp(26px, 3.4vw, 48px); }
.history-period:last-child { padding-right: 0; border-right: 0; }
.history-period h3 {
  margin: 0 0 21px;
  color: var(--editorial-muted);
  font: var(--type-weight-semibold) var(--type-caption-size)/var(--type-caption-line) var(--mono, ui-monospace, monospace);
  letter-spacing: .08em;
}
.history-period ol { margin: 0; padding: 0; list-style: none; }
.history-period li {
  display: grid;
  grid-template-columns: 57px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(45, 44, 40, .11);
}
.history-period time {
  color: var(--editorial-ink);
  font: var(--type-weight-semibold) var(--type-body-lg-size)/var(--type-body-lg-line) var(--font-display);
  letter-spacing: -.025em;
}
.history-period strong {
  display: block;
  color: var(--editorial-ink);
  font-size: var(--type-body-size);
  font-weight: var(--type-weight-semibold);
  line-height: var(--type-body-line);
}
.history-period li span {
  display: block;
  margin-top: 6px;
  color: var(--editorial-muted);
  font-size: var(--type-body-sm-size);
  line-height: var(--type-body-sm-line);
}
.history-archive { border-bottom: 1px solid var(--editorial-line); }
.history-archive summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  color: var(--editorial-ink);
  font-size: var(--type-label-size);
  font-weight: var(--type-weight-semibold);
  line-height: var(--type-label-line);
  list-style: none;
  cursor: pointer;
}
.history-archive summary::-webkit-details-marker { display: none; }
.history-archive-action {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--editorial-muted);
  font-weight: var(--type-weight-medium);
}
.history-archive-action i {
  color: var(--sage-deep, #3f645e);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.history-archive .when-open { display: none; }
.history-archive[open] .when-closed { display: none; }
.history-archive[open] .when-open { display: inline; }
.history-archive[open] .history-archive-action i { transform: rotate(45deg); }
.history-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 72px);
  padding: 14px 0 38px;
}
.history-archive-grid h3 {
  margin: 0 0 13px;
  color: var(--editorial-ink);
  font-size: var(--type-title-size);
  line-height: var(--type-title-line);
  font-weight: var(--type-weight-bold);
}
.history-archive-grid ul { margin: 0; padding: 0; list-style: none; }
.history-archive-grid li {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(45, 44, 40, .1);
}
.history-archive-grid time {
  color: var(--editorial-muted);
  font: var(--type-weight-semibold) var(--type-caption-size)/var(--type-caption-line) var(--mono, ui-monospace, monospace);
}
.history-archive-grid li span {
  color: var(--editorial-ink);
  font-size: var(--type-body-sm-size);
  line-height: var(--type-body-sm-line);
}

@media (max-width: 820px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  .faq-group + .faq-group { margin-top: 56px; }
  .history-heading { grid-template-columns: 1fr; gap: 24px; }
  .history-heading > p { max-width: 38em; }
  .history-overview { grid-template-columns: 1fr; }
  .history-period,
  .history-period + .history-period {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--editorial-line);
  }
  .history-period:last-child { border-bottom: 0; }
  .history-archive-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .faq-group summary { min-height: 64px; gap: 16px; }
  .faq-group details > div { padding-right: 0; }
  .faq-cta .section-wrap { align-items: flex-start; flex-direction: column; }
  .compact-footer .footer-bottom { grid-template-columns: 1fr; }
  .compact-footer .footer-bottom > p:last-child { grid-column: auto; }
  .company-history { padding: 74px 0 82px; }
  .history-heading { padding-bottom: 34px; }
  .history-heading h2 { font-size: var(--type-heading-size); }
  .history-period li { grid-template-columns: 54px minmax(0, 1fr); }
  .history-archive summary { padding: 18px 0; }
  .history-archive-grid { padding-bottom: 30px; }
}

/* Both footer implementations share one restrained night treatment. */
.site-footer,
footer.scene-night {
  color: #f1f5f3;
  background: #171a18;
}
.site-footer a,
footer.scene-night a { transition: color .2s ease; }
footer.scene-night .foot-brand,
footer.scene-night .foot-grid h4,
footer.scene-night .foot-grid a,
footer.scene-night .foot-facts,
footer.scene-night .fine { color: inherit; }
footer.scene-night .foot-grid h4,
footer.scene-night .foot-facts,
footer.scene-night .fine { opacity: .48; }
footer.scene-night .foot-grid a { opacity: .72; }
footer.scene-night .foot-grid a:hover { opacity: 1; }

@media (max-width: 900px) {
  :root { --layout-gutter: var(--layout-gutter-mobile); }
  .global-gnb__desktop { display: none; }
  .global-gnb__menu-button {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }
  .global-gnb__menu-button span,
  .global-gnb__menu-button::before {
    content: "";
    position: absolute;
    left: 11px;
    width: 22px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .22s ease, top .22s ease;
  }
  .global-gnb__menu-button::before { top: 17px; }
  .global-gnb__menu-button span { top: 26px; }
  .global-gnb.menu-open .global-gnb__menu-button::before { top: 22px; transform: rotate(45deg); }
  .global-gnb.menu-open .global-gnb__menu-button span { top: 22px; transform: rotate(-45deg); }
  .global-gnb__mobile {
    position: fixed;
    inset: var(--gnb-height) 0 0;
    overflow-y: auto;
    padding: 30px var(--layout-gutter-mobile) 40px;
    color: var(--editorial-ink);
    background: rgba(255, 255, 255, .99);
  }
  .global-gnb.menu-open {
    color: var(--editorial-ink);
    background: rgba(255, 255, 255, .99);
    border-bottom-color: var(--editorial-line);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .global-gnb.menu-open .global-gnb__mobile { display: block; }
  .global-mobile-group { display: grid; grid-template-columns: 112px 1fr; padding: 22px 0; border-top: 1px solid var(--editorial-line); }
  .global-mobile-group > span {
    color: var(--editorial-muted);
    font-size: var(--type-caption-size);
    line-height: var(--type-caption-line);
    font-weight: var(--type-weight-semibold);
  }
  .global-mobile-links { display: grid; gap: 16px; }
  .global-mobile-links a { font-size: 16px; line-height: 24px; font-weight: var(--type-weight-semibold); }
  .global-mobile-links a[aria-current="page"] { color: var(--ds-blue); }
  .global-mobile-primary {
    display: block;
    padding: 22px 0;
    border-top: 1px solid var(--editorial-line);
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--type-weight-semibold);
  }
  .global-mobile-primary[aria-current="page"] { color: var(--ds-blue); }
  .global-mobile-language {
    display: flex;
    gap: 18px;
    padding: 22px 0 0;
    border-top: 1px solid var(--editorial-line);
    color: #b0b8c1;
    font-size: var(--type-label-size);
    line-height: var(--type-label-line);
  }
  .global-mobile-language a:first-child { color: var(--ds-body); }
  .global-gnb__mobile .global-gnb__cta { width: 100%; height: 48px; margin: 24px 0 0; }
  body.gnb-open { overflow: hidden; }
  .proof .section-heading,
  .news-head { grid-template-columns: 1fr; gap: 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { display: grid; grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr); gap: 24px; padding-top: 18px; }
  .news-art,
  .featured .news-art { height: 220px; margin: 0; }
  .news-copy { padding-top: 0; }
  .hero-scene { padding-inline: var(--layout-gutter-mobile); }
  .journey-years { grid-template-columns: repeat(3, 1fr); }
  .product-page-head { min-height: auto; padding-top: calc(var(--gnb-height) + 54px); }
  .product-head-grid { grid-template-columns: 1fr; gap: 54px; }
  .product-head-copy { max-width: 760px; }
  .product-head-visual { width: 100%; }
  .product-head-visual > img,
  .alaseo-hero-ui { height: auto; min-height: 430px; }
  .contact-layout .contact-form { order: 1; }
  .contact-layout .contact-aside { order: 2; }
}

@media (max-width: 640px) {
  :root {
    --type-display-size: 44px;
    --type-display-line: 56px;
    --type-heading-size: 36px;
    --type-heading-line: 48px;
    --type-title-size: 22px;
    --type-title-line: 32px;
    --type-body-lg-size: 18px;
    --type-body-lg-line: 30px;
    --type-body-size: 16px;
    --type-body-line: 25px;
  }
}

@media (max-width: 620px) {
  :root { --section-space: var(--section-space-mobile); }
  .global-mobile-group { grid-template-columns: 84px 1fr; }
  .page-head { padding: calc(var(--gnb-height) + 62px) 0 68px; }
  .page-head .hero-statement,
  .subpage-head .hero-statement { margin-top: 24px; }
  .page-head .lede,
  .subpage-head .hero-statement + p { margin-top: 24px; }
  .company-mv { padding: calc(var(--gnb-height) + 28px) 0 60px; }
  .ceo-intro { padding: calc(var(--gnb-height) + 50px) 0 78px; }
  .mv-editorial { margin-top: 0; }
  .ceo-editorial { margin-top: 48px; }
  .news-card { grid-template-columns: 1fr; }
  .news-art,
  .featured .news-art { height: 210px; }
  .next-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 26px 20px; }
  .journey-panel { min-height: 230px; padding-top: 38px; }
  .product-page-head { padding: calc(var(--gnb-height) + 42px) 0 48px; }
  .product-page-head .hero-statement { margin-top: 28px; }
  .product-page-head .lede { margin-top: 22px; font-size: var(--type-body-size); }
  .product-page-head .hero-ctas { display: grid; }
  .product-page-head .hero-ctas .btn { justify-content: center; width: 100%; }
  .product-head-grid { gap: 40px; }
  .product-head-visual > img,
  .alaseo-hero-ui { min-height: 0; height: 300px; }
  .alaseo-hero-ui { padding: 22px 18px; }
  .alaseo-hero-search i { display: none; }
  .alaseo-hero-question { width: 92%; margin-top: 18px; padding: 12px; font-size: 11px; }
  .alaseo-hero-answer p { font-size: 11px; }
  .alaseo-hero-result { margin: 18px 0 0; }
  .alaseo-hero-result em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .global-gnb,
  .global-nav-dropdown,
  .global-gnb__menu-button span,
  .global-gnb__menu-button::before { transition: none; }
}
