﻿:root {
  --ink: #1f2520;
  --muted: #687065;
  --line: #dbe2d4;
  --paper: #fffdf7;
  --soft: #f3f6ec;
  --green: #2f8f5b;
  --green-dark: #1f6e46;
  --amber: #f0b43a;
  --coral: #df6f55;
  --blue: #416f9d;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(31, 37, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 42px);
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 200px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(180px, 15vw, 240px);
  height: auto;
}

.header-menu {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 260px;
  justify-items: end;
}

.header-slogan {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 clamp(12px, 2vw, 28px);
  font-size: clamp(22px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  color: var(--green);
}

.header-right {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;
  word-break: keep-all;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 20px;
  flex: 0 1 auto;
  color: var(--green-dark);
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 850;
  white-space: nowrap;
}

.top-nav a {
  position: relative;
  padding-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: inherit;
}

.header-contact {
  width: fit-content;
  max-width: 100%;
  color: var(--green-dark);
  font-size: clamp(15px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: keep-all;
  text-align: right;
  white-space: nowrap;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--green-dark);
}

.language-switcher {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
}

.language-switcher button {
  width: 38px;
  min-height: 30px;
  padding: 3px 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-switcher button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.language-switcher button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--green);
}

/* RTL support — triggered by Google Translate's translated-rtl class on <html>
   We do NOT set dir=rtl on <html> globally to avoid breaking mobile viewport.
   Google Translate handles Arabic text direction internally. */
html {
  overflow-x: hidden;
}

html.translated-rtl body {
  text-align: right;
}

html.translated-rtl .brand,
html.translated-rtl .top-nav,
html.translated-rtl .hero-actions,
html.translated-rtl .ticker,
html.translated-rtl .meta {
  flex-direction: row-reverse;
}

/* Keep column layouts as column (not reversed) on mobile */
@media (max-width: 640px) {
  html.translated-rtl .site-header {
    flex-direction: column;
  }
}

/* Counteract Google Translate's body.style.top offset (hides content on mobile) */
html.translated-rtl body,
html.translated-ltr body {
  top: 0 !important;
}

/* WHY ticker label width for Arabic (longer text) */
html.translated-rtl .ticker {
  direction: ltr; /* keep grid layout LTR, text inside handles RTL */
}

.hero {
  --hero-gap: clamp(14px, 1.8vw, 24px);
  display: grid;
  grid-template-columns:
    63fr
    37fr;
  gap: var(--hero-gap);
  align-items: stretch;
  padding: clamp(44px, 8vw, 88px) clamp(20px, 5vw, 72px) 28px;
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  min-height: 0;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1.forced-lines {
  max-width: 100%;
  white-space: normal;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.62;
  word-break: keep-all;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  touch-action: manipulation;
}

.primary-button {
  background: var(--green);
  color: var(--white);
}

.secondary-button {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.ghost-button {
  background: transparent;
  border-color: var(--line);
  color: var(--green-dark);
}

.hero-feature {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}
/* app.js renderStaticCopy가 오늘 카드를 세팅한 뒤 is-ready로 표시 → 물통 기본카드 깜빡임 방지 */
.hero-feature.is-ready { opacity: 1; }

#feature-img-wrap {
  display: contents;
}
#feature-img-wrap.dual {
  display: flex;
  flex-direction: row;
  height: clamp(220px, 24vw, 310px);
  gap: 0;
}
#feature-img-wrap.dual img {
  width: 50%;
  height: 100%;
  padding: 0;
  background: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-feature img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 310px);
  padding: 8px;
  background: linear-gradient(135deg, #f6f8ef, #fffdf7);
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.feature-text {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  padding: clamp(10px, 1.1vw, 14px) clamp(12px, 1.5vw, 18px);
  background: var(--white);
  text-align: center;
}

.feature-text > span,
.feature-text > a[data-eyebrow-section] {
  display: block;
  color: var(--coral);
  font-weight: 800;
  line-height: 1.35;
  font-size: clamp(17px, 1.7vw, 22px);
}

.feature-text > a[data-eyebrow-section] {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: opacity 0.15s;
  pointer-events: auto;
}

.feature-text > a[data-eyebrow-section]:hover {
  opacity: 0.72;
}

.feature-text h2 span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline;
}

.feature-text h2 {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.feature-text h2.card-headline-large {
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.26;
  letter-spacing: -0.02em;
}

.feature-subtitle.card-headline-large {
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.26;
  letter-spacing: -0.02em;
}

.hero-feature img.photo {
  object-fit: cover;
  background: none;
}

/* ── STORYVALUE CENTER card (2번 카드) ── */
.hero-feature-new {
  overflow-y: auto;
  pointer-events: auto;
}

.storyvalue-badge {
  display: block;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.14em;
  padding: 9px 14px;
  text-transform: uppercase;
  font-family: "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  flex: 0 0 auto;
}

.va-images {
  flex: 0 0 53%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.va-images img {
  flex: 1;
  width: 100%;
  height: 0;
  min-height: 0;
  object-fit: cover;
  padding: 0;
  background: none;
  display: block;
}

.storyvalue-forum {
  flex: 1;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: clamp(10px, 1vw, 14px) clamp(12px, 1.5vw, 18px);
  text-align: center;
  background: var(--white);
}

.forum-section-label {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.forum-date {
  font-size: clamp(11px, 1.1vw, 14px);
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

.forum-title {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.forum-instructor {
  font-size: clamp(11px, 1.1vw, 14px);
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

/* ── 팝업 광고 ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.popup-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: min(570px, 92vw);
  position: relative;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.28);
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  line-height: 1;
}
.popup-close:hover { background: rgba(0, 0, 0, 0.7); }
.popup-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.popup-body {
  padding: 26px 32px 18px;
  text-align: center;
}
.popup-eyebrow {
  font-size: 15px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.6;
}
.popup-eyebrow-sub {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.85;
}
.popup-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.popup-date {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 6px;
}
.popup-instructor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 0;
}
.popup-instructor-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--green-light, #e0ede5);
}
.popup-instructor-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.popup-instructor-info strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.popup-instructor-info span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.popup-footer {
  padding: 16px 32px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.popup-skip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.popup-skip input[type="checkbox"] { cursor: pointer; -webkit-appearance: checkbox; appearance: checkbox; flex: 0 0 auto; width: 13px; height: 13px; min-width: 0; margin: 0; padding: 0; border: 0; background: none; }

/* === 네 팝업 가로 겹침 레이아웃 === */
.popup-dual-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}
.popup-card-sf,
.popup-card-aug,
.popup-card-aug21,
.popup-card-sep,
.popup-card-sep18,
.popup-card-sep19,
.popup-card-sep18f,
.popup-card-lee,
.popup-card-han,
.popup-card-kang,
.popup-card-kimh,
.popup-card-go,
.popup-card-ism,
.popup-card-all {
  width: min(640px, calc(50vw - 20px));
  display: flex;
  flex-direction: column;
  position: relative;
}
.popup-card-aug .popup-body,
.popup-card-aug21 .popup-body,
.popup-card-sep .popup-body,
.popup-card-sep18 .popup-body,
.popup-card-sep19 .popup-body,
.popup-card-sep18f .popup-body,
.popup-card-lee .popup-body,
.popup-card-han .popup-body,
.popup-card-kang .popup-body,
.popup-card-kimh .popup-body,
.popup-card-go .popup-body,
.popup-card-ism .popup-body {
  flex: 1;
}
.popup-card-all    { z-index: 10; width: min(460px, 92vw); height: min(660px, 92vh); height: min(660px, 92dvh); overflow: hidden; }
.popup-card-sf     { z-index: 11; width: min(480px, 92vw); }
.popup-card-sf .popup-body { flex: 1; padding: 16px 22px 10px; }
.popup-card-sf .popup-img { height: 170px; }
.popup-card-sf .popup-title { font-size: clamp(16px, 1.9vw, 20px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popup-card-sf .popup-footer { display: flex; justify-content: center !important; padding: 12px 20px 16px; }
.popup-card-sf .popup-skip { display: flex; justify-content: center; align-items: center; gap: 12px; width: 100%; text-align: center; }
.popup-card-aug    { z-index: 9; }
.popup-card-aug21  { z-index: 8; }
.popup-card-sep    { z-index: 7; }
.popup-card-sep18  { z-index: 6; }
.popup-card-sep19  { z-index: 5; }
.popup-card-sep18f { z-index: 4; }
.popup-card-lee    { z-index: 3; }
.popup-card-han    { z-index: 2; }
.popup-card-kang   { z-index: 1; }
.popup-card-kimh   { z-index: 0; }
.popup-card-go     { z-index: -1; }
.popup-card-ism    { z-index: -2; }
@media (min-width: 861px) {
  .popup-dual-wrap { display: block; position: relative; }
  .popup-card-sf,
.popup-card-aug,
  .popup-card-aug21,
  .popup-card-sep,
  .popup-card-sep18,
  .popup-card-sep19,
  .popup-card-sep18f,
  .popup-card-lee,
  .popup-card-han,
  .popup-card-kang,
  .popup-card-kimh,
  .popup-card-go,
  .popup-card-ism,
  .popup-card-all {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    transition: transform 0.2s ease;
  }
}
@media (max-width: 860px) {
  .popup-dual-wrap { flex-direction: column; align-items: center; }
  .popup-card-aug21,
  .popup-card-sep,
  .popup-card-sep18,
  .popup-card-sep19,
  .popup-card-sep18f,
  .popup-card-lee,
  .popup-card-han,
  .popup-card-kang,
  .popup-card-kimh,
  .popup-card-go,
  .popup-card-ism,
  .popup-card-all { margin-left: 0; margin-top: 0; transform: none; }
  .popup-card-sf,
.popup-card-aug,
  .popup-card-aug21,
  .popup-card-sep,
  .popup-card-sep18,
  .popup-card-sep19,
  .popup-card-sep18f,
  .popup-card-lee,
  .popup-card-han,
  .popup-card-kang,
  .popup-card-kimh,
  .popup-card-go,
  .popup-card-ism,
  .popup-card-all { width: min(360px, 90vw); }
}

/* ── 전체 일정 팝업 ── */
.popup-img-all { flex: 0 0 auto; height: 38%; min-height: 0; width: 100%; object-fit: cover; }
.popup-all-header {
  padding: 10px 24px 8px;
  text-align: center;
  border-bottom: 1.5px solid #C8940E;
  background: #fff;
  flex-shrink: 0;
}
.popup-all-title {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: #0B1F3E;
  letter-spacing: 5px;
  text-shadow: 0 1px 3px rgba(11,31,62,0.10);
  margin: 0 0 2px;
}
.popup-all-sub {
  font-size: 13px;
  color: #5A7090;
  letter-spacing: 3px;
  font-weight: 500;
  margin: 0 0 3px;
}
.popup-all-badge {
  display: inline-block;
  background: rgba(200,148,14,0.12);
  border: 1px solid rgba(200,148,14,0.5);
  color: #C8940E;
  font-size: 10px;
  padding: 3px 16px;
  letter-spacing: 1px;
}
.popup-all-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.popup-all-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.popup-all-table thead th {
  background: #0B1A2D;
  color: #C8940E;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1;
}
.popup-all-table thead th:nth-child(2) { text-align: center; }
.popup-all-table thead th:nth-child(1),
.popup-all-table thead th:nth-child(3) { text-align: center; }
.popup-all-table tbody td:nth-child(2) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
}
.popup-all-table tbody tr { cursor: pointer; }
.popup-all-table tbody tr:hover td { background: #dce8f4; }
.popup-all-table tbody td {
  padding: 7px 10px;
  border-bottom: 1px solid #edf0f3;
  vertical-align: middle;
  line-height: 1.4;
  color: #333;
}
.popup-all-table tbody tr:nth-child(even) td { background: #f7f9fc; }
.popup-all-table tbody tr:hover td { background: #e8f1f8; }
.popup-all-table td.all-date {
  white-space: nowrap;
  font-weight: 700;
  color: #0B1A2D;
  font-size: 11px;
  width: 80px;
  text-align: center;
}
.popup-all-table td.all-speaker {
  white-space: nowrap;
  color: #1A5C8A;
  font-weight: 600;
  font-size: 11px;
  width: 85px;
  text-align: center;
}

/* ── 안드로이드 모바일 팝업 수정 (2026-07-04) ──
   hover:none + pointer:coarse = 터치 기기(안드로이드+iOS 공통 기준선).
   아래 @supports(-webkit-touch-callout:none) 블록이 iOS 전용으로 추가 덮어씀.
   PC(hover:hover / pointer:fine)는 이 블록 미적용 — PC 버전 완전 보호. */
@media (hover: none) and (pointer: coarse) and (max-width: 580px) {

  /* ① SYMPOETIC SCHOOL 제목 1줄: white-space:nowrap + 폭에 맞는 폰트 */
  .popup-all-title {
    white-space: nowrap;
    font-size: clamp(14px, 4.8vw, 24px);
    letter-spacing: clamp(0.5px, 0.4vw, 3px);
  }

  /* ② 강연 리스트 스크롤 시각 표시:
        - scrollbar-width/color (Chrome 88+ 지원)
        - ::-webkit-scrollbar (구형 안드로이드 호환)
        - inset box-shadow: 아래쪽 그림자로 "더 내용 있음" 힌트 */
  .popup-all-body {
    scrollbar-width: auto;
    scrollbar-color: #0B1A2D #d0d9e8;
    box-shadow: inset 0 -22px 18px -10px rgba(11, 26, 45, 0.22);
  }
  .popup-all-body::-webkit-scrollbar { width: 7px; }
  .popup-all-body::-webkit-scrollbar-track { background: #d0d9e8; border-radius: 3.5px; }
  .popup-all-body::-webkit-scrollbar-thumb { background: #0B1A2D; border-radius: 3.5px; min-height: 36px; }

  /* ③ 개별 강연 팝업 카드 폭 교정
        기존 min(640px, calc(50vw-20px)) → 360px 폰에서 160px로 렌더되던 버그 수정.
        min(360px, 90vw): 360px 폰=324px, 412px 폰=371px, 320px 폰=288px */
  .popup-card-sf,
.popup-card-aug, .popup-card-aug21,
  .popup-card-sep, .popup-card-sep18, .popup-card-sep18f, .popup-card-sep19,
  .popup-card-han, .popup-card-lee,
  .popup-card-kang, .popup-card-kimh, .popup-card-go, .popup-card-ism {
    width: min(360px, 90vw);
  }

  /* ④ 강연 팝업 본문 패딩 축소 — 좌우 공간 확보로 제목 여백 추가 */
  .popup-body {
    padding: 22px 22px 16px;
  }

  /* ⑤ 강연 제목 2줄 이하 보장 — 폰트 축소로 3줄 방지
        clamp(16px, 4.2vw, 36px): 360px=15.1→16px, 412px=17.3px
        word-break:keep-all → 한글 단어 중간 절단 방지 */
  .popup-title {
    font-size: clamp(16px, 4.2vw, 36px);
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.35;
  }

  /* ⑦ 팅업 footer 중앙정렬 — iOS @supports 미작동 시 fallback */
  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
  }
  .popup-img {
    height: clamp(140px, 28vh, 220px);
  }
  .popup-footer {
    justify-content: center;
    padding: 10px 14px;
    min-height: 46px;
  }
  .popup-skip {
    justify-content: center;
    font-size: 12px;
    color: #0B1A2D;
    gap: 5px;
    width: 100%;
  }
}
/* ====================================================================
   iOS 사파리(아이폰) 팝업 전용 지침 (2026-07-04)
   @supports(-webkit-touch-callout:none) = iOS Safari만 매칭.
   Android Chrome(Chromium)·PC는 이 블록 미적용.
   모든 변경은 이 블록 안에서만 → PC/Android 완전 보호.

   적용 iPhone 논리 폭:
     SE(3rd)=375px · 13mini=375px · 15/16=393px · 16Pro=402px
     15Plus/16Plus=430px · 16ProMax=440px

   핸심 지침:
     1. SYMPOETIC SCHOOL 제목 항상 1줄
     2. 강연 리스트 스크롤바 시각화 (Android와 동일 스타일)
     3. 개별 강연 팝업 카드 폭 = 92vw (제목 2줄 보장)
     4. 팝업 제목 항상 2줄 이하 (펰트 자동조정)
     5. 하단 footer 중앙 정렬 (오늘하루안보기·조혜영·전화)
   ==================================================================== */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 860px) {

    /* ── 오버레이: 개별 강연 팝업이 화면보다 길 때 안전장치 ── */
    .popup-overlay {
      align-items: flex-start;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 16px 0;
    }

    /* ── SYMPOETIC SCHOOL 전체일정 팝업 (popup-card-all) ── */
    .popup-card-all {
      height: 78dvh;
      max-height: 78dvh;
    }
    .popup-img-all {
      flex: 0 0 auto;
      height: clamp(110px, 17vh, 160px);
    }

    /* ── 강연 리스트 스크롤 + 시각 표시기 (Android와 동일) ── */
    .popup-all-body {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: auto;
      scrollbar-color: #0B1A2D #d0d9e8;
      box-shadow: inset 0 -22px 18px -10px rgba(11, 26, 45, 0.22);
    }
    .popup-all-body::-webkit-scrollbar { width: 7px; }
    .popup-all-body::-webkit-scrollbar-track { background: #d0d9e8; border-radius: 3.5px; }
    .popup-all-body::-webkit-scrollbar-thumb { background: #0B1A2D; border-radius: 3.5px; min-height: 36px; }
    .popup-all-table thead th { position: sticky; top: 0; z-index: 1; }

    /* ── 지침 1: SYMPOETIC SCHOOL 항상 1줄 ── */
    .popup-all-title {
      white-space: nowrap;
      font-size: clamp(14px, 4.8vw, 24px);
      letter-spacing: clamp(0.5px, 0.4vw, 3px);
    }

    /* ── 지침 3: 개별 강연 팝업 카드 폭 교정
          기존 calc(50vw-20px)=160px 버그 → 92vw로 넓혀 2줄 제목 보장.
          SE(375px)→345px · 15(390px)→359px · ProMax(440px)→405px ── */
    .popup-card-sf,
.popup-card-aug, .popup-card-aug21,
    .popup-card-sep, .popup-card-sep18, .popup-card-sep18f, .popup-card-sep19,
    .popup-card-han, .popup-card-lee,
    .popup-card-kang, .popup-card-kimh, .popup-card-go, .popup-card-ism {
      width: min(420px, 92vw);
    }


    /* -- 개별 강연 이미지 높이 축소 (footer 항상 화면 안에) -- */
    .popup-img {
      height: clamp(140px, 28vh, 220px);
    }
    /* ── 팝업 본문 패딩 (카드 폭 활용 극대화) ── */
    .popup-body {
      padding: 22px 20px 16px;
    }

    /* ── 지침 4: 강연 제목 2줄 이하 보장
          clamp(18px, 4.8vw, 36px): SE=18px · 15Pro=18.8px · ProMax=21.1px(max36)
          word-break:keep-all → 한글 단어 중간 절단 방지 ── */
    .popup-title {
      font-size: clamp(18px, 4.8vw, 36px);
      word-break: keep-all;
      overflow-wrap: break-word;
      line-height: 1.35;
    }

    /* ── 지침 5: 하단 footer 중앙 정렬
          오늘하루안보기 · 조혜영매니저 · 전화번호를 카드 중앙에 배치.
          clamp 폰트: SE(375px)=11.25px · ProMax(440px)=13.2px(max13px) ── */
    .popup-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 14px;
      min-height: 46px;
    }
    .popup-skip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 13px;
      color: #0B1A2D;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      width: 100%;
    }
  }
}
/* ==========================================================
   모바일 공통 footer 최종 보장 (2026-07-04)
   max-width:580px 단독 조건 — iOS 17+ 포함 모든 기기 확실 매칭
   파일 최하단 = CSS 최우선. PC(>580px)에는 미적용
   ========================================================== */
@media (max-width: 580px) {
  /* 카드 폭 보장: 기본값 167px 버그 방지 */
  .popup-card-sf,
.popup-card-aug, .popup-card-aug21,
  .popup-card-sep, .popup-card-sep18, .popup-card-sep18f, .popup-card-sep19,
  .popup-card-han, .popup-card-lee,
  .popup-card-kang, .popup-card-kimh, .popup-card-go, .popup-card-ism {
    width: min(380px, 92vw);
  }
  /* 오버레이: 카드 전체 접근 + footer 항상 화면 안에 */
  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
  }
  /* 이미지 높이 축소 */
  .popup-img {
    height: clamp(140px, 28vh, 220px);
  }
  /* footer 중앙정렬 */
  .popup-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    min-height: 46px;
  }
  /* footer 텍스트: 진한 색상 + 12px + 중앙정렬 */
  .popup-skip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(11px, 3.3vw, 12px);
    color: #0B1A2D;
    gap: 5px;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
  }
}

.feature-divider {
  width: 56px;
  height: 2px;
  background: #a8cfe0;
  border: none;
  margin: 8px auto 0;
  border-radius: 2px;
}

.feature-subtitle {
  margin: 8px 0 0;
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 700;
  text-align: center;
}

.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 50px);
  width: min(100%, 1180px);
  margin: 24px auto 0;
  padding: clamp(16px, 2vw, 24px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why-trigger:focus-visible,
.why-trigger:hover {
  outline: 2px solid rgba(31, 110, 70, 0.25);
  outline-offset: 6px;
}

.why-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8b5900;
  cursor: pointer;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ticker-copy {
  display: grid;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  padding-left: 0;
  text-align: left;
}

.ticker-main {
  color: var(--green-dark);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: pre-line;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.ticker-contact {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: var(--green-dark);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: normal;
  word-break: keep-all;
}

.section-band {
  padding: 52px clamp(20px, 5vw, 72px);
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.section-heading.compact {
  display: block;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.section-card,
.article-card,
.admin-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.section-card {
  position: relative;
  min-height: 184px;
  padding: 20px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.section-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 110, 70, 0.18);
  border-radius: 50%;
  background: rgba(47, 143, 91, 0.08);
  color: var(--green-dark);
  content: ">";
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.section-card:hover,
.section-card:focus-visible {
  border-color: rgba(31, 110, 70, 0.44);
  background: #fffef8;
  box-shadow: 0 14px 34px rgba(31, 110, 70, 0.14);
  outline: none;
  transform: translateY(-3px);
}

#goto-academy {
  display: block;
  height: 0;
  visibility: hidden;
  scroll-margin-top: 72px;
}

.section-card-highlighted {
  border-color: rgba(31, 110, 70, 0.7) !important;
  background: #fffef8 !important;
  box-shadow: 0 0 0 3px rgba(31, 110, 70, 0.25), 0 14px 34px rgba(31, 110, 70, 0.18) !important;
  transform: translateY(-3px) !important;
  transition: box-shadow 0.3s, border-color 0.3s !important;
}

.section-card:hover::after,
.section-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.article-card.article-card-focused {
  border-color: rgba(31, 110, 70, 0.58);
  box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.14), 0 18px 42px rgba(31, 110, 70, 0.16);
}

.section-card b {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--green-dark);
  overflow-wrap: anywhere;
}

.section-card h3 {
  margin-bottom: 8px;
  max-width: 100%;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: normal;
}

.apple-title {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.3;
  letter-spacing: 0;
  word-break: keep-all;
  overflow: visible;
}

.apple-logo {
  flex: 0 0 auto;
  width: clamp(38px, 3.6vw, 46px);
  height: clamp(38px, 3.6vw, 46px);
  fill: currentColor;
  transform: translateY(1px);
}

.apple-equation {
  min-width: 0;
  max-width: none;
  overflow: visible;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-card p {
  margin: 0;
  color: var(--muted);
}

.ad-showcase {
  padding: 48px clamp(20px, 5vw, 72px);
  background: #fff8e8;
  border-bottom: 1px solid #ead49a;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#adGrid,
#worldclassGrid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px 12px;
  max-height: 560px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 110, 70, 0.48) rgba(255, 248, 232, 0.85);
}

#adGrid::-webkit-scrollbar,
#worldclassGrid::-webkit-scrollbar {
  width: 10px;
}

#adGrid::-webkit-scrollbar-track,
#worldclassGrid::-webkit-scrollbar-track {
  background: rgba(255, 248, 232, 0.85);
}

#adGrid::-webkit-scrollbar-thumb,
#worldclassGrid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 110, 70, 0.48);
}

.worldclass-showcase {
  background: #f4f8f1;
}

.hiddenhero-entry {
  padding: 44px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(31, 110, 70, 0.08), rgba(255, 248, 232, 0.72)),
    #f7fbf3;
}

.hiddenhero-card {
  display: grid;
  gap: 14px;
  width: 100%;
  min-height: 210px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(31, 110, 70, 0.22);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 18px 34px rgba(31, 41, 33, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hiddenhero-card:hover,
.hiddenhero-card:focus-visible {
  border-color: rgba(31, 110, 70, 0.48);
  box-shadow: 0 22px 40px rgba(31, 41, 33, 0.12);
  transform: translateY(-3px);
}

.hiddenhero-card strong {
  display: block;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hiddenhero-card > span:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 760;
  line-height: 1.56;
  word-break: keep-all;
}

.hiddenhero-card em {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
  cursor: pointer;
  user-select: none;
}
.hiddenhero-card em:hover {
  opacity: 0.88;
}

#worldclassGrid {
  scrollbar-color: rgba(31, 110, 70, 0.48) rgba(244, 248, 241, 0.92);
}

#worldclassGrid::-webkit-scrollbar-track {
  background: rgba(244, 248, 241, 0.92);
}

.report-showcase {
  padding: 46px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #f7fbf3;
}

.brief-heading-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 12px 10px 0;
  transition: background 0.18s ease;
}
.brief-heading-link .eyebrow {
  margin: 0 0 4px;
  transition: color 0.18s ease;
}
.brief-heading-link h2 {
  margin: 0;
  transition: color 0.18s ease;
}
.brief-heading-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark, #2d6a2d);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}
.brief-heading-link:hover .brief-heading-cta,
.brief-heading-link:focus-visible .brief-heading-cta {
  opacity: 1;
  transform: translateX(0);
}
.brief-heading-link:hover h2,
.brief-heading-link:focus-visible h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--green-dark, #2d6a2d);
}
.brief-heading-link:hover .eyebrow,
.brief-heading-link:focus-visible .eyebrow {
  color: var(--green-dark, #2d6a2d);
}

.report-list {
  display: grid;
  gap: 8px;
}

.report-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 143, 91, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.report-row strong,
.report-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-row strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.report-row span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
}

.report-row:hover,
.report-row:focus-visible {
  border-color: var(--green);
  outline: none;
}

.report-row-empty {
  cursor: default;
}

.ad-card {
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 360px;
  padding: 20px;
  border: 1px solid #e6c978;
  border-radius: 8px;
  background: var(--white);
  pointer-events: none;
}

.ad-card a,
.ad-card button {
  pointer-events: auto;
}

.compact-profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.compact-profile-card h3 {
  width: 100%;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1;
  word-break: keep-all;
}

.compact-profile-card .ad-title-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: var(--startup-chip-color, #16833c);
  color: #fff;
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 950;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(31, 41, 33, 0.07);
  transition:
    transform 160ms ease,
    filter 160ms ease,
    box-shadow 160ms ease;
}

.compact-profile-card:hover,
.compact-profile-card:focus-within {
  background: transparent;
}

.compact-profile-card .ad-title-link:hover,
.compact-profile-card .ad-title-link:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 22px rgba(31, 41, 33, 0.15);
}

.compact-profile-card:nth-child(6n + 1) {
  --startup-chip-color: #0b7df2;
}

.compact-profile-card:nth-child(6n + 2) {
  --startup-chip-color: #ff7a12;
}

.compact-profile-card:nth-child(6n + 3) {
  --startup-chip-color: #20a046;
}

.compact-profile-card:nth-child(6n + 4) {
  --startup-chip-color: #e3344b;
}

.compact-profile-card:nth-child(6n + 5) {
  --startup-chip-color: #6d3cc5;
}

.compact-profile-card:nth-child(6n) {
  --startup-chip-color: #f4c400;
}

.worldclass-profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(104px, calc(var(--name-ch, 8) * 11.5px + 42px), 260px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.worldclass-profile-card h3 {
  width: 100%;
  margin: 0;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1;
  word-break: keep-all;
}

.worldclass-profile-card .ad-title-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  background: var(--startup-chip-color, #16833c);
  color: #fff;
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 950;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(31, 41, 33, 0.07);
  transition:
    transform 160ms ease,
    filter 160ms ease,
    box-shadow 160ms ease;
}

.worldclass-profile-card .ad-title-link:hover,
.worldclass-profile-card .ad-title-link:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 22px rgba(31, 41, 33, 0.15);
}

.worldclass-profile-card:nth-child(6n + 1) {
  --startup-chip-color: #0b7df2;
}

.worldclass-profile-card:nth-child(6n + 2) {
  --startup-chip-color: #ff7a12;
}

.worldclass-profile-card:nth-child(6n + 3) {
  --startup-chip-color: #20a046;
}

.worldclass-profile-card:nth-child(6n + 4) {
  --startup-chip-color: #e3344b;
}

.worldclass-profile-card:nth-child(6n + 5) {
  --startup-chip-color: #6d3cc5;
}

.worldclass-profile-card:nth-child(6n) {
  --startup-chip-color: #f4c400;
}

/* #vcGrid only — VC partner chips (2026-06-30, navy solid + sprout icon) */
#vcGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#vcGrid .worldclass-profile-card {
  flex: 0 0 auto;
  position: relative;
}

#vcGrid .worldclass-profile-card .ad-title-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 8px 16px;
  border: 0.5px solid #185fa5;
  border-radius: 999px;
  background: #fff;
  color: #0c447c;
  font-weight: 500;
  box-shadow: none;
}

#vcGrid .worldclass-profile-card .ad-title-link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 20h10'/%3E%3Cpath d='M12 20v-8'/%3E%3Cpath d='M12 12C12 12 12 4 5 4c0 5 3 8 7 8z'/%3E%3Cpath d='M12 12c0 0 0-5 7-5 0 4-3 5-7 5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 20h10'/%3E%3Cpath d='M12 20v-8'/%3E%3Cpath d='M12 12C12 12 12 4 5 4c0 5 3 8 7 8z'/%3E%3Cpath d='M12 12c0 0 0-5 7-5 0 4-3 5-7 5z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

#vcGrid .worldclass-profile-card .ad-title-link:hover,
#vcGrid .worldclass-profile-card .ad-title-link:focus-visible {
  background: #e6f1fb;
  color: #0c447c;
  transform: none;
  filter: none;
  box-shadow: none;
}

#vcGrid .vc-fund-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 240px;
  background: #0c2d4d;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  text-align: left;
  z-index: 30;
  pointer-events: none;
}

#vcGrid .worldclass-profile-card:hover .vc-fund-tooltip {
  display: block;
}

.ad-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  background: #f4f8f1;
}

.ad-label {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff0c2;
  color: #8b6100;
  font-size: 12px;
  font-weight: 800;
}

.ad-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.ad-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.ad-title-link:hover,
.ad-title-link:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  cursor: pointer;
}

.ad-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.ad-card small {
  color: var(--muted);
  line-height: 1.45;
}

.ad-byline {
  align-self: end;
  color: #6c746a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.ad-link {
  align-self: end;
  width: fit-content;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(31, 110, 70, 0.35);
  text-underline-offset: 3px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.share-actions button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(31, 110, 70, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.share-actions button:hover,
.share-actions button:focus-visible {
  border-color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compact-profile-card .share-actions,
.worldclass-profile-card .share-actions {
  margin-top: 10px;
}

.survey-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: #f7fbf3;
}

.survey-landing h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.survey-landing p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 720;
  line-height: 1.62;
  word-break: keep-all;
}

.ad-products,
.stats-preview {
  padding: 48px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stats-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(31, 110, 70, 0.1);
  color: #1f6e46;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
}
.stats-close-btn:hover {
  background: rgba(31, 110, 70, 0.22);
}

.ad-product-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ad-product-grid article,
.stats-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.ad-product-grid strong,
.stats-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
}

.ad-product-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  word-break: keep-all;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.stats-grid strong {
  margin-top: 4px;
  font-size: 34px;
}

.article-stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.article-stats-list h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 22px;
}

.article-stats-rows {
  display: grid;
  gap: 8px;
}

.article-stats-rows article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-stats-rows strong {
  min-width: 0;
  font-size: 15px;
  line-height: 1.35;
}

.article-stats-rows small {
  color: var(--muted);
  font-weight: 800;
}

.article-stats-rows span {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.article-stats-rows span .stats-daily {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.article-stats-rows span .stats-cum {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 950;
  white-space: nowrap;
}

.stats-password-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 18px;
}

.stats-password-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

.content-layout {
  display: block;
  padding: 54px clamp(20px, 5vw, 72px);
}

#latest .section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.article-search-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
}

.article-search-button:hover {
  border-color: var(--line);
  background: var(--white);
}

.article-search-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.article-list {
  display: grid;
  gap: 14px;
}

#articleList > .article-card:nth-of-type(n + 8) {
  display: none !important;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 66%);
  align-items: stretch;
  height: 600px;
  /* 7개 섹션 카드 높이를 하나의 고정값으로 완전 통일(항상 동일). 본문이 짧으면 하단
     여백, 길면 related-links 목록이 자체 스크롤(max-height:280px)로 흡수한다. 세로형
     대표이미지도 object-fit:cover로 카드에 맞춰 크롭되므로 높이에 영향을 주지 않는다.
     모바일(≤760px, 1열 적층)에서는 아래 미디어쿼리에서 고정을 해제한다. */
  overflow: hidden;
  pointer-events: none;
}

.article-card a,
.article-card button,
.article-card ol,
.article-card ul {
  pointer-events: auto;
}

.article-card-text-only {
  grid-template-columns: 1fr;
}

.article-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  align-self: stretch;
  background: #f3f5f0;
  filter: contrast(1.04) saturate(1.05);
  object-fit: cover;
  object-position: center;
}

/* 05 rnd 대표이미지: 'Minimum' 라벨이 이미지 왼쪽에 있어, 크롭 기준을 왼쪽으로.
   그래야 화면폭과 무관하게 라벨이 카드 왼쪽에 딱 붙어 보인다. */
.article-card[data-article-section="rnd"] > img {
  object-position: left center;
}


.article-body {
  padding: 24px 28px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.article-body h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.article-heading {
  word-break: keep-all;
}

.article-title-link {
  cursor: pointer;
  text-decoration: none;
  text-decoration-color: rgba(47, 143, 91, 0);
  text-underline-offset: 4px;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.article-title-link:hover,
.article-title-link:focus-visible {
  color: inherit;
  text-decoration: none;
  text-decoration-color: rgba(47, 143, 91, 0);
}

.article-title-share {
  display: inline-flex;
  vertical-align: baseline;
  margin: 0 0 0 8px;
  transform: translateY(-2px);
}

.article-title-share button {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 12px;
}

.article-reader-heading {
  word-break: keep-all;
}

.article-reader-heading .article-title-share {
  margin-left: 10px;
  transform: translateY(-4px);
}

.article-reader-heading .article-title-share button {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 12px;
}

.article-body p {
  margin-bottom: 12px;
  color: var(--muted);
}

.quote {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid var(--amber);
  color: var(--ink);
  font-weight: 700;
}

.article-summary {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 02 publisher 카드 정렬(데스크톱 2단):
   가로형 대표이미지는 다른 섹션처럼 cover로 채워져 카드를 늘리지 않는다(본문이 높이 결정).
   단 이 기사 요약이 유독 길어 본문이 커지므로 요약을 3줄로 제한해 다른 섹션과 높이를 맞춘다. */
@media (min-width: 641px) {
  .article-card[data-article-section="publisher"] .article-summary {
    -webkit-line-clamp: 3;
  }
}

.related-links {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.related-links strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 14px;
}

.related-links ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 0;
  padding-right: 10px;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 110, 70, 0.5) rgba(235, 241, 228, 0.9);
}

.related-links ol::-webkit-scrollbar {
  width: 8px;
}

.related-links ol::-webkit-scrollbar-track {
  border-radius: 99px;
  background: rgba(235, 241, 228, 0.9);
}

.related-links ol::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(31, 110, 70, 0.5);
}

/* '더보기' 버튼이 있는 섹션은 고정 600px 카드 안에서 버튼까지 보이도록 목록 높이를 낮춘다. */
.related-links:has(.related-more) ol[data-related-list] { max-height: 220px; }

/* ⭐ 이미지 높이 ≈ 기사 스크롤 높이 균형 (2026-07-29 사용자 지시).
   카드 높이 600px 고정(01~07 완전 동일)은 유지하고, 본문을 세로 flex로 만들어
   관련기사 스크롤 목록(ol)이 제목·요약 아래부터 카드 바닥까지 채우게 한다.
   그러면 좌측 대표이미지(600px)와 우측 스크롤 영역의 높이가 자연스럽게 맞아,
   짧은 스크롤 옆 큰 이미지+빈 여백의 어색함이 사라진다. 데스크톱 전용(모바일 적층 보호). */
@media (min-width: 761px) {
  .article-card .article-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .article-card .related-links {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .article-card .related-links ol {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
  }
}

.related-more {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f4f8f2;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.related-more:hover { background: #e9f2e6; }
.related-more-count { color: #7c8a7f; font-weight: 500; }

.cheol-book-notice {
  font-size: 13px;
  color: #8a8f9a;
  text-align: center;
  padding: 10px 6px 4px;
  border-top: 1px dashed var(--line);
  word-break: keep-all;
}

.related-links a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(47, 143, 91, 0.38);
  text-underline-offset: 3px;
}

.related-links a:hover {
  color: var(--ink);
}

.related-link-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
}

.related-link-card-no-image {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: auto;
}

.related-link-card:not(:has(img)) {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: auto;
}

.related-link-card img {
  width: 54px;
  height: 54px;
  min-height: 0;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.related-link-card span {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.related-link-card small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.related-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(31, 37, 32, 0.42);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 37, 32, 0.42);
}

.related-modal[hidden] {
  display: none;
}

.contact-modal[hidden] {
  display: none;
}

.contact-email-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-email-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-email-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.contact-email-to {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
}

.contact-email-field input,
.contact-email-field textarea {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
}

.contact-email-field input:focus,
.contact-email-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 15%, transparent);
}

.contact-send-button {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-status {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.contact-status-ok {
  background: color-mix(in srgb, var(--green) 10%, transparent);
  color: var(--green-dark);
  border: 1px solid color-mix(in srgb, var(--green) 30%, transparent);
}

.contact-status-err {
  background: #fff0f0;
  color: #c00;
  border: 1px solid #fcc;
}

.related-modal-panel {
  position: relative;
  width: min(760px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  overflow: auto;
}

.contact-panel {
  position: relative;
  width: min(720px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.ad-contact-panel {
  width: min(1180px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}

.combo-panel {
  width: min(760px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}

.combo-subscribe-section {
  padding-bottom: 24px;
}

.combo-contact-section {
  padding-top: 8px;
}

.combo-divider {
  border: none;
  border-top: 2px solid var(--line);
  margin: 4px 0 20px;
}

.ad-contact-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18;
  word-break: keep-all;
}

.ad-contact-intro {
  max-width: 860px !important;
  margin-bottom: 22px !important;
  font-size: clamp(18px, 1.65vw, 23px) !important;
  line-height: 1.5 !important;
}

.contact-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-product-card {
  grid-column: 1 / -1;
  background: #f7fbf3 !important;
}

.contact-product-card .contact-address-row {
  margin: 16px 0 8px;
}

.contact-product-card .contact-help {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.contact-panel h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.25;
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
}

.contact-panel .contact-intro {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
}

.contact-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  margin: 18px 0;
}

.subscribe-modal-form {
  display: grid;
  gap: 12px;
  margin: 18px 0 10px;
}

.subscribe-modal-form .primary-button {
  justify-content: center;
  width: 100%;
}

.subscribe-survey-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.subscribe-survey-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  word-break: keep-all;
}

.survey-open-button {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.survey-panel {
  width: min(900px, 100%);
  max-height: min(86vh, 920px);
  max-height: min(86dvh, 920px);
  overflow: auto;
}

.survey-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.commercialization-survey-form {
  display: grid;
  gap: 16px;
}

.survey-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(47, 143, 91, 0.22);
  border-radius: 8px;
  background: #f7fbf3;
}

.survey-contact-card label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

.survey-contact-card input[type="text"],
.survey-contact-card input[type="email"] {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.survey-consent {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: flex-start;
  padding-top: 6px;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.55;
}

.survey-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.survey-question-list {
  display: grid;
  gap: 10px;
}

/* Survey gate lock ------------------------------------------------ */
.survey-questions-gate {
  position: relative;
}

.survey-questions-gate--locked .survey-question-list {
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
  filter: blur(0.8px);
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.survey-questions-gate:not(.survey-questions-gate--locked) .survey-question-list {
  opacity: 1;
  filter: none;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.survey-gate-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(247, 251, 243, 0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
  cursor: default;
}

.survey-questions-gate--locked .survey-gate-overlay {
  display: flex;
}

.survey-lock-icon {
  width: 26px;
  height: 26px;
  color: #1f6e46;
  opacity: 0.8;
}

.survey-gate-overlay strong {
  font-size: 15px;
  font-weight: 750;
  color: #1a5c3a;
  line-height: 1.4;
}

.survey-gate-overlay p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.survey-questions-gate--locked ~ button[type="submit"] {
  opacity: 0.38;
  pointer-events: none;
}

.survey-questions-gate:not(.survey-questions-gate--locked) ~ button[type="submit"] {
  opacity: 1;
  pointer-events: auto;
}
/* ----------------------------------------------------------------- */

.survey-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.survey-question:hover {
  box-shadow: 0 1px 10px rgba(30, 60, 40, 0.07);
}

.survey-question[data-axis="Problem"] { border-left-color: #b0532e; }
.survey-question[data-axis="Solution"] { border-left-color: #1f6e46; }
.survey-question[data-axis="Market"] { border-left-color: #2c6e9b; }
.survey-question[data-axis="Business Model"] { border-left-color: #9a7415; }
.survey-question[data-axis="Competency"] { border-left-color: #6a4c93; }

.survey-axis-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 5px;
  padding: 0 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.survey-axis-head:first-child { margin-top: 2px; }

.survey-axis-head em {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.survey-axis-head .sq-axis-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: currentColor;
}

.survey-axis-head[data-axis="Problem"] { color: #b0532e; }
.survey-axis-head[data-axis="Solution"] { color: #1f6e46; }
.survey-axis-head[data-axis="Market"] { color: #2c6e9b; }
.survey-axis-head[data-axis="Business Model"] { color: #9a7415; }
.survey-axis-head[data-axis="Competency"] { color: #6a4c93; }

.survey-question legend {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}

.sq-num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-top: 1px;
  border-radius: 999px;
  background: #eef3ee;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.survey-question[data-axis="Problem"] .sq-num { background: #f6e7e0; color: #8a3f1e; }
.survey-question[data-axis="Solution"] .sq-num { background: #e4f0e7; color: #155637; }
.survey-question[data-axis="Market"] .sq-num { background: #e1ebf4; color: #215279; }
.survey-question[data-axis="Business Model"] .sq-num { background: #f3ebd6; color: #6e520e; }
.survey-question[data-axis="Competency"] .sq-num { background: #ece5f4; color: #4e3873; }

.sq-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.sq-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.sq-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  word-break: keep-all;
}

.survey-score-options {
  display: flex;
  gap: 6px;
}

.survey-score-options label { cursor: pointer; }

.survey-score-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.survey-score-options span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #d6e0d4;
  border-radius: 9px;
  background: #fbfdf8;
  color: #8a938a;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.14s ease, background 0.14s ease, color 0.14s ease, box-shadow 0.14s ease;
}

.survey-score-options label:hover span {
  border-color: var(--green);
  color: var(--green-dark);
}

.survey-score-options input:checked + span {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(31, 110, 70, 0.25);
}

.survey-score-options input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (max-width: 620px) {
  .survey-question { grid-template-columns: 1fr; gap: 11px; }
  .survey-score-options { justify-content: space-between; }
  .survey-score-options span { width: 100%; max-width: 54px; height: 40px; }
}

.survey-result {
  margin-top: 20px;
}

.survey-result-card {
  padding: 20px;
  border: 1px solid rgba(47, 143, 91, 0.24);
  border-radius: 8px;
  background: #f7fbf3;
}

.survey-result-card h3 {
  margin: 4px 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
}

.survey-result-card p {
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
  word-break: keep-all;
}

.survey-radar-wrap {
  display: grid;
  place-items: center;
  margin: 16px 0;
}

.survey-distribution-wrap {
  display: grid;
  place-items: center;
  margin: 16px 0 8px;
  overflow-x: auto;
}

.survey-distribution {
  width: min(100%, 620px);
  height: auto;
}

.survey-radar {
  width: min(100%, 340px);
  height: auto;
}

.survey-axis-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 16px;
}

.survey-axis-table div {
  padding: 10px;
  border: 1px solid rgba(47, 143, 91, 0.2);
  border-radius: 8px;
  background: #fff;
}

.survey-axis-table strong,
.survey-axis-table span {
  display: block;
}

.survey-axis-table strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.25;
}

.survey-axis-table span {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.survey-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.survey-meter {
  height: 12px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #dde8d9;
}

.survey-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.survey-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.survey-stat-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.survey-stat-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.survey-stat-grid dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.survey-next {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.survey-mail-button {
  width: fit-content;
  margin-top: 10px;
}

.survey-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.survey-edit-open[hidden] {
  display: none;
}

.survey-editor-panel {
  width: min(960px, 100%);
  max-height: min(88vh, 920px);
  max-height: min(88dvh, 920px);
  overflow: auto;
}

.survey-editor-form {
  display: grid;
  gap: 14px;
}

.survey-editor-list {
  display: grid;
  gap: 10px;
}

.survey-editor-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(260px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf8;
}

.survey-editor-row label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.survey-editor-row input {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.survey-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.report-login-form,
.report-subscribe-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.report-login-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.report-login-form label,
.report-subscribe-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

.report-subscribe-form {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.report-reader-panel {
  width: min(900px, 100%);
}

.report-reader-panel pre {
  overflow-x: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  white-space: pre-wrap;
  font-family: inherit;
}

.report-reader-panel p {
  white-space: pre-line;
}

.contact-address {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf3;
  color: var(--green-dark);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-copy-button {
  align-self: stretch;
  min-width: 72px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.contact-copy-button:hover {
  background: var(--green-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions .primary-button,
.contact-actions .secondary-button {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 15px;
}

.contact-actions button {
  cursor: pointer;
}

.contact-help {
  margin-top: 14px;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 206px) minmax(410px, 1fr) minmax(360px, auto);
  gap: clamp(16px, 2.2vw, 30px);
  align-items: center;
  margin-top: clamp(34px, 6vw, 72px);
  padding: clamp(26px, 4.5vw, 48px) clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #f7fbf3;
}

.site-footer > div:first-child {
  display: contents;
}

.footer-logo {
  display: block;
  width: 100%;
  min-width: 180px;
  max-width: 206px;
  flex: 0 0 180px;
  margin-bottom: 0;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.62;
  font-weight: 780;
  word-break: keep-all;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: none;
  color: var(--green-dark);
  font-weight: 850;
  font-size: clamp(15px, 1.1vw, 16px);
  text-align: right;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.footer-copy-button {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  flex: 0 0 100%;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.footer-copy-button strong {
  font-weight: 950;
}

@media (max-width: 1150px) {
  .site-footer {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    text-align: left;
    padding-top: 8px;
  }

  .footer-copy-button {
    justify-content: flex-start;
  }
}

.related-modal-panel h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.3;
}

.related-modal-panel p:not(.eyebrow) {
  color: var(--muted);
}

.article-search-panel {
  width: min(760px, 100%);
}

.article-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.article-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf7;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.article-search-input:focus {
  outline: 2px solid rgba(47, 143, 91, 0.18);
  border-color: var(--green);
}

.article-search-results {
  display: grid;
  gap: 8px;
  max-height: min(52vh, 470px);
  max-height: min(52dvh, 470px);
  padding-right: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 110, 70, 0.5) rgba(235, 241, 228, 0.9);
}

.article-search-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.article-search-result:hover {
  border-color: var(--line);
  background: var(--white);
}

.article-search-result img {
  width: 72px;
  height: 62px;
  border-radius: 6px;
  object-fit: cover;
  background: #eef3e8;
}

.article-search-result strong,
.article-search-result span,
.article-search-result small {
  display: block;
}

.article-search-result strong {
  margin: 2px 0 4px;
  font-size: 17px;
  line-height: 1.35;
}

.article-search-result small {
  color: var(--green-dark);
  font-weight: 900;
}

.article-search-result span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-search-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcf7;
}

.article-reader {
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.article-reader-image {
  display: block;
  width: 100%;
  aspect-ratio: 2.1;
  object-fit: cover;
}

.article-reader-image[hidden] {
  display: none;
}

.article-reader-content {
  padding: 30px 30px 34px;
}

.article-reader-summary {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
}

.article-reader-quote {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  background: #fff8e8;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.article-reader-body {
  display: grid;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-reader-body p {
  width: auto !important;
  min-width: 0;
  max-width: 100% !important;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-reader-body * {
  min-width: 0;
  max-width: 100% !important;
}

.article-reader-body div,
.article-reader-body section,
.article-reader-body article,
.article-reader-body blockquote {
  width: auto !important;
}

.article-reader-body img,
.article-reader-body video,
.article-reader-body iframe {
  width: 100% !important;
  height: auto !important;
}

.academy-pdf-page {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(47, 143, 91, 0.05);
}

.academy-pdf-label {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e6f3ea;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.academy-pdf-page h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

.academy-pdf-page ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  font-weight: 800;
}

.academy-course-info {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #dbe9dd;
  border-radius: 8px;
  background: #f4faf5;
}

.academy-course-info strong,
.academy-course-heading {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
}

.academy-course-info ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.academy-course-heading {
  margin-top: 2px;
}

.reader-source-link a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(47, 143, 91, 0.42);
  text-underline-offset: 3px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 0 2px;
  border-top: 1px solid var(--line);
}

.article-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author strong,
.article-author span {
  display: block;
}

.article-author span {
  color: var(--muted);
}

.startup-ir-contact {
  margin-top: 26px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2f8f3, #fffdf7);
  border: 1px solid #d8e6dc;
  text-align: center;
}

.startup-ir-note {
  margin: 0 0 14px;
  color: #3a4a3f;
  font-size: 15px;
  word-break: keep-all;
}

.startup-ir-btn {
  display: inline-block;
  background: #2f8f5b;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(47, 143, 91, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.startup-ir-btn:hover {
  background: #26794c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 143, 91, 0.34);
}

.startup-ir-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.startup-ir-btn-ghost {
  background: #fff;
  color: #2f8f5b;
  border: 1.5px solid #2f8f5b;
  box-shadow: none;
}

.startup-ir-btn-ghost:hover {
  background: #eef6f0;
  color: #26794c;
  box-shadow: none;
}

.startup-ir-email {
  margin: 14px 0 0;
  font-size: 13px;
  color: #687065;
}

.startup-ir-email .startup-ir-mail {
  color: #0b1a2d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #b7c3ba;
}

.startup-ir-email .startup-ir-mail:hover {
  color: #2f8f5b;
  border-bottom-color: #2f8f5b;
}

.related-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(31, 37, 32, 0.48);
}

.auth-modal[hidden] {
  display: none;
}

.auth-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  max-height: min(760px, calc(100dvh - 44px));
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.3;
}

.auth-message {
  color: var(--muted);
}

.auth-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.auth-tabs button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.auth-tabs button.active {
  border-color: var(--green);
  background: #e6f3ea;
  color: var(--green-dark);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form small {
  color: var(--muted);
}

.approval-panel {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.approval-help {
  color: var(--muted);
}

.approval-list {
  display: grid;
  gap: 10px;
}

.approval-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.approval-item h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.approval-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.translate-host,
.goog-te-banner-frame,
.goog-te-gadget {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.subscribe-panel {
  position: sticky;
  top: 92px;
  width: fit-content;
  justify-self: end;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.subscribe-panel.compact-subscribe {
  box-shadow: none;
}

.compact-subscribe,
.compact-subscribe.primary-button {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  box-shadow: none;
}

.top-nav .compact-subscribe {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-weight: 850;
}

.subscribe-panel h2 {
  font-size: 25px;
  line-height: 1.3;
}

.subscribe-panel p,
.subscribe-panel small {
  color: var(--muted);
}

.subscribe-form {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.ai-service-page {
  background:
    linear-gradient(180deg, rgba(243, 246, 236, 0.82), rgba(255, 253, 247, 0.98) 280px),
    var(--paper);
}

.ai-service-header {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  justify-content: stretch;
}

.ai-mode-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(47, 143, 91, 0.28);
  border-radius: 6px;
  background: #e6f3ea;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.ai-header-message {
  justify-self: center;
  width: min(100%, 920px);
  padding: 14px clamp(18px, 3vw, 34px);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(230, 243, 234, 0.92), rgba(247, 251, 243, 0.42));
  color: var(--green-dark);
  text-align: left;
}

.ai-header-message span {
  display: block;
  max-width: 880px;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: 0;
  white-space: normal;
  word-break: keep-all;
}

.ai-service-shell {
  padding: clamp(28px, 5vw, 64px) clamp(16px, 5vw, 72px) 72px;
}

.ai-service-hero {
  display: block;
  margin-bottom: 32px;
}

.ai-service-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ai-service-copy h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
}

.ai-service-copy p:not(.eyebrow) {
  max-width: 1180px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.65;
  white-space: normal;
  word-break: keep-all;
}

.brief-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.06em;
}

.brief-mark::before,
.brief-mark::after {
  position: absolute;
  width: auto;
  height: auto;
  color: currentColor;
  font-size: 0.72em;
  font-weight: inherit;
  line-height: 1;
  pointer-events: none;
}

.brief-mark::before {
  top: -0.18em;
  left: -0.12em;
  content: "??;
}

.brief-mark::after {
  right: -0.12em;
  bottom: -0.18em;
  content: "??;
}

.brief-mark-inline {
  padding: 0.04em 0.12em;
  color: inherit;
  font-weight: 900;
}

.ai-status-panel,
.ai-form,
.ai-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.ai-status-panel {
  display: grid;
  gap: 4px;
  padding: 20px;
}

.ai-status-panel strong {
  font-size: 15px;
  color: var(--green-dark);
}

.ai-status-panel span {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.ai-status-panel small {
  color: var(--muted);
  font-weight: 700;
}

.ai-workbench {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.ai-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  height: auto;
  padding: clamp(20px, 3vw, 28px);
  overflow: visible;
}

.ai-form label {
  display: grid;
  gap: 8px;
  width: 100%;
  color: var(--ink);
  font-weight: 850;
}

.ai-form input,
.ai-form textarea {
  min-height: 48px;
  width: 100%;
  font-weight: 500;
}

.ai-form input::placeholder,
.ai-form textarea::placeholder {
  color: #9aa39a;
  opacity: 1;
  font-weight: 700;
}

.ai-form input:focus::placeholder,
.ai-form textarea:focus::placeholder {
  color: #b7beb5;
}

.brief-guideline-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(47, 143, 91, 0.24);
  border-radius: 8px;
  background: #f7fbf3;
}

.brief-guideline-card strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.brief-guideline-card p {
  margin: 0;
  color: #5f6a5f;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
  word-break: keep-all;
}

.ai-form input[type="file"] {
  padding: 12px;
  border: 1px dashed rgba(47, 143, 91, 0.42);
  background: #fbfdf8;
  color: var(--muted);
  cursor: pointer;
}

.ai-hidden-file {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.ai-file-drop {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  align-content: center;
  border: 1px dashed rgba(47, 143, 91, 0.42);
  border-radius: 8px;
  background: #fbfdf8;
  color: var(--green-dark);
  cursor: pointer;
}

.ai-file-drop strong {
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 900;
  line-height: 1.55;
  word-break: keep-all;
}

.ai-file-drop small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.ai-file-drop:hover,
.ai-file-drop:focus-visible,
.ai-file-drop.is-dragging,
.ai-file-drop.has-file {
  border-color: var(--green);
  background: #eef7ef;
  outline: none;
}

.ai-form textarea {
  min-height: 140px;
}

.ai-tone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ai-tone-row label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--green-dark);
  text-align: center;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.ai-tone-row input {
  width: auto;
  margin: 0 6px 0 0;
}

.ai-submit-button {
  width: 100%;
  min-height: 58px;
  cursor: pointer;
}

.ai-complete-button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.ai-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.ai-submit-button.is-writing {
  animation: reportBlink 1.8s ease-in-out infinite;
}

.ai-output {
  display: grid;
  height: auto;
  min-height: 360px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
}

.ai-output-empty {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 0;
  height: 100%;
}

.ai-output-empty .eyebrow span {
  color: var(--muted);
  font-weight: 900;
}

.ready-help {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 750;
  line-height: 1.75;
  word-break: keep-all;
}

.ai-writing-state,
.ai-file-ready {
  display: grid;
  align-content: center;
  min-height: 100%;
}

.ai-writing-state {
  animation: reportBlink 2.4s ease-in-out infinite;
}

.ready-blink {
  animation: reportBlink 2.2s ease-in-out infinite;
}

.writing-pulse {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.writing-pulse span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.35;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.writing-pulse span:nth-child(2) {
  animation-delay: 0.25s;
}

.writing-pulse span:nth-child(3) {
  animation-delay: 0.5s;
}

.word-file-card {
  display: grid;
  gap: 8px;
  width: min(100%, 460px);
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(47, 143, 91, 0.28);
  border-radius: 8px;
  background: #f6fbf3;
  color: var(--green-dark);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.word-file-card strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  word-break: keep-all;
}

.word-file-card span {
  color: var(--muted);
  font-weight: 850;
}

.word-file-card:hover,
.word-file-card:focus-visible {
  border-color: var(--green);
  outline: none;
  transform: translateY(-2px);
}

.brief-ready-panel {
  align-content: start;
}

.brief-preview-scroll {
  display: grid;
  gap: 18px;
  max-height: 420px;
  margin: 18px 0 20px;
  padding: 20px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  scroll-behavior: smooth;
}

.brief-preview-scroll h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.brief-preview-scroll p,
.brief-preview-scroll li,
.brief-preview-scroll pre {
  margin: 0;
  color: #384238;
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.brief-preview-scroll ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.brief-revision-message {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(47, 143, 91, 0.22);
  border-radius: 8px;
  background: #f7fbf3;
}

.brief-revision-message strong {
  color: var(--green-dark);
  font-size: 18px;
}

.brief-revision-message p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.registration-complete {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 20px;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: #e6f3ea;
  color: var(--green-dark);
  text-align: center;
}

.registration-complete strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.registration-complete span {
  font-weight: 850;
}

@keyframes reportBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.42;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.ai-output-result {
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

.ai-output-result::-webkit-scrollbar,
.ai-form::-webkit-scrollbar {
  width: 8px;
}

.ai-output-result::-webkit-scrollbar-thumb,
.ai-form::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 143, 91, 0.28);
}

.ai-output-result::-webkit-scrollbar-track,
.ai-form::-webkit-scrollbar-track {
  background: transparent;
}

.ai-output-empty[hidden],
.ai-output-result[hidden] {
  display: none !important;
}

.ai-output-empty h2,
.ai-result-header h2,
.ai-writing-state h2,
.ai-file-ready h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.24;
  word-break: keep-all;
}

.ai-output-empty p:not(.eyebrow),
.ai-writing-state p:not(.eyebrow),
.ai-file-ready p:not(.eyebrow),
.ai-result-section p,
.ai-result-section li,
.ai-disclaimer {
  color: var(--muted);
  font-size: 17px;
}

.ai-result-section p,
.ai-disclaimer {
  white-space: pre-line;
}

.ai-result-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ai-result-header.active-section {
  border-bottom-color: rgba(47, 143, 91, 0.22);
}

.ai-result-header span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.ai-workflow-note {
  display: grid;
  gap: 8px;
  margin: 18px 0 6px;
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #f6fbf3;
}

.ai-workflow-note strong {
  color: var(--green-dark);
  font-size: 18px;
}

.ai-workflow-note p,
.ai-result-section .section-method {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.75;
}

.ai-result-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ai-result-section.active-section {
  padding-top: 24px;
}

.ai-result-section h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.ai-result-section ul {
  margin: 0;
  padding-left: 20px;
}

.ai-result-section pre {
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.section-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
  white-space: pre-line;
}

.market-items {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
}

.market-item {
  padding: 14px 16px;
  border-left: 3px solid var(--green-dark);
  background: var(--soft);
  border-radius: 0 6px 6px 0;
}

.market-item-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.ai-conversation-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(47, 143, 91, 0.22);
  border-radius: 8px;
  background: #f7fbf3;
}

.ai-conversation-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 20px;
}

.ai-conversation-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.ai-conversation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-disclaimer {
  margin: 18px 0 0;
  font-weight: 800;
}

.admin-view {
  padding: 42px clamp(20px, 5vw, 72px) 64px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-top h1 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.admin-top p {
  color: var(--muted);
}

.dashboard-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.dashboard-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.dashboard-strip strong,
.dashboard-strip span {
  display: block;
}

.dashboard-strip strong {
  font-size: 26px;
}

.dashboard-strip span {
  color: var(--muted);
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.editor-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-list {
  min-width: 0;
}

#adminArticleList {
  display: grid;
  gap: 12px;
}

.admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.admin-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.admin-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e6f3ea;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    align-items: center;
    gap: 12px 22px;
    padding: 14px clamp(16px, 3vw, 32px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(180px, 22vw, 240px);
  }

  .header-menu {
    min-width: 0;
    justify-items: center;
  }

  .top-nav {
    justify-content: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
  }

  .header-contact {
    justify-self: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 920px) and (min-width: 641px) {
  .ticker {
    gap: clamp(20px, 3vw, 34px);
    padding-inline: 20px;
  }

  .ticker-copy {
    text-align: left;
  }

  .ticker-main {
    font-size: clamp(24px, 2.8vw, 30px);
    line-height: 1.36;
  }

  .why-trigger {
    font-size: clamp(32px, 5vw, 42px);
  }

  .site-header {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  }

  .header-menu {
    justify-self: end;
    justify-items: end;
  }

  .top-nav {
    justify-content: flex-end;
    text-align: right;
  }

  .header-contact {
    justify-self: end;
    text-align: right;
  }

  .language-switcher {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .top-nav {
    flex: 1 1 180px;
    width: auto;
    overflow: visible;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  .header-menu {
    flex: 1 1 240px;
    justify-items: start;
  }

  .language-switcher {
    justify-content: flex-end;
  }

  .content-layout,
  .editor-layout,
  .ai-service-hero,
  .ai-workbench {
    grid-template-columns: 1fr;
  }

  /* 모바일은 이미지가 본문 위에 1열로 적층되므로 고정 높이를 풀어 본문 잘림을 막는다. */
  .article-card {
    height: auto;
    max-height: none;
  }

  .ai-form,
  .ai-output {
    height: auto;
    max-height: none;
  }

  .ai-output {
    min-height: 520px;
  }

  .ai-output-result {
    max-height: 640px;
  }

  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #adGrid,
  #worldclassGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 520px;
  }

  .report-row,
  .report-login-form,
  .report-subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-survey-notice,
  .survey-question,
  .survey-stat-grid,
  .survey-landing,
  .contact-product-grid,
  .ad-product-grid,
  .stats-grid,
  .article-stats-list,
  .stats-password-form {
    grid-template-columns: 1fr;
  }

  .survey-open-button {
    justify-self: start;
  }

  .survey-landing .primary-button {
    width: 100%;
  }

  .survey-contact-card {
    grid-template-columns: 1fr;
  }

  .survey-landing-actions {
    justify-content: stretch;
    width: 100%;
  }

  .survey-landing-actions button {
    width: 100%;
  }

  .survey-landing-actions .primary-button {
    padding: 0 10px; /* 좁은 폰에서 1줄 여유 확보 */
  }

  .survey-question {
    grid-template-columns: 1fr;
  }

  .survey-question legend {
    flex-wrap: wrap;
  }

  .survey-score-options {
    justify-content: space-between;
  }

  .survey-axis-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .survey-result-actions a {
    width: 100%;
    justify-content: center;
  }

  .survey-editor-row {
    grid-template-columns: 1fr;
  }

  .survey-editor-actions {
    justify-content: stretch;
  }

  .survey-editor-actions button {
    width: 100%;
  }

  .survey-score-options {
    justify-content: space-between;
  }

  .subscribe-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.58;
  }

  .site-header {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
  }

  .brand {
    justify-content: center;
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand-logo {
    width: min(250px, 62vw);
  }

  .top-nav {
    display: flex;
    flex: 0 1 auto;
    gap: 16px;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .header-menu {
    order: 3;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    justify-items: center;
    align-items: start;
    align-content: start;
    grid-auto-rows: max-content;
  }

  .top-nav a {
    display: inline-flex;
    align-items: center;
    width: auto;
    min-height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .top-nav .compact-subscribe {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
  }

  .header-contact {
    display: inline-flex;
    align-items: center;
    align-self: start;
    min-height: 36px;
    white-space: normal;
    text-align: center;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  .language-switcher {
    order: 4;
    justify-content: center;
  }

  .language-switcher button {
    width: 38px;
    min-height: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    overflow: visible;
    padding-top: 28px;
    padding-inline: 16px;
  }

  .hero-copy,
  .hero-feature {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    order: 2;
  }

  .hero-feature:not(.hero-feature-new) {
    order: 1;
    justify-self: stretch;
  }

  .hero-feature-new {
    display: flex;
    order: 3;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .subscribe-form button,
  .auth-form button {
    width: 100%;
  }

  .hero-feature:not(.hero-feature-new) img {
    height: 260px;
  }

  .ticker,
  .section-band,
  .hiddenhero-entry,
  .ad-showcase,
  .report-showcase,
  .content-layout,
  .admin-view,
  .ai-service-shell {
    padding-inline: 16px;
  }

  .hiddenhero-entry {
    padding-block: 28px;
  }

  .hiddenhero-card {
    width: min(100%, 520px);
    min-height: 0;
    margin-inline: auto;
    padding: 24px 20px;
    gap: 12px;
  }

  .hiddenhero-card strong {
    max-width: 100%;
    font-size: clamp(29px, 7.6vw, 38px);
    line-height: 1.18;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .hiddenhero-card > span:not(.eyebrow) {
    max-width: 100%;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.5;
    text-wrap: pretty;
  }

  .hiddenhero-card em {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 15px;
  }

  .ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: min(100%, 560px);
    margin: 18px auto 0;
    padding: 18px 18px 20px;
    text-align: left;
  }

  .why-trigger {
    width: fit-content;
    min-width: 0;
    min-height: 0;
    padding: 0;
    font-size: clamp(30px, 9vw, 42px);
  }

  .ticker-copy {
    width: 100%;
    max-width: 520px;
    padding-left: 0;
    text-align: left;
  }

  .ticker-main {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.45;
    font-weight: 700;
    white-space: normal;
    text-wrap: pretty;
  }

  .ai-service-header .top-nav {
    order: 3;
    flex-basis: 100%;
  }

  .ai-service-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .ai-service-header .brand {
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .ai-service-header .brand-logo {
    width: min(250px, 72vw);
  }

  .ai-mode-badge {
    margin-left: auto;
  }

  .ai-header-message {
    order: 3;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 12px 16px;
    text-align: left;
  }

  .ai-header-message span {
    white-space: normal;
    font-size: clamp(20px, 5.4vw, 27px);
  }

  .ai-service-copy p:not(.eyebrow) {
    white-space: normal;
  }

  .ai-service-copy h1 {
    font-size: 34px;
  }

  .ai-status-panel span {
    font-size: 21px;
  }

  .ai-tone-row {
    grid-template-columns: 1fr;
  }

  .ai-output {
    min-height: auto;
  }

  .ai-output-result {
    max-height: none;
    padding-right: 0;
  }

  .ai-output-empty {
    min-height: 280px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.18;
  }

  .report-showcase .section-heading h2 {
    max-width: 100%;
    font-size: clamp(25px, 6.8vw, 33px);
    line-height: 1.2;
    word-break: keep-all;
    text-wrap: balance;
  }

  #startup-showcase .section-heading h2 {
    max-width: 100%;
    font-size: clamp(24px, 5.6vw, 30px);
    line-height: 1.22;
    white-space: nowrap;
    word-break: keep-all;
  }

  .eyebrow {
    font-size: 12px;
  }

  .section-grid,
  .dashboard-strip,
  .ad-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  #adGrid,
  #worldclassGrid {
    grid-template-columns: 1fr;
  }

  .report-row strong,
  .report-row span {
    white-space: normal;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px 22px;
  }

  .site-footer > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .footer-logo {
    width: min(230px, 58vw);
    min-width: 0;
    max-width: 230px;
    margin: 0;
    flex: 0 0 auto;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
    padding-top: 0;
    gap: 6px 14px;
    font-size: 15px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
  }

  .footer-copy-button {
    min-height: 40px;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .site-footer p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.38;
    text-align: center;
  }

  .section-card,
  .ad-card,
  .subscribe-panel,
  .auth-panel {
    border-radius: 8px;
  }

  .section-card {
    min-height: 184px;
  }

  .section-card h3 {
    font-size: clamp(18px, 5vw, 21px);
  }

  .apple-title {
    gap: 6px;
    font-size: clamp(18px, 5vw, 21px);
  }

  .apple-logo {
    width: 38px;
    height: 38px;
  }

  .ad-card {
    min-height: auto;
  }

  .compact-profile-card .ad-title-link,
  .worldclass-profile-card .ad-title-link {
    max-width: 100%;
    min-height: 34px;
    padding: 0 10px;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.22;
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: nowrap;
  }

  .article-title-link,
  .reader-source-link a,
  .article-reader-body a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
  }

  .share-actions {
    width: 100%;
  }

  .share-actions button {
    flex: 1 1 92px;
  }

  .article-title-share {
    width: auto;
    margin-top: 6px;
    margin-left: 0;
    transform: none;
  }

  .article-title-share button {
    flex: 0 0 auto;
  }

  .article-reader-heading .article-title-share {
    display: flex;
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
    transform: none;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card img {
    aspect-ratio: 1.8;
    height: auto;
    min-height: auto;
  }

  .ticker,
  .admin-item {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .auth-modal,
  .related-modal {
    align-items: end;
    padding: 12px;
  }

  .auth-panel,
  .related-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }

  .related-modal-panel:not(.article-reader),
  .auth-panel {
    padding: 22px;
  }

  .contact-address-row {
    grid-template-columns: 1fr;
  }

  .contact-copy-button {
    min-height: 44px;
  }

  .article-reader-image {
    aspect-ratio: 1.5;
  }

  .article-reader-content {
    padding: 22px 22px 28px;
  }

  .article-reader-content h2 {
    font-size: 26px;
  }

  .article-reader-summary,
  .article-reader-body {
    font-size: 16px;
  }

  .article-reader-quote {
    font-size: 17px;
  }

  .article-author {
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 30px;
  }

  .ticker {
    width: min(100%, 350px);
    padding-inline: 16px;
  }

  .hiddenhero-entry {
    padding-block: 24px;
  }

  .hiddenhero-card {
    min-height: 0;
    padding: 22px 18px;
    gap: 12px;
  }

  .hiddenhero-card strong {
    font-size: clamp(26px, 7.4vw, 30px);
    white-space: normal;
  }

  .hiddenhero-card > span:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.48;
  }

  .report-showcase .section-heading h2 {
    font-size: clamp(23px, 6.6vw, 28px);
    line-height: 1.22;
  }

  .ticker-main {
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.5;
  }

  .why-trigger {
    font-size: 28px;
  }

  .section-card h3,
  .ad-card h3,
  .article-body h3 {
    font-size: 20px;
  }

  .apple-title {
    font-size: 20px;
    gap: 5px;
  }

  .apple-logo {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 16px !important;
    padding-top: 10px !important;
    row-gap: 8px !important;
  }

  .site-footer > div:first-child {
    gap: 2px !important;
  }

  .footer-logo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .site-footer p {
    margin-top: 0 !important;
    line-height: 1.38 !important;
  }
}

/* ===== BRL landing button (2026-07-14) — new classes only ===== */
.brl-landing-button {
  background: #0b1a2d;
  color: var(--white);
  text-decoration: none;
  gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.brl-landing-button:hover {
  background: #16304f;
  transform: translateY(-1px);
}
.brl-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: #0b1a2d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 5px;
  padding: 2px 7px;
}


.survey-download-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.survey-download-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--green);
}
.primary-button.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}


/* ── 결과 컨설팅 (1·2·3점 문항) ─────────────────────── */
.survey-consult { margin: 22px 0 6px; }
.survey-consult h4 {
  margin: 0 0 5px; font-size: 17px; font-weight: 800; color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
}
.survey-consult h4 span {
  font-size: 12.5px; font-weight: 800; color: #fff; background: var(--green);
  border-radius: 999px; padding: 2px 11px;
}
.survey-consult-sub { margin: 0 0 12px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.survey-consult-allgood {
  margin: 8px 0; padding: 16px 18px; background: #eef6ea; border-radius: 12px;
  font-size: 15px; font-weight: 750; color: var(--green-dark); line-height: 1.55; word-break: keep-all;
}

.consult-card {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--line);
  border-radius: 12px; padding: 15px 17px; margin-top: 11px;
}
.consult-card[data-axis="Problem"] { border-left-color: #b0532e; }
.consult-card[data-axis="Solution"] { border-left-color: #1f6e46; }
.consult-card[data-axis="Market"] { border-left-color: #2c6e9b; }
.consult-card[data-axis="Business Model"] { border-left-color: #9a7415; }
.consult-card[data-axis="Competency"] { border-left-color: #6a4c93; }
.consult-q { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.45; word-break: keep-all; }
.consult-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--muted); margin-right: 8px;
}
.consult-hook {
  margin: 10px 0 9px; font-size: 15px; font-weight: 700; line-height: 1.55;
  color: #26302a; word-break: keep-all;
}
.consult-chk { margin: 0 0 11px; padding: 0; list-style: none; }
.consult-chk li {
  position: relative; padding-left: 20px; margin: 5px 0; font-size: 13.5px;
  line-height: 1.55; color: var(--muted); font-weight: 600; word-break: keep-all;
}
.consult-chk li::before { content: "?"; position: absolute; left: 3px; top: 0; color: var(--green); font-weight: 800; }
.consult-cta {
  margin: 0; padding: 9px 13px; background: #fbeee7; border-radius: 9px;
  font-size: 13.5px; font-weight: 700; color: #99451f; line-height: 1.5; word-break: keep-all;
}
.consult-cta::before { content: "→ "; font-weight: 800; }

/* ── 리포트 이메일 신청 CTA ─────────────────────────── */
.survey-report-apply {
  margin: 22px 0 8px; padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(135deg, #1f6e46 0%, #17583a 100%); text-align: center;
}
.survey-report-apply h4 { margin: 0 0 6px; font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.2px; }
.survey-report-apply p {
  margin: 0 auto 12px; max-width: 33em; font-size: 14px; line-height: 1.6; color: #fff;
  font-weight: 500; word-break: keep-all;
}
.survey-report-apply p strong { color: #fff; font-weight: 750; }
.survey-apply-button {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff !important; color: #17583a !important; border: none !important;
  font-size: 15px; font-weight: 800; padding: 11px 26px; border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2); transition: transform 0.12s ease, background 0.14s ease;
}
.survey-apply-button:hover { background: #eef9f1 !important; transform: translateY(-1px); }
.survey-apply-button:active { transform: scale(0.98); }
.survey-apply-note { margin: 10px auto 0 !important; font-size: 12px !important; color: #fff !important; font-weight: 500 !important; }


/* ── 저작권 고지(최소) ── */
.survey-copyright {
  margin: 14px 0 4px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-size: 12px; line-height: 1.55; color: var(--muted); text-align: center; word-break: keep-all;
}
.survey-copyright strong { color: var(--green-dark); font-weight: 700; }
.survey-result-copyright {
  margin: 16px 0 0 !important; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 11.5px !important; line-height: 1.5; color: var(--muted) !important; text-align: center; font-weight: 500 !important; word-break: keep-all;
}

/* ===== Survey landing 3버튼 수직 스택 (2026-07-21) — 기존 규칙 유지, 말미 override ===== */
.survey-landing-actions {
  flex-direction: column;
  align-items: flex-end;
}
.survey-landing-actions .primary-button {
  width: 360px;
  max-width: 100%;
  white-space: nowrap; /* 라벨 항상 1줄 */
  font-size: clamp(12.5px, 3.6vw, 15.5px); /* 좁은 화면에선 글자를 줄여 1줄 유지 */
}
.research-plan-form .survey-contact-card textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #d5dae3;
  border-radius: 8px;
  box-sizing: border-box;
}
.rp-teaser { text-align: left; }
.rp-badge { color: #0d9488; font-weight: 700; margin: 0 0 6px; }
.rp-lead { margin: 0 0 12px; color: #333; }
.rp-preview {
  border: 1px solid #cfe6e2;
  background: #f2fbf9;
  border-radius: 10px;
  padding: 14px 16px;
}
.rp-preview-title { font-weight: 700; color: #0f766e; margin: 0 0 6px; }
.rp-patent { margin: 0 0 8px; font-size: 13px; color: #555; }
.rp-steps { margin: 0 0 8px; padding-left: 18px; }
.rp-steps li { margin: 4px 0; font-size: 13.5px; line-height: 1.5; }
.rp-method { font-size: 12px; color: #666; margin: 6px 0 10px; }
.rp-blur {
  font-size: 12.5px;
  color: #0f766e;
  background: #e5f5f2;
  border-radius: 8px;
  padding: 9px 12px;
  filter: blur(0.4px);
  opacity: 0.92;
}
.rp-teaser .secondary-button { margin-top: 12px; }

/* 2030 연구기획하다 — 다단계 흐름 */
.rp-body { text-align: left; }
.rp-tech {
  width: 100%; box-sizing: border-box; min-height: 120px; resize: vertical;
  font-family: inherit; font-size: 14px; line-height: 1.55; padding: 12px 14px;
  border: 1px solid #d5dae3; border-radius: 10px; margin: 4px 0 14px;
}
.rp-scenes { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 6px; }
.rp-scene {
  display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px;
  border: 1px solid #d9e0ea; border-radius: 10px; cursor: pointer; transition: border-color .12s, background .12s;
}
.rp-scene:hover { border-color: #0d9488; background: #f5fbfa; }
.rp-scene input { margin-top: 3px; width: 17px; height: 17px; accent-color: #0d9488; flex: none; }
.rp-scene-body { display: flex; flex-direction: column; gap: 3px; }
.rp-scene-fp { font-size: 14.5px; color: #1f2a37; }
.rp-scene-why { font-size: 12.5px; color: #5b6472; }
.rp-scene-teaser { font-size: 13px; color: #47505e; line-height: 1.5; }
.rp-dim { color: #9aa3af; font-weight: 400; font-size: 12.5px; }
.rp-taste-meta { font-size: 11.5px; color: #8a94a2; margin: 0 0 6px; }
.rp-taste-desc { font-size: 13px; color: #37424f; line-height: 1.62; margin: 0; }
.rp-psmbc {
  margin: 14px 0 2px; padding: 13px 15px; border-radius: 10px;
  background: #0d9488; color: #ffffff; font-size: 13px; line-height: 1.6;
}
.rp-psmbc b { color: #eafffb; }
.rp-pickhint { text-align: right; font-size: 12.5px; color: #0d9488; font-weight: 700; margin: 4px 2px 0; }
.rp-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; align-items: center; }
.rp-actions .primary-button { flex: 1; }
.rp-taste { display: flex; flex-direction: column; gap: 10px; }
.rp-taste-card { border: 1px solid #cfe6e2; background: #f2fbf9; border-radius: 10px; padding: 12px 14px; }
.rp-taste-fp { font-weight: 700; color: #0f766e; margin: 0 0 6px; font-size: 14px; }
.rp-taste-line { margin: 3px 0; font-size: 13px; color: #37424f; line-height: 1.5; }
.rp-hookbox {
  margin: 14px 0 2px; padding: 12px 14px; border-radius: 10px;
  background: #e5f5f2; color: #0f5d55; font-size: 13.5px; line-height: 1.55;
}
.rp-done { text-align: center; padding: 8px 0; }
.rp-badge { color: #0d9488; font-weight: 700; margin: 0 0 8px; }
.rp-lead { color: #333; margin: 0 0 8px; line-height: 1.55; }
.rp-thanks { color: #666; font-size: 13px; margin: 0 0 14px; }

/* BUSINESS 버튼 모달 — rp-* 재사용 + 파랑 테마 */
.biz-mats { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 10px; }
.biz-mat {
  width: 100%; box-sizing: border-box; font-family: inherit; font-size: 14px;
  padding: 11px 13px; border: 1px solid #d5dae3; border-radius: 10px;
}
.biz-mat:focus { outline: none; border-color: #1d4ed8; }
.biz-add {
  background: none; border: 1px dashed #b9c4d6; color: #1d4ed8; border-radius: 9px;
  padding: 8px 12px; font-size: 13px; cursor: pointer; margin: 0 0 14px; font-weight: 600;
}
.biz-add:hover { background: #f4f8ff; }
.biz-panel .eyebrow { color: #1d4ed8; }
.biz-panel .rp-scene:hover { border-color: #1d4ed8; background: #f5f8ff; }
.biz-panel .rp-scene input { accent-color: #1d4ed8; }
.biz-panel .rp-psmbc { background: #1d4ed8; }
.biz-panel .rp-psmbc b { color: #e8efff; }
.biz-panel .rp-pickhint { color: #1d4ed8; }
.biz-panel .rp-taste-card { border-color: #c7d6f5; background: #f4f8ff; }
.biz-panel .rp-taste-fp { color: #1d4ed8; }
.biz-panel .rp-badge { color: #1d4ed8; }
.biz-panel .rp-body .primary-button { background: #1d4ed8; }
.biz-panel .rp-body .primary-button:hover:not(:disabled) { background: #2563eb; }

.research-landing-button {
  background: #0d9488; /* 청록 — 2030 연구기획 */
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.research-landing-button:hover {
  background: #0f766e;
  transform: translateY(-1px);
}
.biz-landing-button {
  background: #1d4ed8; /* 파랑 */
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.biz-landing-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
.brl-landing-button {
  background: #cabcec; /* 옅은 보라 — 어두운 글자로 대비 확보 */
  color: #2a1f47;
}
.brl-landing-button:hover {
  background: #b8a6e3;
}

/* 저작권 고지 강조(등록 사실 능동 고지) */
.survey-result-copyright strong { color: var(--green-dark); font-weight: 700; }
