@charset "utf-8";

:root{
  --primary:#071523;
  --primary-2:#0f2f54;
  --blue:#1f65ff;
  --light-blue:#d7e8ff;
  --white:#ffffff;
  --text:#111927;
  --muted:#5f6d7e;
  --line:rgba(7,21,35,.12);
  --bg:#f3f7fb;
  --radius-xl:32px;
  --radius-lg:26px;
  --radius-md:18px;
  --shadow:0 24px 60px rgba(7,21,35,.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:16px;
  font-size:13px;
  line-height:1;
  font-weight:800;
  letter-spacing:.18em;
  color:#c6dfff;
}
.eyebrow.dark{color:#3f78c1;}
.section-head{
  margin-bottom:34px;
}
.section-head h3{
  font-size:48px;
  line-height:1.2;
  letter-spacing:-.04em;
}
.section-head.compact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:700;
  color:#2367df;
}
.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) calc(50% + 2px) center/1.5px 8px no-repeat;
}
.light-link{color:#d7e9ff;}
.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:12px;font-size:12px;}
  .section-head{margin-bottom:26px;}
  .section-head h3{font-size:30px;}
  .section-head.compact{display:block;}
}

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