@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* =========================================================
   TMIT — 티엠아이티 corporate site
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --ink:        #080A0F;
  --ink-soft:   #12161F;
  --ink-line:   rgba(255, 255, 255, .10);

  --bg:         #FFFFFF;
  --bg-muted:   #F6F7F9;
  --line:       #E5E8EE;

  --text:       #14171D;
  --text-2:     #5A6273;
  --text-3:     #8A91A0;

  /* 브랜드 팔레트 — 로고 원본에서 추출한 값 */
  --brand:      #005EFE;   /* 워드마크 'I' / 프롬프트 밑줄 */
  --brand-ink:  #0044BD;   /* hover */
  --brand-2:    #7926FD;   /* 스트릭 퍼플 */
  --brand-cyan: #00BFFE;   /* 스트릭 시안 */
  --brand-tint: #EAF1FF;

  /* 로고 스트릭 램프 — 시안 → 블루 → 퍼플 */
  --grad-brand: linear-gradient(96deg, #00BFFE 0%, #005EFE 52%, #7926FD 100%);
  --grad-brand-lift: linear-gradient(96deg, #38CBFF 0%, #6D93FF 48%, #A97BFF 100%);

  /* 제품 브랜드 — OT:DO (별도 아이덴티티, app/logos/otdo_colour_guide.png) */
  --otdo:       #1A1F3F;   /* 네이비 */
  --otdo-accent:#E15B5B;   /* 코랄 — 워드마크 콜론 */

  --radius:     14px;
  --radius-lg:  22px;

  --shadow-sm:  0 1px 2px rgba(16, 24, 40, .05);
  --shadow:     0 4px 20px -4px rgba(16, 24, 40, .10);
  --shadow-lg:  0 24px 60px -20px rgba(16, 24, 40, .22);

  --maxw:       1160px;
  --gutter:     clamp(20px, 5vw, 40px);
  --header-h:   68px;

  --ease:       cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.28; letter-spacing: -.022em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(0, 94, 254, .20); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 116px); }
.section--muted { background: var(--bg-muted); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; border-radius: 2px; flex: none;
  background: var(--grad-brand);
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { margin-top: 16px; color: var(--text-2); font-size: clamp(16px, 1.6vw, 18px); }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
/* 최대 2열 — 420px 기준이라 1160px 컨테이너에서 3열로 넘어가지 않는다 (4장 → 2×2) */
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(100deg, #005EFE 0%, #3C3AFE 66%, #6B2CFD 100%);
  color: #fff; box-shadow: 0 6px 18px -6px rgba(0, 94, 254, .55);
}
.btn--primary:hover { background: linear-gradient(100deg, #0049C7 0%, #2F2CCB 66%, #5620C9 100%); }
.btn--ghost { border-color: var(--line); color: var(--text); background: #fff; }
.btn--ghost:hover { border-color: var(--text-3); }
.btn--onDark { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.04); }
.btn--onDark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.arrow { transition: transform .18s var(--ease); }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--brand); font-size: 15px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-brand);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { height: 27px; width: auto; flex: none; }
.logo__word { font-weight: 800; font-size: 21px; letter-spacing: .005em; line-height: 1; }
.logo__word i { font-style: normal; color: var(--brand); }
.logo__lockup { height: 50px; width: auto; }

.header-right { display: flex; align-items: center; gap: 10px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--bg-muted); }
.nav a[aria-current="page"] { color: var(--text); font-weight: 600; }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; align-items: center; justify-content: center; color: var(--text);
}

@media (max-width: 880px) {
  .header-right { display: none; }
  .nav-toggle { display: inline-flex; }

  .site-nav-panel {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 26px; z-index: 99;
    display: grid; gap: 2px;
    box-shadow: var(--shadow);
    transform-origin: top;
    animation: dropIn .2s var(--ease);
  }
  .site-nav-panel[hidden] { display: none; }
  .site-nav-panel a { padding: 13px 8px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--bg-muted); }
  .site-nav-panel .btn { margin-top: 16px; justify-content: center; }
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding-block: clamp(80px, 12vw, 140px);
}
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 130%;
  background:
    radial-gradient(46% 46% at 22% 18%, rgba(0, 94, 254, .38), transparent 65%),
    radial-gradient(40% 40% at 78% 8%, rgba(121, 38, 253, .30), transparent 62%),
    radial-gradient(35% 35% at 62% 78%, rgba(0, 191, 254, .16), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 780px; }
.hero h1 {
  font-size: clamp(34px, 5.6vw, 62px); letter-spacing: -.035em; line-height: 1.16;
}
.hero h1 .accent {
  background: var(--grad-brand-lift);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  margin-top: 24px; font-size: clamp(16px, 1.9vw, 20px); line-height: 1.72;
  color: rgba(255, 255, 255, .74); max-width: 620px;
}
.hero .btn-row { margin-top: 38px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.82);
}
.hero-badge--plain { padding-left: 15px; }
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; flex: none;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .22);
}

/* page hero (sub pages) */
.page-hero { background: var(--ink); color: #fff; padding-block: clamp(58px, 8vw, 92px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: -60% -20% auto -20%; height: 200%;
  background: radial-gradient(40% 40% at 20% 30%, rgba(0, 94, 254,.32), transparent 66%),
              radial-gradient(36% 36% at 80% 20%, rgba(121, 38, 253,.24), transparent 64%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.032em; }
.page-hero p { margin-top: 16px; color: rgba(255,255,255,.7); font-size: clamp(15px, 1.7vw, 18px); max-width: 640px; }
.page-hero .eyebrow { color: #9DBBFF; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D3D9E4; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 15px; }

.card__icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(0,191,254,.16) 0%, rgba(0,94,254,.14) 52%, rgba(121,38,253,.14) 100%);
  color: var(--brand);
}
.card__icon svg { width: 23px; height: 23px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag {
  font-size: 12.5px; font-weight: 600; color: var(--text-2);
  background: var(--bg-muted); border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 999px;
}

/* numbered feature list */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 24px;
  padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.step__no { font-size: 14px; font-weight: 700; color: var(--brand); letter-spacing: .06em; padding-top: 4px; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--text-2); max-width: 640px; }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- product ---------- */
.product {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .product { grid-template-columns: 1fr; } }

/* OT:DO 제품 비주얼 — 브랜드 네이비 #1A1F3F 위의 공식 로고 */
.product__visual {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: #1A1F3F; aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
}
.product__visual picture { display: block; width: 100%; height: 100%; }
.product__visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 52%;
}

.feature-list { display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: var(--text-2); font-size: 15.5px; }
.feature-list svg { width: 20px; height: 20px; color: var(--brand); margin-top: 3px; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.info { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 480px; }
table.info th, table.info td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.info tr:last-child th, table.info tr:last-child td { border-bottom: 0; }
table.info th { width: 210px; font-weight: 600; color: var(--text-2); background: var(--bg-muted); }
table.info td { color: var(--text); }

/* ---------- timeline ---------- */
.timeline { display: grid; gap: 0; }
.timeline li {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.timeline li:first-child { border-top: 1px solid var(--line); }
.timeline .when { font-weight: 700; color: var(--brand); font-size: 15px; }
.timeline .what { color: var(--text-2); }
.timeline .what strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }
@media (max-width: 560px) { .timeline li { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- context panel (상황 · 날씨 · 기온) ---------- */
.context-panel {
  background: var(--ink); color: rgba(255,255,255,.74);
  border-radius: var(--radius-lg); padding: clamp(32px, 4.5vw, 56px);
  position: relative; overflow: hidden;
}
.context-panel::before {
  content: ""; position: absolute; inset: -60% -20% auto -20%; height: 220%;
  background: radial-gradient(36% 36% at 22% 30%, rgba(0,94,254,.32), transparent 66%),
              radial-gradient(32% 32% at 78% 24%, rgba(121,38,253,.24), transparent 64%),
              radial-gradient(28% 28% at 56% 82%, rgba(0,191,254,.16), transparent 66%);
  pointer-events: none;
}
.context-panel > * { position: relative; z-index: 1; }
.context-panel h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); }
.context-panel > p { margin-top: 16px; max-width: 640px; font-size: 16.5px; line-height: 1.75; }

.context-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px; margin-top: 38px;
}
.context-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px 24px;
}
.context-item h3 { color: #fff; font-size: 16px; margin-bottom: 10px; }
.context-item p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.66); }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip {
  font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); color: #fff;
}
.chip--accent { background: rgba(0,94,254,.24); border-color: rgba(120,170,255,.45); }

/* ---------- name story ---------- */
.name-story {
  background: var(--ink); color: rgba(255,255,255,.72);
  border-radius: var(--radius-lg); padding: clamp(32px, 4.5vw, 54px);
  display: grid; grid-template-columns: minmax(280px, .82fr) 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  position: relative; overflow: hidden;
}
.name-story::before {
  content: ""; position: absolute; inset: -60% -20% auto -20%; height: 220%;
  background: radial-gradient(38% 38% at 24% 34%, rgba(0,94,254,.34), transparent 66%),
              radial-gradient(32% 32% at 74% 26%, rgba(121,38,253,.26), transparent 64%);
  pointer-events: none;
}
.name-story > * { position: relative; z-index: 1; }
.name-story__logo { width: 100%; max-width: 420px; height: auto; }
.name-story p { margin-top: 14px; font-size: 16px; line-height: 1.78; }
.name-story strong { color: #fff; font-weight: 600; }
@media (max-width: 820px) { .name-story { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 5.5vw, 64px); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -50% -10% auto -10%; height: 200%;
  background: radial-gradient(38% 38% at 30% 30%, rgba(0, 94, 254,.36), transparent 66%),
              radial-gradient(34% 34% at 72% 40%, rgba(121, 38, 253,.28), transparent 66%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(24px, 3.2vw, 36px); }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,.7); max-width: 520px; margin-inline: auto; }
.cta-band .btn-row { margin-top: 30px; justify-content: center; }

/* ---------- form ---------- */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14.5px; font-weight: 600; }
.field .req { color: #DC2626; margin-left: 2px; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; width: 100%;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 94, 254,.14);
}
.field .hint { font-size: 13px; color: var(--text-3); }

.consent {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start;
  background: var(--bg-muted); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px;
}
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brand); }
.consent label { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.consent a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.consent__title { display: block; color: var(--text); font-weight: 600; margin-bottom: 10px; }
.consent__detail { display: grid; gap: 5px; margin-bottom: 10px; font-size: 14px; }
.consent__detail > span { display: block; }
.consent__detail b { display: inline-block; min-width: 68px; color: var(--text); font-weight: 600; }
.consent__detail i { font-style: normal; color: var(--text-3); }
.consent__note { display: block; font-size: 13.5px; color: var(--text-3); line-height: 1.65; }

.form-status {
  padding: 14px 18px; border-radius: 10px; font-size: 14.5px; font-weight: 500;
}
.form-status[hidden] { display: none; }
.form-status--ok { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-status--err { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-card { background: var(--bg-muted); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.contact-card + .contact-card { margin-top: 20px; }
.contact-card h3 { font-size: 17px; margin-bottom: 16px; }
.contact-item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 11px 0; align-items: start; }
.contact-item + .contact-item { border-top: 1px solid var(--line); }
.contact-item .ico { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); }
.contact-item .ico svg { width: 18px; height: 18px; }
.contact-item .k { display: block; font-size: 13px; color: var(--text-3); line-height: 1.5; }
.contact-item .v { display: block; font-weight: 600; font-size: 15px; line-height: 1.5; }
.contact-item .v a:hover { color: var(--brand); }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 22px; margin-top: 44px; margin-bottom: 14px; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin-top: 26px; margin-bottom: 8px; }
.prose p { color: var(--text-2); margin-bottom: 14px; }
.prose ul.bullets { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 8px; }
.prose ul.bullets li { position: relative; padding-left: 18px; color: var(--text-2); }
.prose ul.bullets li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--text-3);
}
.prose ol.numbered { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; color: var(--text-2); list-style: decimal; }
.prose .table-wrap { margin-bottom: 20px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.notice {
  background: var(--brand-tint); border: 1px solid #CFE0FF; border-radius: var(--radius);
  padding: 18px 22px; font-size: 14.5px; color: #1E3A8A; margin-bottom: 28px;
}

/* business info block — 문자열 고정 (전상법 §10 표시면) */
.biz-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px;
}
.biz-block dl { display: grid; grid-template-columns: 200px 1fr; gap: 0; margin: 0; }
.biz-block dt { font-weight: 600; color: var(--text-2); padding: 11px 0; border-bottom: 1px solid var(--bg-muted); font-size: 14.5px; }
.biz-block dd { margin: 0; padding: 11px 0; border-bottom: 1px solid var(--bg-muted); font-size: 14.5px; }
.biz-block dl > :nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 620px) {
  .biz-block dl { grid-template-columns: 1fr; }
  .biz-block dt { padding-bottom: 2px; border-bottom: 0; }
  .biz-block dd { padding-top: 0; }
}

/* ---------- footer ---------- */
.site-footer { position: relative; background: var(--ink); color: rgba(255,255,255,.62); padding-block: clamp(52px, 7vw, 76px) 40px; font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--ink-line); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { max-width: 320px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li + li { margin-top: 10px; }
.footer-col a:hover { color: #fff; }

.footer-biz { padding-block: 32px; border-bottom: 1px solid var(--ink-line); }
.footer-biz h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-biz dl {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 10px 48px; margin: 0; font-size: 13.5px; line-height: 1.65;
}
.footer-biz .row { display: grid; grid-template-columns: 196px 1fr; gap: 12px; }
.footer-biz dd { overflow-wrap: anywhere; }
.footer-biz dt { color: rgba(255,255,255,.44); }
.footer-biz dd { margin: 0; color: rgba(255,255,255,.78); }
.footer-biz a { text-decoration: underline; text-underline-offset: 2px; }
.footer-biz a:hover { color: #fff; }
@media (max-width: 480px) { .footer-biz .row { grid-template-columns: 1fr; gap: 0; } }

.footer-bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal-links a:hover { color: #fff; }
.footer-legal-links a.is-strong { color: rgba(255,255,255,.9); font-weight: 600; }

.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-brand);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer .footer-top, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}
