@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/pretendard-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/pretendard-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/pretendard-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #001422;
  --muted: #51636f;
  --line: rgba(0, 20, 34, .14);
  --blue: #0080ff;
  --blue-2: #377ff0;
  --pale: #eaf8ff;
  --white: #fff;
  --footer: #001422;
  --ease: cubic-bezier(.19, 1, .22, 1);
  font-family: "General Sans", "Pretendard", Arial, sans-serif;
  color: var(--ink);
  background: var(--pale);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--pale);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 94% 8%, rgba(180, 205, 255, .66), transparent 34rem),
    linear-gradient(114deg, #effcff 0%, #e6f7ff 38%, #cfe4ff 70%, #bad3ff 100%);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 240px 1fr 114px;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  transition: background .4s var(--ease), box-shadow .4s ease, opacity .35s ease, transform .55s var(--ease);
}

.site-header.scrolled,
.site-header:hover,
.site-header:focus-within {
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 20, 34, .04);
}

.site-header.past-hero {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.logo img {
  width: 191px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-left: -29px;
  font-size: 17px;
  font-weight: 500;
}

.nav-item {
  position: relative;
  min-width: 124px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 4px;
  transition: color .25s ease;
}

.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-item.active .nav-trigger::after {
  transform: scaleX(1);
}

.nav-panel {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 230;
  width: 282px;
  padding: 18px 0;
  border: 1px solid #dee3e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(0, 20, 34, .08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .2s ease, transform .2s var(--ease);
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel a {
  display: block;
  padding: 14px 32px;
  color: #111827;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 500;
  transition: color .2s ease, background .2s ease, transform .2s var(--ease);
}

.nav-panel a:hover,
.nav-panel a:focus-visible,
.nav-panel a.current {
  color: var(--blue);
  background: rgba(0, 128, 255, .05);
  transform: translateX(2px);
  outline: 0;
}

.nav-panel.mega {
  width: 654px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px;
}

.nav-panel.science,
.nav-panel.business {
  width: 382px;
  padding: 20px;
}

.nav-thumb {
  width: 100%;
  height: 120px;
  margin-bottom: 18px;
  border-radius: 6px;
  overflow: hidden;
  background: #eaf8ff;
}

.nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-group-label {
  margin: 0 0 18px;
  color: #1687ff;
  font-size: 15px;
  line-height: 1.4;
}

.nav-card-link {
  padding: 0;
  margin-bottom: 26px;
}

.nav-card-link:last-child {
  margin-bottom: 0;
}

.nav-card-link strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.nav-card-link > span {
  display: block;
  color: #5d6b79;
  font-size: 13.5px;
  line-height: 1.45;
}

.nav-card-link:hover strong,
.nav-card-link:focus-visible strong,
.nav-card-link.current strong {
  color: var(--blue);
}

.external-mark {
  display: inline-block;
  margin-left: 4px;
  font-size: .9em;
  transform: translateY(-1px);
}

.language {
  position: relative;
  justify-self: end;
  z-index: 250;
}

.language-btn {
  min-width: 94px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(0, 20, 34, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  font-size: 14px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.language.open .language-btn {
  border-color: #e1b051;
  box-shadow: 0 0 0 1px #e1b051 inset;
  background: rgba(255, 255, 255, .56);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}

.language.open .chevron,
.family.open .chevron {
  transform: rotate(225deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 94px;
  display: grid;
  padding: 8px 0;
  border: 1px solid rgba(0, 20, 34, .05);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 20, 34, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s var(--ease);
}

.language.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  height: 34px;
  font-size: 14px;
}

.language-menu button:hover {
  background: #f4f8fb;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  position: absolute;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  background: #fff;
  padding: 20px 16px;
  overflow-y: auto;
}

.mobile-panel.open {
  display: block;
  animation: panelIn .28s var(--ease);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  font-size: 16px;
}

.mobile-lang {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-lang .inactive {
  color: #abb4bc;
}

.mobile-close {
  width: 34px;
  height: 34px;
  position: relative;
}

.mobile-close::before,
.mobile-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 7px;
  width: 20px;
  height: 1.6px;
  background: var(--ink);
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.mobile-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 20, 34, .12);
  font-size: 20px;
  font-weight: 600;
}

.mobile-links span {
  color: rgba(0, 20, 34, .18);
  font-size: 30px;
  font-weight: 500;
}

.mobile-group {
  border-bottom: 1px solid rgba(0, 20, 34, .12);
}

.mobile-group > a {
  border-bottom: 0;
}

.mobile-sub {
  display: grid;
  gap: 0;
  padding: 0 0 14px 18px;
}

.mobile-sub a {
  min-height: 36px;
  border-bottom: 0;
  color: #4e5e68;
  font-size: 15px;
  font-weight: 500;
}

.page-hero {
  min-height: 610px;
  display: grid;
  align-items: end;
  padding: 150px clamp(24px, 4vw, 56px) 76px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 24%, rgba(0, 128, 255, .13), transparent 20rem),
    linear-gradient(114deg, #effcff 0%, #e6f7ff 42%, #cfe4ff 78%, #bdd6ff 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  bottom: 46px;
  height: 1px;
  background: rgba(0, 20, 34, .22);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(960px, 92vw);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-2);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
}

.lead {
  margin: 30px 0 0;
  max-width: 790px;
  color: #314553;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.5;
}

.hero-art {
  position: absolute;
  right: max(-110px, -8vw);
  bottom: 8px;
  z-index: 1;
  width: min(46vw, 620px);
  opacity: .42;
  filter: drop-shadow(0 28px 45px rgba(70, 110, 170, .16));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.pill-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  transition: transform .32s var(--ease), background .32s ease;
}

.pill-btn.secondary {
  border: 1px solid rgba(0, 20, 34, .14);
  background: rgba(255, 255, 255, .52);
  color: var(--ink);
}

.pill-btn:hover {
  transform: translateY(-3px);
  background: #08253b;
}

.pill-btn.secondary:hover {
  background: #fff;
}

.circle-arrow {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #233744;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.section {
  padding: 118px clamp(24px, 4vw, 56px);
}

.section.white {
  background: #fff;
}

.section.pale {
  background: #eaf8ff;
}

.section.soft {
  background: linear-gradient(180deg, #f6fcff 0%, #eaf8ff 100%);
}

.section-inner {
  width: min(1184px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: 17px;
  font-weight: 600;
}

.section-title {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.08;
  font-weight: 600;
}

.section-copy {
  display: grid;
  gap: 22px;
  color: #314553;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
}

.section-copy p {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card,
.process-card,
.news-item,
.contact-card,
.policy-card {
  border: 1px solid rgba(0, 20, 34, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(0, 40, 80, .05);
}

.feature-card {
  min-height: 260px;
  padding: 34px 30px;
  transition: transform .32s var(--ease), background .32s ease, color .32s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--ink);
  color: #fff;
}

.feature-card .index {
  display: block;
  margin-bottom: 38px;
  color: var(--blue-2);
  font-size: 17px;
}

.feature-card:hover .index {
  color: #79bbff;
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.2;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: #5d6b79;
  font-size: 17px;
  line-height: 1.55;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, .72);
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}

.process-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
}

.process-number {
  color: var(--blue-2);
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  font-weight: 600;
}

.process-card p {
  margin: 0;
  color: #52626d;
  font-size: 18px;
  line-height: 1.55;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.metric {
  min-height: 190px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.metric strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: .9;
  font-weight: 600;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 600;
}

.timeline-events {
  display: grid;
  gap: 13px;
  color: #314553;
  font-size: 18px;
  line-height: 1.5;
}

.network-list {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

.network-card {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 30px;
  padding: 34px;
  border: 1px solid rgba(0, 20, 34, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.network-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.18;
  font-weight: 600;
}

.network-card p {
  margin: 0 0 18px;
  color: #425461;
  font-size: 18px;
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 8px;
  color: #5b6b76;
  font-size: 16px;
  line-height: 1.45;
}

.news-list {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}

.news-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  transition: transform .32s var(--ease), box-shadow .32s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 40, 80, .1);
}

.news-date {
  color: var(--blue-2);
  font-size: 17px;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.28;
  font-weight: 600;
}

.news-item p {
  margin: 0;
  color: #5d6b79;
  font-size: 16px;
  line-height: 1.45;
}

.news-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.blog-page {
  background: #fff;
}

.blog-title-section {
  padding: 188px clamp(24px, 4vw, 56px) 96px;
  background: #fff;
}

.blog-title-section h1 {
  width: min(1168px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1.18;
  font-weight: 600;
}

.blog-board {
  padding: 0 clamp(24px, 4vw, 56px) 106px;
  background: #fff;
}

.blog-board-inner {
  width: min(1168px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 58px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 40px;
}

.blog-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4px;
  margin-top: 10px;
}

.blog-pagination[hidden] {
  display: none !important;
}

.blog-pagination__button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  color: #819aad;
  background: transparent;
  font: 500 20px/1 "General Sans", "Pretendard", Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.blog-pagination__button:hover,
.blog-pagination__button:focus-visible {
  color: #354f60;
  outline: 0;
}

.blog-pagination__button.is-active {
  color: #fff;
  background: #354f60;
  font-weight: 700;
}

.blog-pagination__button.is-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
}

.blog-pagination__button:disabled {
  color: #c7d1d8;
  cursor: default;
}

.blog-pagination__button:disabled:hover {
  color: #c7d1d8;
}

.blog-card a {
  display: block;
}

.blog-card figure {
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 12px;
  background: #eef3f7;
  aspect-ratio: 16 / 9;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.blog-card a:hover img,
.blog-card a:focus-visible img {
  transform: scale(1.045);
}

.blog-card h2 {
  min-height: 86px;
  margin: 0 0 18px;
  color: #152433;
  font-size: clamp(22px, 2vw, 25px);
  line-height: 1.38;
  font-weight: 600;
}

.blog-card time {
  display: block;
  margin-bottom: 20px;
  color: #465563;
  font-size: 19px;
  line-height: 1.35;
}

.blog-tags,
.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}

.blog-tags span,
.blog-topic-list a {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 12px;
  border-radius: 7px;
  background: #f4f6f8;
  color: #1e3345;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 5px 14px rgba(0, 20, 34, .04);
}

.blog-sidebar {
  position: sticky;
  top: 112px;
}

.blog-search {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  margin-bottom: 34px;
  padding: 0 12px 0 18px;
  border-radius: 6px;
  background: #f7f8fa;
  color: #758290;
}

.blog-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.blog-search input::placeholder {
  color: #83909c;
}

.blog-search button {
  height: 42px;
  display: grid;
  place-items: center;
  color: #90a0ac;
}

.blog-topic-panel h2 {
  margin: 0 0 18px;
  color: #60717e;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border: 1px solid rgba(0, 20, 34, .08);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(0, 20, 34, .08);
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.45;
}

th {
  color: var(--blue-2);
  font-weight: 600;
  background: #f7fbff;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr);
  gap: 24px;
  margin-top: 56px;
}

.contact-card {
  padding: 34px;
}

.contact-card h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  color: #425461;
  font-size: 18px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #314553;
  font-size: 15px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(0, 20, 34, .12);
  border-radius: 8px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 142px;
  resize: vertical;
}

.policy-card {
  padding: 34px;
}

.policy-card + .policy-card {
  margin-top: 18px;
}

.policy-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.policy-card p,
.policy-card li {
  color: #425461;
  font-size: 17px;
  line-height: 1.65;
}

.policy-card p {
  margin: 0 0 16px;
}

.cta-section {
  padding: 106px clamp(24px, 4vw, 56px);
  background: #001422;
  color: #fff;
}

.cta-shell {
  width: min(1184px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.cta-shell h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.08;
  font-weight: 500;
}

.cta-shell .pill-btn {
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
}

.cookie-card {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 300;
  width: min(418px, calc(100vw - 32px));
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(0, 20, 34, .1);
  backdrop-filter: blur(18px);
  font-family: "Pretendard", "General Sans", sans-serif;
  font-size: 14px;
  line-height: 1.36;
}

.cookie-card.hidden {
  display: none;
}

.cookie-card p {
  margin: 0;
  color: #000;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 96px 102px;
  gap: 6px;
  align-items: center;
  margin-top: 30px;
}

.cookie-settings {
  justify-self: start;
  padding: 8px 6px;
  text-decoration: underline;
  font-size: 14px;
}

.cookie-button {
  height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(0, 20, 34, .08);
  background: #fff;
  font-size: 14px;
}

.cookie-button.primary {
  border-color: #000;
  background: #000;
  color: #fff;
}

.cookie-options {
  display: none;
  margin-top: 36px;
}

.cookie-card.settings-open .cookie-options {
  display: grid;
  gap: 20px;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #636f78;
}

.switch {
  width: 36px;
  height: 22px;
  position: relative;
  border-radius: 999px;
  background: #c7c7c7;
  transition: background .2s ease, box-shadow .2s ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  transition: transform .22s var(--ease);
}

.switch.on {
  background: #5d92f5;
  box-shadow: 0 0 0 2px #e1aa3f;
}

.switch.on::after {
  transform: translateX(14px);
}

.footer-shell {
  position: relative;
  background: #fff;
}

.footer {
  min-height: 584px;
  padding: 64px clamp(32px, 6.2vw, 80px) 58px;
  border-radius: 40px 40px 0 0;
  background: var(--footer);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(280px, 360px);
  gap: 48px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 78px;
}

.footer-claim {
  margin: 0 0 36px;
  font-size: clamp(46px, 5vw, 58px);
  line-height: 1.18;
  font-weight: 500;
}

.footer-claim span {
  color: #9dabb4;
}

.contact-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(255, 255, 255, .12);
}

.footer-links {
  display: flex;
  gap: 10px;
  margin-top: 62px;
  color: #c7cdd1;
  font-size: 16px;
}

.copyright {
  margin-top: 28px;
  color: #4e5e68;
  font-size: 16px;
}

.support-list {
  display: grid;
  gap: 20px;
  margin-top: 92px;
  color: #c7cdd1;
  font-size: 14px;
  line-height: 1.55;
}

.support-list strong {
  display: block;
  color: #fff;
  font-weight: 600;
}

.support-list p {
  margin: 0;
}

.family {
  position: relative;
  margin-top: 30px;
}

.family-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 58px;
  padding: 18px 16px;
  border: 1px solid #1e2a33;
  border-radius: 8px;
  background: #001422;
  color: #c7cdd1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.family.open .family-menu {
  display: grid;
  gap: 16px;
  animation: panelIn .22s var(--ease);
}

.family-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid #1e2a33;
  border-radius: 8px;
  color: #c7cdd1;
  background: #001422;
  font-size: 17px;
  transition: border-color .2s, box-shadow .2s;
}

.family.open .family-btn {
  border-color: #e1b051;
  box-shadow: 0 0 0 1px #e1b051 inset;
}

.sns {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 40px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.sns a {
  opacity: .95;
  transition: opacity .2s, transform .25s var(--ease);
}

.sns a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.sns .yt,
.sns .blog {
  min-width: 32px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background: #fff;
  color: var(--footer);
  font-size: 11px;
  font-weight: 700;
}

.top-link {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 clamp(24px, 3.75vw, 48px) 12px auto;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax -12px -100vmax);
  opacity: 1;
  pointer-events: auto;
  transition: transform .35s var(--ease), background .35s;
}

.top-link:hover {
  transform: none;
  background: #08253b;
}

.arrow-up {
  width: 28px;
  height: 28px;
  position: relative;
}

.arrow-up::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 2px;
  width: 1.5px;
  height: 26px;
  background: currentColor;
}

.arrow-up::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 13px;
  height: 13px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(225deg);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .62s ease, transform .72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 210px 1fr 112px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo img {
    width: 170px;
    height: 38px;
  }

  .desktop-nav {
    gap: 0;
    font-size: 15px;
  }

  .nav-item {
    min-width: 108px;
  }

  .split,
  .contact-grid,
  .network-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-board-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-sidebar {
    position: static;
    order: -1;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .support-list {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #fff 0%, #eaf8ff 44%, #fff 100%);
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr 48px;
    padding: 0 20px 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
  }

  .logo img {
    width: 132px;
    height: auto;
  }

  .desktop-nav,
  .language {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .page-hero {
    min-height: 560px;
    padding: 118px 22px 70px;
  }

  .page-hero::after {
    left: 22px;
    right: 22px;
    bottom: 40px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 1.1;
  }

  .blog-title-section {
    padding: 126px 22px 68px;
  }

  .blog-title-section h1 {
    font-size: 58px;
  }

  .blog-board {
    padding: 0 22px 78px;
  }

  .blog-board-inner {
    gap: 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .blog-card h2 {
    min-height: 0;
    font-size: 24px;
  }

  .lead {
    font-size: 19px;
  }

  .hero-art {
    width: 90vw;
    right: -44vw;
    opacity: .18;
  }

  .section,
  .cta-section {
    padding: 78px 22px;
  }

  .section-title {
    font-size: 44px;
  }

  .feature-grid,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .process-card,
  .timeline-row,
  .news-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-year {
    font-size: 42px;
  }

  .news-arrow {
    display: none;
  }

  .cta-shell {
    display: grid;
    align-items: start;
  }

  .cookie-card {
    padding: 20px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-settings {
    padding-left: 0;
  }

  .footer {
    min-height: auto;
    padding: 44px 24px 56px;
    border-radius: 24px 24px 0 0;
  }

  .footer-logo {
    margin-bottom: 54px;
  }

  .footer-claim {
    font-size: 40px;
  }

  .contact-btn {
    min-height: 54px;
    font-size: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .top-link {
    margin-right: 22px;
  }
}
