@font-face {
  font-family: Intervia;
  src: url("/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #11252b;
  --blue: #103dcb;
  --mint: #a9eedb;
  --muted: #637478;
  --line: #dbe4e5;
  --pad: clamp(24px, 5.5vw, 100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Intervia, Pretendard, "Malgun Gothic", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #308cf0;
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1320px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.skip {
  position: fixed;
  top: 0;
  left: 20px;
  transform: translateY(-150%);
  z-index: 100;
  background: #fff;
  padding: 16px;
}
.skip:focus {
  transform: none;
}
.demo-note {
  min-height: 32px;
  background: #eef3f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px var(--pad);
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.demo-note span {
  margin-right: auto;
  letter-spacing: 0;
  color: #536369;
}
.demo-note a {
  white-space: nowrap;
}
.header {
  height: 92px;
  background: #fff;
  display: flex;
  align-items: center;
  padding-inline: var(--pad);
  gap: 42px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s;
}
.header.scrolled {
  box-shadow: 0 3px 15px #0b222a0a;
  border-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--blue);
}
.brand svg {
  width: 36px;
  fill: currentColor;
}
.brand > span {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 6.8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  margin-top: 7px;
}
.nav {
  display: flex;
  margin-left: auto;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  padding: 15px 0;
}
.nav a:hover {
  color: var(--blue);
}
.header-inquiry {
  background: var(--blue);
  color: #fff;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
}
.header-inquiry span {
  margin-left: 22px;
}
.menu-toggle {
  display: none;
}
.hero {
  height: min(810px, calc(100svh - 124px));
  min-height: 610px;
  position: relative;
  background: #142d35;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-image {
  object-position: center 55%;
  animation: hero-image 1.3s ease-out both;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #09202deb 0%, #0d253891 40%, #11263708 85%),
    linear-gradient(0deg, #08202bae, transparent 40%);
}
.hero-content {
  padding-top: clamp(90px, 9vh, 145px);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 650;
  line-height: 1.5;
}
.blue {
  color: var(--blue);
}
.hero .eyebrow {
  color: var(--mint);
  animation: rise 0.8s both;
}
.hero h1 {
  font-size: clamp(50px, 5.7vw, 88px);
  line-height: 1.17;
  letter-spacing: -0.055em;
  font-weight: 650;
  margin-top: 34px;
  animation: rise 0.9s 0.1s both;
}
.hero h1 span {
  color: var(--mint);
}
.hero-description {
  font-size: 16px;
  line-height: 1.85;
  margin-top: 28px;
  color: #e0e9e9;
  animation: rise 0.9s 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  animation: rise 0.9s 0.3s both;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 56px;
  padding: 17px 23px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-mint {
  background: var(--mint);
  color: #12372f;
}
.button-mint:hover {
  background: #c7f7e9;
}
.button-blue {
  background: var(--blue);
  color: #fff;
}
.button-blue:hover {
  background: #062ba4;
}
.button span {
  font-size: 21px;
}
.hero-service {
  font-size: 13px;
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid #ffffff70;
  padding: 14px 0;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #d6e1e3;
}
.hero-bottom a span {
  padding-left: 20px;
  font-size: 17px;
}
.quick-start {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.mini {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 650;
}
.quick-start h2 {
  font-size: 21px;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-top: 10px;
}
.quick-options {
  display: flex;
  gap: 12px;
}
.quick-options button {
  border: 1px solid var(--line);
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 20px;
  font-size: 13px;
  transition: background 0.2s;
}
.quick-options button:hover {
  background: #edf7f3;
  border-color: #9fc5bb;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  gap: 20px;
}
.index {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #7a8a8e;
}
h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.35;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 90px;
}
.about-layout h2 span {
  color: var(--blue);
}
.about-layout p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
  padding-top: 6px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}
.about-layout .text-link {
  margin-top: 22px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  margin-top: 65px;
}
.principles article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.principles article > span {
  font-size: 11px;
  color: var(--blue);
}
.principles h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
  margin: 27px 0 14px;
  font-weight: 600;
}
.principles p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.services {
  background: #f1f5f5;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading > p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}
.service-tabs {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.service-tabs button {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 21px;
  padding: 27px 2px;
  border-bottom: 1px solid #cbd6d8;
  font-weight: 600;
  transition: color 0.2s;
}
.service-tabs button:first-child {
  border-top: 1px solid #cbd6d8;
}
.service-tabs button > span {
  font-size: 10px;
  font-weight: 400;
}
.service-tabs button > b {
  font-weight: 400;
  margin-left: auto;
  font-size: 24px;
  opacity: 0.3;
}
.service-tabs button[aria-selected="true"] {
  color: var(--blue);
}
.service-tabs button[aria-selected="true"] > b {
  opacity: 1;
  transform: rotate(45deg);
}
.service-panel {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 395px;
}
.service-art {
  position: relative;
  overflow: hidden;
  background: #123ac5;
  color: var(--mint);
  min-height: 340px;
  isolation: isolate;
}
.orbit {
  position: absolute;
  border: 1px solid #8ebaf269;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s;
}
.orbit-two {
  width: 185px;
  height: 185px;
}
.service-panel:hover .orbit-one {
  transform: translate(-50%, -50%) scale(1.14);
}
.language {
  position: absolute;
  background: var(--mint);
  color: #092747;
  padding: 13px 17px;
  font-size: 19px;
  letter-spacing: -0.025em;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 9px 35px #00275e20;
}
.language-one {
  left: 12%;
  top: 24%;
  transform: rotate(-7deg);
}
.language-two {
  right: 10%;
  top: 53%;
  transform: rotate(5deg);
  background: #fff;
}
.service-symbol {
  position: absolute;
  left: 40%;
  top: 31%;
  font-size: 105px;
  font-weight: 300;
  opacity: 0.8;
}
.art-label {
  position: absolute;
  bottom: 28px;
  left: 25px;
  right: 20px;
  font-size: 8px;
  letter-spacing: 0.06em;
}
.service-art[data-art="consecutive"] {
  background: #194f4c;
}
.service-art[data-art="translation"] {
  background: #d7e7fa;
  color: #153ac1;
}
.service-art[data-art="equipment"] {
  background: #192c45;
}
.service-art[data-art="translation"] .orbit {
  border-radius: 0;
  transform: translate(-50%, -50%) rotate(-9deg);
  border-color: #103dcb40;
}
.service-art[data-art="equipment"] .orbit {
  border-style: dashed;
}
.service-copy {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-copy .eyebrow {
  font-size: 8px;
  color: var(--blue);
  letter-spacing: 0.06em;
}
.service-copy h3 {
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 20px 0 15px;
  font-weight: 600;
}
.service-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.service-copy ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 23px 0 26px;
}
.service-copy li {
  font-size: 10px;
  background: #f0f4f4;
  padding: 7px 9px;
}
.service-copy .text-link {
  margin-top: auto;
  font-size: 12px;
}
.field-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
.field-filters button {
  padding: 11px 19px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 12px;
}
.field-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.field-card {
  text-align: left;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.field-art {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #d3e5f9;
  display: block;
  margin-bottom: 27px;
}
.field-art i {
  position: absolute;
  width: 165px;
  height: 165px;
  border: 1px solid #2859ad70;
  transform: rotate(-17deg);
  top: 52px;
  left: 65px;
  transition: transform 0.5s;
}
.field-art i:nth-child(2) {
  left: 130px;
  top: 68px;
  background: #aec9ef70;
}
.field-art b {
  position: absolute;
  left: calc(50% - 45px);
  top: 55px;
  font-size: 110px;
  line-height: 1.2;
  font-weight: 400;
  color: #103dcb;
  transition: transform 0.5s;
}
.field-card:hover .field-art b {
  transform: translate(8px, -8px);
}
.field-card:hover .field-art i {
  transform: rotate(0deg);
}
.field-conference .field-art {
  background: #113f46;
}
.field-conference .field-art i {
  border-radius: 50%;
  border-color: #a9eedb60;
  background: none;
}
.field-conference .field-art b {
  color: var(--mint);
  font-weight: 200;
}
.field-technology .field-art {
  background: #edece2;
}
.field-technology .field-art i {
  border-color: #7b8e7d;
  transform: rotate(45deg);
  background: none;
}
.field-technology .field-art b {
  color: #375b4e;
}
.field-en {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.field-card strong {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.4;
  margin: 14px 0 24px;
}
.field-foot {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.field-foot b {
  font-size: 24px;
  font-weight: 400;
  color: var(--blue);
}
.field-count {
  text-align: right;
  font-size: 10px;
  color: var(--muted);
  margin-top: 17px;
}
.process {
  background: #102c36;
  color: #fff;
}
.process .eyebrow {
  color: var(--mint);
}
.process .index,
.process .section-heading > p {
  color: #afc6cd;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 66px 0 0;
}
.steps li {
  border-top: 1px solid #42606a;
  padding-top: 24px;
}
.steps li > span {
  font-size: 13px;
  color: var(--mint);
}
.steps h3 {
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.03em;
  margin: 28px 0 18px;
}
.steps p {
  font-size: 13px;
  line-height: 1.9;
  color: #adc3ca;
}
.guide {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
}
.guide h2 {
  margin-top: 24px;
}
.guide-copy {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 24px;
}
.faq {
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 1.6;
  gap: 22px;
  padding: 26px 0;
  font-weight: 500;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 25px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details > p {
  padding: 0 30px 28px 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.closing {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0 115px;
  isolation: isolate;
}
.closing .eyebrow {
  color: var(--mint);
}
.closing h2 {
  font-size: clamp(36px, 4vw, 60px);
  margin: 28px 0 34px;
}
.closing-word {
  position: absolute;
  right: -0.015em;
  bottom: -0.19em;
  font-size: clamp(120px, 22vw, 450px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.075em;
  color: #ffffff0b;
  z-index: -1;
}
.footer {
  padding-block: 50px 35px;
  display: flex;
  gap: 50px;
  align-items: start;
  flex-wrap: wrap;
}
.footer-brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}
.footer-brand span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.01em;
  margin-top: 15px;
}
.footer > div {
  margin-left: auto;
}
.footer p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
}
.footer div > a {
  display: inline-block;
  font-size: 11px;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer > span {
  flex-basis: 100%;
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.floating-inquiry {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 18;
  border: 1px solid #d4ece4;
  border-radius: 30px;
  background: var(--mint);
  color: #143b32;
  box-shadow: 0 5px 22px #0a25251c;
  font-size: 11px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}
.floating-inquiry span {
  font-size: 19px;
}
.top {
  position: fixed;
  bottom: 91px;
  right: 27px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: 18;
  font-size: 19px;
  color: var(--blue);
}
dialog {
  border: 0;
  padding: 0;
  max-width: min(650px, calc(100% - 32px));
  width: 650px;
  max-height: calc(100svh - 40px);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 100px #071b3540;
}
dialog::backdrop {
  background: #0b213bad;
  backdrop-filter: blur(6px);
}
.dialog-shell {
  position: relative;
  padding: 44px;
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  font-weight: 300;
}
.dialog-shell h2 {
  font-size: 31px;
  margin: 23px 0 16px;
}
.dialog-note {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  padding-right: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 18px;
}
form {
  margin-top: 30px;
}
form label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 10px;
  font-weight: 600;
}
form label > span {
  display: contents;
  font-weight: 400;
  color: var(--muted);
}
input,
select,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #d8e1e3;
  border-radius: 0;
  background: #f7f9fa;
  color: var(--ink);
  padding: 13px 12px;
  min-height: 46px;
  font-size: 13px;
}
textarea {
  resize: vertical;
  line-height: 1.7;
}
form > label {
  margin-top: 24px;
}
.form-submit {
  margin-top: 25px;
  width: 100%;
}
.preview-status {
  display: inline-block;
  background: #e9f8f2;
  color: #19654e;
  font-size: 11px;
  padding: 9px 12px;
  margin: 27px 0 18px;
}
.preview h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
}
.preview dl {
  margin: 22px 0;
}
.preview dl > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 15px;
  font-size: 13px;
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.preview dt {
  color: var(--muted);
}
.preview dd {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.preview-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.preview-actions .text-link {
  font-size: 12px;
}
#case-copy {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
#case-points {
  list-style: none;
  padding: 0;
  margin: 25px 0 20px;
}
#case-points li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
}
#case-consult {
  margin-top: 25px;
  width: 100%;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-image {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
.floating-inquiry,
.top {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.past-hero .floating-inquiry,
.past-hero .top {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1900px) {
  .hero-content {
    padding-top: 125px;
  }
  .hero h1 {
    font-size: 90px;
  }
  .header {
    padding-inline: max(var(--pad), calc((100% - 1580px) / 2));
  }
}
@media (max-width: 1150px) {
  .header {
    gap: 25px;
  }
  .nav {
    gap: 20px;
    font-size: 12px;
  }
  .header-inquiry {
    font-size: 12px;
    padding: 12px;
  }
  .header-inquiry span {
    margin-left: 10px;
  }
  .service-layout {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
  .service-tabs button {
    font-size: 18px;
  }
  .service-copy {
    padding: 32px 23px;
  }
  .service-copy h3 {
    font-size: 23px;
  }
  .quick-options button {
    min-width: 125px;
    padding: 15px;
  }
  .quick-start h2 {
    font-size: 18px;
  }
  .about-layout {
    gap: 55px;
  }
  .field-art i {
    left: 25px;
  }
  .field-art i:nth-child(2) {
    left: 90px;
  }
  .guide {
    gap: 60px;
  }
  .steps {
    gap: 24px;
  }
  .steps h3 {
    font-size: 19px;
  }
}
@media (max-width: 900px) {
  .demo-note {
    font-size: 8px;
  }
  .demo-note span {
    display: none;
  }
  .header {
    height: 76px;
    gap: 18px;
  }
  .brand > span {
    font-size: 24px;
  }
  .brand svg {
    width: 31px;
  }
  .brand small {
    font-size: 6px;
  }
  .header-inquiry {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 44px;
    padding: 8px;
  }
  .menu-toggle span {
    height: 1px;
    width: 24px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 20px 25px #09202d15;
    padding: 22px var(--pad);
    border-top: 1px solid var(--line);
    font-size: 17px;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    height: 730px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-bottom > span {
    max-width: 210px;
    line-height: 1.8;
  }
  .section {
    padding-block: 80px;
  }
  .quick-start {
    display: block;
  }
  .quick-options {
    margin-top: 23px;
  }
  .quick-options button {
    flex: 1;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-layout p {
    max-width: 520px;
  }
  .principles {
    gap: 24px;
    margin-top: 45px;
  }
  .principles h3 {
    font-size: 18px;
  }
  .principles p {
    font-size: 12px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 215px;
  }
  .service-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-tabs {
    flex-direction: row;
  }
  .service-tabs button,
  .service-tabs button:first-child {
    flex: 1;
    border-top: 0;
    border-bottom: 1px solid #cbd6d8;
    padding: 18px 10px;
    gap: 10px;
    font-size: 16px;
  }
  .service-tabs button > b {
    font-size: 18px;
  }
  .service-tabs button[aria-selected="true"] {
    border-bottom: 2px solid var(--blue);
  }
  .service-panel {
    min-height: 345px;
    grid-template-columns: 1fr 1.1fr;
  }
  .service-art {
    min-height: 345px;
  }
  .service-copy {
    padding: 32px;
  }
  .fields {
    gap: 16px;
  }
  .field-art {
    height: 210px;
  }
  .field-art i {
    width: 135px;
    height: 135px;
    top: 45px;
    left: 5px;
  }
  .field-art i:nth-child(2) {
    left: 55px;
    top: 65px;
  }
  .field-art b {
    font-size: 85px;
    top: 55px;
    left: calc(50% - 35px);
  }
  .field-card strong {
    font-size: 20px;
  }
  .field-foot {
    font-size: 9px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .guide {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .guide-copy {
    display: none;
  }
  .closing {
    padding-block: 75px 90px;
  }
}
@media (max-width: 600px) {
  :root {
    --pad: 24px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .demo-note {
    min-height: 29px;
    padding-block: 8px;
    font-size: 7px;
  }
  .header {
    height: 70px;
    gap: 11px;
  }
  .brand > span {
    font-size: 21px;
  }
  .brand svg {
    width: 26px;
  }
  .brand small {
    font-size: 5.3px;
  }
  .header-inquiry {
    font-size: 10px;
    min-height: 37px;
    padding: 11px;
  }
  .header-inquiry span {
    display: none;
  }
  .menu-toggle {
    width: 32px;
    padding: 4px;
  }
  .nav {
    top: 70px;
  }
  .hero {
    height: calc(100svh - 99px);
    min-height: 620px;
    max-height: 830px;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-image {
    object-position: 64% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #09202dcf, #09202d45),
      linear-gradient(0deg, #09202dd9, transparent 55%);
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.085em;
  }
  .hero h1 {
    font-size: clamp(43px, 11.4vw, 66px);
    margin-top: 27px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 27px;
    line-height: 1.9;
  }
  .hero-actions {
    margin-top: 30px;
    gap: 22px;
    flex-wrap: wrap;
  }
  .button {
    min-height: 53px;
    padding: 16px 19px;
    font-size: 12px;
    gap: 25px;
  }
  .hero-service {
    font-size: 11px;
    gap: 15px;
  }
  .hero-bottom {
    bottom: 25px;
    font-size: 7px;
    gap: 30px;
  }
  .hero-bottom > span {
    max-width: 150px;
  }
  .hero-bottom a {
    max-width: 105px;
    line-height: 1.8;
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .hero-bottom a span {
    padding: 0;
    font-size: 18px;
  }
  .quick-start {
    padding: 29px 0;
  }
  .quick-start h2 {
    font-size: 19px;
    margin-top: 9px;
  }
  .mini {
    font-size: 8px;
  }
  .quick-options {
    gap: 7px;
  }
  .quick-options button {
    min-width: 0;
    gap: 9px;
    padding: 14px 10px;
    font-size: 11px;
  }
  .section {
    padding-block: 65px;
  }
  .section-top {
    margin-bottom: 26px;
    gap: 10px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .index {
    font-size: 7px;
    white-space: nowrap;
  }
  h2 {
    font-size: 30px;
  }
  .about-layout {
    gap: 24px;
  }
  .about-layout p {
    font-size: 13px;
    line-height: 1.95;
  }
  .about-layout .text-link {
    margin-top: 17px;
  }
  .text-link {
    font-size: 12px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }
  .principles article {
    position: relative;
    padding: 23px 0 0 36px;
  }
  .principles article > span {
    position: absolute;
    top: 27px;
    left: 0;
  }
  .principles h3 {
    margin: 0 0 10px;
    font-size: 19px;
  }
  .principles p {
    font-size: 13px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 12px;
    margin-top: 20px;
  }
  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
  .service-tabs button,
  .service-tabs button:first-child {
    padding: 17px 0;
    font-size: 15px;
    gap: 10px;
  }
  .service-panel {
    grid-template-columns: 1fr;
  }
  .service-art {
    min-height: 265px;
  }
  .service-copy {
    padding: 29px 25px;
  }
  .service-copy h3 {
    font-size: 25px;
    margin-top: 15px;
  }
  .service-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .service-copy .eyebrow {
    font-size: 8px;
  }
  .language-one {
    top: 21%;
    left: 17%;
  }
  .language-two {
    top: 51%;
    right: 16%;
  }
  .service-symbol {
    font-size: 94px;
    top: 24%;
    left: 42%;
  }
  .orbit {
    width: 225px;
    height: 225px;
    top: 43%;
  }
  .orbit-two {
    width: 160px;
    height: 160px;
  }
  .art-label {
    bottom: 20px;
    font-size: 7px;
  }
  .field-filters {
    gap: 6px;
    margin-bottom: 22px;
  }
  .field-filters button {
    font-size: 10px;
    padding: 10px 13px;
  }
  .fields {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .field-art {
    height: 245px;
    margin-bottom: 21px;
  }
  .field-art i {
    left: calc(50% - 108px);
    top: 40px;
    width: 165px;
    height: 165px;
  }
  .field-art i:nth-child(2) {
    left: calc(50% - 40px);
    top: 64px;
  }
  .field-art b {
    font-size: 105px;
    top: 48px;
    left: calc(50% - 42px);
  }
  .field-card strong {
    font-size: 25px;
    margin: 12px 0 22px;
  }
  .field-foot {
    font-size: 11px;
  }
  .field-en {
    font-size: 8px;
  }
  .field-count {
    margin-top: 20px;
  }
  .steps {
    gap: 35px 24px;
  }
  .steps h3 {
    font-size: 18px;
    margin: 22px 0 12px;
  }
  .steps p {
    font-size: 11px;
  }
  .steps p br {
    display: none;
  }
  .steps li {
    padding-top: 20px;
  }
  .steps li > span {
    font-size: 11px;
  }
  .guide {
    gap: 31px;
  }
  .guide h2 {
    margin-top: 19px;
  }
  .faq summary {
    font-size: 14px;
    padding: 22px 0;
    gap: 20px;
  }
  .faq details > p {
    font-size: 12px;
    padding: 0 10px 23px 0;
  }
  .closing {
    padding-block: 60px 90px;
  }
  .closing h2 {
    font-size: 36px;
  }
  .closing-word {
    font-size: 24vw;
    bottom: -0.06em;
  }
  .footer {
    padding-block: 35px 100px;
    display: block;
  }
  .footer-brand {
    display: inline-block;
    font-size: 25px;
  }
  .footer > div {
    margin: 30px 0;
  }
  .footer p {
    font-size: 10px;
  }
  .footer > span {
    display: block;
    font-size: 7px;
  }
  .floating-inquiry {
    bottom: 17px;
    right: 17px;
    font-size: 9px;
    padding: 12px 16px;
    gap: 15px;
  }
  .floating-inquiry span {
    font-size: 17px;
  }
  .top {
    bottom: 73px;
    right: 19px;
    width: 33px;
    height: 33px;
    font-size: 17px;
  }
  .dialog-shell {
    padding: 36px 23px 28px;
  }
  .dialog-shell h2 {
    font-size: 27px;
    margin-top: 21px;
  }
  .dialog-note {
    font-size: 11px;
  }
  .form-grid {
    gap: 19px 12px;
  }
  form label {
    font-size: 11px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
    padding: 12px 9px;
  }
  .form-submit {
    font-size: 13px;
  }
  .preview dl > div {
    font-size: 12px;
    grid-template-columns: 77px 1fr;
    gap: 10px;
  }
  .preview-actions {
    gap: 14px;
  }
  #case-copy {
    font-size: 13px;
  }
  #case-points li {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  :root {
    --pad: 18px;
  }
  .brand small {
    display: none;
  }
  .header-inquiry {
    font-size: 9px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-service {
    font-size: 10px;
  }
  .hero-description {
    font-size: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-filters button {
    padding: 9px 11px;
  }
  h2 {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
