.static-header {
border-bottom: 1px solid var(--line);
background: rgba(255, 255, 255, 0.94);
backdrop-filter: blur(12px);
}

.static-header__inner {
min-height: 84px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.static-nav {
display: flex;
align-items: center;
gap: 22px;
font-size: 13px;
font-weight: 800;
}

.static-page {
background: #f5f7fb;
}

.static-hero {
padding: 88px 0 62px;
background:
radial-gradient(circle at 12% 18%, rgba(43, 92, 255, 0.15), transparent 34%),
linear-gradient(180deg, #eef4ff 0%, #f5f7fb 100%);
}

.static-hero h1 {
margin: 18px 0 16px;
max-width: 860px;
font-size: clamp(34px, 5vw, 62px);
letter-spacing: -0.06em;
line-height: 1.08;
}

.static-hero p {
max-width: 720px;
margin: 0;
color: var(--muted);
font-size: 16px;
line-height: 1.8;
}

.static-section {
padding: 34px 0;
}

.static-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
}

.static-card {
padding: 34px;
border: 1px solid var(--line);
border-radius: 22px;
background: #fff;
box-shadow: var(--shadow);
}

.static-card--dark {
background: #162033;
color: #fff;
}

.static-card span,
.static-heading span,
.policy-alert {
font-size: 12px;
font-weight: 900;
letter-spacing: 0.12em;
color: var(--brand);
}

.static-card--dark span {
color: #8fb4ff;
}

.static-card h2,
.static-heading h2 {
margin: 14px 0 14px;
font-size: 28px;
letter-spacing: -0.04em;
line-height: 1.25;
}

.static-card p,
.static-note p,
.policy-document p,
.policy-document li {
color: var(--muted);
line-height: 1.85;
}

.static-list-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}

.static-list-grid > div {
padding: 24px;
border: 1px solid var(--line);
border-radius: 18px;
background: #fff;
}

.static-list-grid strong {
display: block;
margin-bottom: 8px;
font-size: 17px;
}

.static-list-grid p {
margin: 0;
color: var(--muted);
line-height: 1.7;
}

.static-note {
margin-bottom: 80px;
padding: 30px;
border: 1px solid #d8eadf;
border-radius: 18px;
background: #f2fbf6;
}

/* 기존 공지 리스트 호환용 */
.notice-list {
border: 1px solid var(--line);
border-radius: 20px;
overflow: hidden;
background: #fff;
box-shadow: var(--shadow);
}

.notice-list article {
min-height: 76px;
padding: 0 26px;
border-bottom: 1px solid var(--line);
display: grid;
grid-template-columns: 70px 1fr 120px;
align-items: center;
gap: 16px;
}

.notice-list article:last-child {
border-bottom: 0;
}

.notice-list span {
width: fit-content;
padding: 6px 10px;
border-radius: 999px;
background: #eef4ff;
color: var(--brand);
font-size: 11px;
font-weight: 900;
}

.notice-list a {
font-size: 16px;
font-weight: 800;
}

.notice-list time {
color: var(--muted);
font-size: 12px;
text-align: right;
}

/* 공지사항 아코디언 */
.notice-accordion {
display: grid;
gap: 14px;
padding-bottom: 90px;
}

.notice-item {
border: 1px solid var(--line);
border-radius: 18px;
background: #fff;
box-shadow: var(--shadow);
overflow: hidden;
}

.notice-item summary {
min-height: 78px;
padding: 0 26px;
display: grid;
grid-template-columns: 70px 1fr 120px 28px;
align-items: center;
gap: 16px;
cursor: pointer;
list-style: none;
}

.notice-item summary::-webkit-details-marker {
display: none;
}

.notice-item summary::after {
content: "＋";
justify-self: end;
color: var(--brand);
font-weight: 900;
}

.notice-item[open] summary::after {
content: "－";
}

.notice-badge {
width: fit-content;
padding: 6px 10px;
border-radius: 999px;
background: #eef4ff;
color: var(--brand);
font-size: 11px;
font-weight: 900;
}

.notice-badge--info {
background: #f0f7ff;
color: #3276d8;
}

.notice-item strong {
font-size: 16px;
}

.notice-item time {
color: var(--muted);
font-size: 12px;
text-align: right;
}

.notice-content {
padding: 0 26px 28px 112px;
color: var(--muted);
line-height: 1.8;
}

.notice-content p {
margin: 0 0 14px;
}

.notice-content ul {
margin: 0 0 14px;
padding-left: 18px;
}

.notice-content li {
margin: 4px 0;
}

/* FAQ */
.faq-list {
display: grid;
gap: 14px;
padding-bottom: 90px;
}

.faq-list details {
border: 1px solid var(--line);
border-radius: 18px;
background: #fff;
overflow: hidden;
}

.faq-list summary {
cursor: pointer;
padding: 22px 26px;
font-size: 16px;
font-weight: 900;
}

.faq-list p {
margin: 0;
padding: 0 26px 24px;
color: var(--muted);
line-height: 1.8;
}

/* 제휴문의 폼 */
.static-form {
padding: 34px;
border: 1px solid var(--line);
border-radius: 22px;
background: #fff;
box-shadow: var(--shadow);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.static-form label {
display: flex;
flex-direction: column;
gap: 8px;
}

.static-form label span {
font-size: 12px;
font-weight: 900;
}

.static-form input,
.static-form textarea {
width: 100%;
border: 1px solid var(--line);
border-radius: 12px;
padding: 14px;
outline: 0;
resize: vertical;
}

.static-form input:focus,
.static-form textarea:focus {
border-color: var(--brand);
}

.static-form__wide {
grid-column: 1 / -1;
}

.form-help {
grid-column: 1 / -1;
margin: 0;
color: var(--muted);
font-size: 12px;
}

/* 약관 / 개인정보처리방침 */
.policy-document {
max-width: 940px;
margin: 0 auto 90px;
padding: 46px;
border: 1px solid var(--line);
border-radius: 24px;
background: #fff;
box-shadow: var(--shadow);
}

.policy-document h2 {
margin: 34px 0 12px;
font-size: 22px;
letter-spacing: -0.03em;
}

.policy-document h2:first-of-type {
margin-top: 24px;
}

.policy-document ul {
padding-left: 20px;
}

.policy-alert {
margin: 0 0 24px;
padding: 18px 20px;
border-radius: 14px;
background: #fff7e7;
color: #9a6815 !important;
letter-spacing: 0;
line-height: 1.6 !important;
}

.policy-date {
margin-top: 36px;
font-weight: 800;
}

/* 운영사 소개 - 가로형 긴 카드 */
.about-long-list {
display: grid;
gap: 18px;
}

.about-long-card {
display: grid;
grid-template-columns: 72px 1fr;
gap: 22px;
align-items: flex-start;
padding: 28px 32px;
border: 1px solid rgba(148, 163, 184, 0.35);
border-radius: 22px;
background: #fff;
box-shadow: var(--shadow);
}

.about-long-card > span {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 999px;
background: #2563eb;
color: #fff;
font-size: 18px;
font-weight: 900;
letter-spacing: 0.04em;
}

.about-long-card h3 {
margin: 0 0 10px;
font-size: 24px;
line-height: 1.35;
color: #0f172a;
word-break: keep-all;
}

.about-long-card p {
margin: 0;
font-size: 17px;
line-height: 1.8;
color: #64748b;
word-break: keep-all;
}

/* 기존 static-list-grid--about 구조가 남아있을 때도 가로형으로 보이게 처리 */
.static-list-grid--about {
grid-template-columns: 1fr;
gap: 18px;
}

.static-list-grid--about > div {
min-height: auto;
padding: 28px 32px;
border-radius: 22px;
box-shadow: var(--shadow);
}

.static-list-grid--about strong {
font-size: 22px;
line-height: 1.4;
}

.static-list-grid--about p {
font-size: 17px;
line-height: 1.8;
}

/* 푸터 */
.footer-main--extended {
align-items: flex-start;
}

.footer-notice {
color: #c6cfdd !important;
}

.footer-links--stack {
min-width: 160px;
flex-direction: column;
gap: 10px;
}

.footer-credit {
display: block;
margin-top: 8px;
color: #c6cfdd;
font-size: 10px;
letter-spacing: 0.03em;
}

.footer-credit strong,
.footer-credit a {
color: #fff;
}

/* 태블릿 */
@media (max-width: 1023px) {
.static-header__inner {
min-height: auto;
padding: 18px 0;
align-items: flex-start;
flex-direction: column;
}

.static-nav {
width: 100%;
overflow-x: auto;
white-space: nowrap;
padding-bottom: 6px;
}

.static-hero {
padding: 58px 0 42px;
}

.static-grid,
.static-list-grid,
.static-form {
grid-template-columns: 1fr;
}

.static-form__wide {
grid-column: auto;
}

.notice-list article {
padding: 20px;
grid-template-columns: 1fr;
gap: 8px;
}

.notice-list time {
text-align: left;
}

.policy-document {
padding: 26px 20px;
}
}

/* 모바일 */
@media (max-width: 767px) {
.static-hero h1 {
font-size: 38px;
}

.notice-item summary {
min-height: auto;
padding: 18px 20px;
grid-template-columns: 1fr auto;
gap: 8px;
}

.notice-badge {
grid-column: 1 / -1;
}

.notice-item strong {
grid-column: 1 / 2;
}

.notice-item time {
grid-column: 1 / 2;
text-align: left;
}

.notice-item summary::after {
grid-column: 2;
grid-row: 2 / 4;
}

.notice-content {
padding: 0 20px 24px;
}

.about-long-card {
grid-template-columns: 1fr;
padding: 24px 22px;
}

.about-long-card > span {
width: 46px;
height: 46px;
font-size: 16px;
}

.about-long-card h3 {
font-size: 21px;
}

.about-long-card p {
font-size: 16px;
}
}
body {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
/* Partnership page refinement */
.partnership-hero {
  padding: 72px 0 58px;
}

.partnership-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.partnership-hero p {
  max-width: 820px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  word-break: keep-all;
}

.partnership-section {
  margin-top: -18px;
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.partnership-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.28), transparent 34%),
    linear-gradient(145deg, #16223b 0%, #101a2f 54%, #0b1426 100%);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.partnership-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.partner-panel__head {
  position: relative;
  z-index: 1;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.14);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.partnership-panel h2 {
  margin: 20px 0 16px;
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.partnership-panel p {
  margin: 0;
  max-width: 620px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
}

.partner-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.partner-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 800;
}

.partner-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.partner-info-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.partner-info-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(147, 197, 253, 0.15);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
}

.partner-info-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.partner-info-card p {
  max-width: none;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.72);
}

.partnership-form {
  align-self: stretch;
}

@media (max-width: 1080px) {
  .partnership-layout {
    grid-template-columns: 1fr;
  }

  .partnership-panel {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .partnership-hero {
    padding: 52px 0 40px;
  }

  .partnership-hero h1 {
    font-size: 38px;
  }

  .partnership-layout {
    gap: 18px;
  }

  .partnership-panel {
    padding: 26px;
    border-radius: 22px;
  }

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

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