@charset "utf-8";

:root{
  --primary:#0f1d2e;
  --secondary:#1d73d5;
  --accent:#58a7ff;
  --white:#ffffff;
  --black:#111111;
  --text:#1a1a1a;
  --muted:#637082;
  --line:rgba(15,29,46,.12);
  --bg:#f5f7fa;
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
  --shadow:0 20px 48px rgba(10,23,44,.12);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  min-width:320px;
  font-family:"Inter","Noto Sans KR",sans-serif;
  color:var(--text);
  background:var(--white);
  word-break:keep-all;
  overflow-x:hidden;
}
body.menu-open{overflow:hidden;}
img{display:block;max-width:100%;border:0;}
a{color:inherit;text-decoration:none;}
button{
  border:0;
  padding:0;
  background:none;
  font:inherit;
  color:inherit;
  cursor:pointer;
}
ul,ol{margin:0;padding:0;list-style:none;}
p,h1,h2,h3,h4,h5,h6{margin:0;}
.site-wrap{overflow:hidden;}
.inner{
  width:min(100% - 64px, 1440px);
  margin:0 auto;
}
.section-space{padding:110px 0;}
.eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  font-size:14px;
  line-height:1;
  font-weight:800;
  letter-spacing:.2em;
  color:#dce8f8;
}
.eyebrow.dark{color:#4578ba;}
.section-head{
  margin-bottom:40px;
}
.section-head h3{
  font-size:48px;
  line-height:1.2;
  letter-spacing:-.04em;
}
.row-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:999px;
  font-size:16px;
  font-weight:700;
}
.btn-light-line{
  color:var(--white);
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:700;
  color:#1f66b7;
}
.text-link::after{
  content:"";
  width:18px;
  height:18px;
  border-radius:50%;
  border:1px solid currentColor;
  background:
    linear-gradient(currentColor,currentColor) center/8px 1.5px no-repeat,
    linear-gradient(currentColor,currentColor) center/1.5px 8px no-repeat;
}
.light-link{color:#e3f0ff;}
.light-link::after{border-color:currentColor;}

@media (max-width:1439px){
  .inner{width:min(100% - 56px, 1280px);}
  .section-space{padding:92px 0;}
  .section-head h3{font-size:42px;}
}

@media (max-width:1279px){
  .inner{width:min(100% - 48px, 1120px);}
  .section-space{padding:84px 0;}
  .section-head h3{font-size:38px;}
}

@media (max-width:767px){
  .inner{width:min(100% - 32px, 100%);}
  .section-space{padding:68px 0;}
  .eyebrow{margin-bottom:14px;font-size:12px;}
  .section-head{margin-bottom:28px;}
  .section-head h3{font-size:30px;}
  .row-head{display:block;}
}

@media (max-width:320px){
  .section-head h3{font-size:28px;}
}
