
:root {
  --bg: #020713;
  --panel: rgba(8, 25, 52, .84);
  --panel2: rgba(8, 31, 65, .72);
  --line: rgba(125, 220, 255, .24);
  --line2: rgba(108, 255, 194, .25);
  --text: #f3fbff;
  --muted: #a9c2dc;
  --soft: #d6ebff;
  --cyan: #56e6ff;
  --blue: #2d84ff;
  --green: #6cffc2;
  --yellow: #ffe65a;
  --red: #ff527e;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  letter-spacing: -0.035em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background:
    radial-gradient(circle at 68% 9%, rgba(86,230,255,.18), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(45,132,255,.18), transparent 35%),
    radial-gradient(circle at 88% 48%, rgba(108,255,194,.12), transparent 28%),
    linear-gradient(180deg, #020713 0%, #07162c 48%, #020713 100%);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(2,7,19,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 25px;
  font-weight: 1000;
  white-space: nowrap;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  object-fit: contain;
  padding: 4px;
  background: linear-gradient(135deg, rgba(86,230,255,.16), rgba(108,255,194,.14));
  border: 1px solid var(--line);
  box-shadow: 0 0 32px rgba(86,230,255,.18);
}
.brand b { color: var(--cyan); }
.brand em { color: var(--green); font-style: normal; }
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 17px;
  font-weight: 900;
  color: #d7eaff;
}
.menu a {
  position: relative;
  padding: 31px 0;
}
.menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 16px rgba(86,230,255,.75);
}
.login-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  font-size: 15px;
  font-weight: 900;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  align-items: center;
  gap: 46px;
  min-height: 620px;
  padding: 58px 0 42px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: -10% -8% auto auto;
  width: 760px;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 45% 35%, rgba(86,230,255,.20), transparent 35%),
    radial-gradient(circle at 68% 54%, rgba(108,255,194,.14), transparent 32%);
  filter: blur(4px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: #c5d5e7;
  font-size: 20px;
  font-weight: 800;
}
.eyebrow b { color: var(--cyan); }
.eyebrow em { color: var(--green); font-style: normal; }
.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7.8vw, 112px);
  line-height: .96;
  font-weight: 1000;
  letter-spacing: -0.075em;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #2085ff 0%, var(--cyan) 48%, #83dc51 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-desc {
  width: min(580px, 100%);
  margin: 28px 0 0;
  color: #c3d9ee;
  font-size: 21px;
  line-height: 1.68;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 1000;
  cursor: pointer;
}
.btn.primary {
  color: #03101d;
  background: linear-gradient(135deg, #1590ff, #8de43f);
  box-shadow: 0 18px 42px rgba(86,230,255,.23);
}
.btn.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.safe-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #bbd0e5;
  font-size: 15px;
  font-weight: 700;
}
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-flower {
  width: min(610px, 100%);
  filter: drop-shadow(0 32px 80px rgba(48,166,255,.25));
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 10px auto 34px;
}
.quick-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10,30,60,.86), rgba(7,21,45,.78));
  box-shadow: 0 22px 62px rgba(0,0,0,.24);
}
.quick-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(86,230,255,.10);
  border: 1px solid rgba(86,230,255,.14);
  font-size: 36px;
}
.quick-body strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
}
.quick-body p {
  margin: 0;
  color: #b9cde2;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
  word-break: keep-all;
}
.quick-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #d4e8fa;
  background: rgba(255,255,255,.065);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}
.news-panel, .download-panel { padding: 30px; }
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.panel-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}
.more-link {
  color: var(--cyan);
  font-size: 17px;
  font-weight: 1000;
}
.news-list { display: grid; gap: 14px; }
.news-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.badge {
  min-width: 74px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #dfffff;
  background: rgba(255,82,126,.25);
  border: 1px solid rgba(255,82,126,.28);
  font-size: 14px;
  font-weight: 1000;
}
.badge.blue {
  background: rgba(45,132,255,.22);
  border-color: rgba(45,132,255,.30);
}
.news-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.32;
}
.news-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: #a9c2dc;
  font-size: 14px;
  line-height: 1.45;
}
.news-row time { color: #9ab3cd; font-size: 14px; font-weight: 750; white-space: nowrap; }
.download-list { display: grid; gap: 14px; }
.download-item {
  min-height: 104px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background: rgba(255,255,255,.026);
}
.download-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #177dff, #24c2ff);
  font-size: 32px;
}
.download-icon.green { background: linear-gradient(135deg, #3bd455, #a4ef4a); }
.download-info strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
.download-info p {
  margin: 0;
  color: #a9c2dc;
  font-size: 14px;
  line-height: 1.45;
}
.small-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  font-weight: 950;
}
.kakao {
  margin: 22px auto 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 82px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border: 1px solid var(--line2);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(8,78,89,.78), rgba(8,35,68,.68));
}
.kakao-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(108,255,194,.28), rgba(86,230,255,.16));
  font-size: 38px;
}
.kakao strong { font-size: 27px; }
.kakao p { margin: 3px 0 0; color: #b9cde2; }
.kakao-label { color: var(--yellow); font-size: 22px; font-weight: 1000; white-space: nowrap; }
.footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footer-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #9eb7cf;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 26px;
  font-weight: 1000;
}
.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.footer p { margin: 6px 0 0; font-size: 14px; line-height: 1.55; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; font-weight: 800; }
@media (max-width: 1080px) {
  .menu { display: none; }
  .hero, .content-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: 60px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { grid-template-columns: 64px 1fr auto; }
  .kakao { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 26px 0; }
}

/* AWF_DROPDOWN_TEXT_VISIBLE_START */
/* 카테고리/상단 메뉴 드롭다운 글자 항상 보이게 수정 */
.dropdown,
.dropdown-menu,
.nav-dropdown,
.category-dropdown,
.category-menu,
.submenu,
.sub-menu,
[class*="dropdown"],
[class*="category-menu"] {
  color: #eaf6ff !important;
}

.dropdown a,
.dropdown-menu a,
.nav-dropdown a,
.category-dropdown a,
.category-menu a,
.submenu a,
.sub-menu a,
nav .dropdown a,
nav .dropdown-menu a,
nav [class*="dropdown"] a,
nav [class*="category"] a,
[class*="dropdown"] a,
[class*="category-menu"] a {
  color: #eaf6ff !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45) !important;
}

.dropdown-menu,
.nav-dropdown,
.category-dropdown,
.category-menu,
.submenu,
.sub-menu,
nav [class*="dropdown"],
nav [class*="category"] {
  background: rgba(5, 18, 38, .96) !important;
  border: 1px solid rgba(100, 200, 255, .24) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35) !important;
}

.dropdown a:hover,
.dropdown-menu a:hover,
.nav-dropdown a:hover,
.category-dropdown a:hover,
.category-menu a:hover,
.submenu a:hover,
.sub-menu a:hover,
nav [class*="dropdown"] a:hover,
nav [class*="category"] a:hover {
  color: #6cffc2 !important;
  background: rgba(108, 255, 194, .09) !important;
}
/* AWF_DROPDOWN_TEXT_VISIBLE_END */

/* AWF_SELECT_OPTION_VISIBLE_START */
/* select 닫힌 상태 */
select {
  color: #ffffff !important;
  background-color: #132842 !important;
  border: 1px solid rgba(120, 200, 255, .35) !important;
}

/* select 펼쳤을 때 option 글자 강제 표시 */
select option {
  color: #061426 !important;
  background-color: #ffffff !important;
  font-weight: 800 !important;
}

/* 선택된 option */
select option:checked,
select option:hover {
  color: #ffffff !important;
  background-color: #236bd1 !important;
}
/* AWF_SELECT_OPTION_VISIBLE_END */
