:root {
  --blue: #2b6cb0;
  --blue-700: #245b96;
  --navy: #163a5f;
  --ink: #172433;
  --muted: #5b6c80;
  --faint: #94a3b8;
  --sky: #eaf4ff;
  --sky-2: #f4f8fd;
  --warm: #fafbf8;
  --line: #e2e8f0;
  --success: #2f855a;
  --amber: #b45309;
  --gold: #d98c2b;
  --home-bg: #f6f7f9;
  --danger: #c53030;
  --white: #fff;
  --ticker-h: 34px;
  --shadow: 0 24px 60px -36px rgba(22, 58, 95, .42);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 3px solid rgba(43, 108, 176, .32); outline-offset: 3px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 200; padding: 10px 16px; border-radius: 8px; background: var(--navy); color: #fff; }
.skip-link:focus { top: 12px; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }

/* 서비스 준비중 공지 티커 — 헤더 위에 붙어 함께 고정된다. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.notice-ticker {
  position: sticky;
  top: 0;
  z-index: 110;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.notice-ticker-track {
  display: flex;
  flex: none;
  white-space: nowrap;
  will-change: transform;
  animation: notice-ticker-scroll 24s linear infinite;
}
.notice-ticker-track span {
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}
@keyframes notice-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .notice-ticker-track { animation: none; }
}

.nav {
  position: sticky;
  top: var(--ticker-h);
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 10px 30px -26px rgba(22, 58, 95, .6); }
.nav .inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-weight: 850; letter-spacing: -.03em; }
.brand .name { font-size: 22px; }
.mark {
  width: 36px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.mark img { width: 36px; height: 34px; object-fit: contain; }
.links { display: flex; align-items: center; gap: 27px; color: #334155; font-size: 14px; font-weight: 650; }
.links a { transition: color .18s ease; }
.links a:hover, .links a[aria-current="page"] { color: var(--blue); }
.nav-action, .links .cta { padding: 10px 16px; border-radius: 9px; background: var(--blue); color: #fff; }
.links .cta:hover { color: #fff; background: var(--blue-700); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--sky-2); color: var(--navy); cursor: pointer; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--sky-2) 0%, #fff 68%); }
.hero::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: 40px;
  height: 2px;
  opacity: .75;
  background: repeating-linear-gradient(90deg, #cfe3f7 0 10px, transparent 10px 20px);
  transform: rotate(-1.5deg);
}
.hero-grid { position: relative; z-index: 1; min-height: 700px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; padding-block: 88px 118px; }
.eyebrow, .kicker { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: var(--sky); letter-spacing: 0; text-transform: none; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.hero h1 { margin: 24px 0 20px; color: var(--navy); font-size: clamp(42px, 5vw, 64px); line-height: 1.08; letter-spacing: -.045em; }
.hero .lead { max-width: 620px; color: #475569; font-size: 19px; line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1.5px solid transparent; border-radius: 10px; font-weight: 750; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-700); }
.btn-secondary, .btn-ghost { background: #fff; border-color: var(--blue); color: var(--blue); }
.btn-danger { border-color: #f0d2d2; color: var(--danger); background: #fff; }
.note { margin-top: 18px; color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.phone {
  width: min(330px, 84vw);
  min-height: 500px;
  padding: 12px;
  border: 9px solid #102b45;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 36px 70px -30px rgba(22, 58, 95, .46);
}
.phone-head { margin: -12px -12px 12px; padding: 14px 18px; border-radius: 28px 28px 0 0; background: var(--navy); color: #fff; font-weight: 800; }
.route-card, .floating-card { border: 1px solid #d8e4ef; border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.route-card { padding: 18px; }
.route-line { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; }
.route-line .line { height: 1.5px; background: linear-gradient(90deg, var(--blue), #9abbd8); }
.route-line .point { width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; }
.route-line .point.end { background: var(--blue); }
.route-meta { margin-top: 12px; color: var(--muted); font-size: 13px; }
.route-price { display: flex; justify-content: space-between; gap: 10px; margin-top: 12px; color: var(--ink); font-weight: 800; }
.badge { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 6px; background: var(--sky); color: var(--blue); font-size: 12px; font-weight: 750; }
.chat-preview { margin-top: 14px; display: grid; gap: 9px; }
.bubble { max-width: 80%; padding: 10px 12px; border-radius: 12px; color: #475569; background: #f1f5f9; font-size: 13px; }
.bubble.me { margin-left: auto; border-bottom-right-radius: 4px; background: var(--blue); color: #fff; }
.float-note { position: absolute; padding: 12px 15px; border: 1px solid #dbe6ef; border-radius: 12px; background: #fff; box-shadow: var(--shadow); color: var(--navy); font-size: 13px; font-weight: 750; }
.float-note.safety { left: -12px; top: 100px; }
.float-note.progress { right: -20px; bottom: 75px; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 20px; display: flex; justify-content: center; align-items: center; gap: 9px; color: #475569; font-size: 14px; font-weight: 700; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon { color: var(--blue); }

.section { padding: 92px 0; }
.section.alt { background: var(--sky-2); }
.section.navy { color: #fff; background: var(--navy); }
.section-head { max-width: 700px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 10px 0 12px; color: var(--navy); font-size: clamp(30px, 3.5vw, 44px); line-height: 1.18; letter-spacing: -.035em; }
.section.navy .section-head h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 17px; }
.section.navy .section-head p { color: #bdd6ef; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.panel { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.panel h3 { margin-bottom: 8px; color: var(--navy); font-size: 18px; }
.panel p { margin-bottom: 0; color: var(--muted); }
.feature-number { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 10px; background: var(--sky); color: var(--blue); font-weight: 850; }
.role-panel { position: relative; overflow: hidden; min-height: 300px; padding: 34px; border-radius: 20px; }
.role-panel.sender { border: 1px solid #cfe0f0; background: linear-gradient(145deg, #fff, var(--sky)); }
.role-panel.mover { background: var(--navy); color: #fff; }
.role-panel.mover h3 { color: #fff; }
.role-panel.mover p { color: #bdd6ef; }
.role-steps { display: grid; gap: 12px; margin-top: 24px; padding: 0; list-style: none; counter-reset: role; }
.role-steps li { display: flex; align-items: center; gap: 12px; counter-increment: role; }
.role-steps li::before { content: counter(role); width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: rgba(43, 108, 176, .12); color: var(--blue); font-size: 12px; font-weight: 800; }
.mover .role-steps li::before { color: #fff; background: rgba(234, 244, 255, .15); }

.comparison { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.comparison-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.35fr; }
.comparison-row > div { padding: 15px 18px; border-top: 1px solid #f1f5f9; }
.comparison-row.head > div { border-top: 0; background: #f1f5f9; color: var(--muted); font-size: 13px; font-weight: 800; }
.comparison-row > div:last-child { background: var(--sky-2); color: var(--navy); font-weight: 700; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.lifecycle-timeline { grid-template-columns: repeat(6, 1fr); list-style: none; margin: 0; padding: 0; }
.timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 18px; border-top: 2px dashed #c9dced; }
.timeline-step { position: relative; padding-top: 48px; }
.timeline-step::before { content: ""; position: absolute; top: 11px; left: 0; width: 14px; height: 14px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.timeline-step h3 { font-size: 16px; }
.timeline-step p { color: var(--muted); font-size: 14px; }
.safety-list { display: grid; gap: 14px; }
.safety-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 18px; border: 1px solid rgba(234, 244, 255, .16); border-radius: 14px; background: rgba(255, 255, 255, .04); }
.safety-row .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(234, 244, 255, .12); color: #9fc6ea; }
.safety-row h3 { margin-bottom: 4px; color: #fff; font-size: 16px; }
.safety-row p { margin: 0; color: #bdd6ef; font-size: 14px; }

.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 20px 4px; color: var(--navy); font-weight: 750; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--blue); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 4px 20px; color: var(--muted); }

.page-hero { padding: 72px 0 64px; background: var(--sky-2); }
.page-hero .kicker { display: block; margin-bottom: 12px; }
.page-hero h1 { max-width: 900px; margin-bottom: 14px; color: var(--navy); font-size: clamp(36px, 5vw, 54px); line-height: 1.15; letter-spacing: -.04em; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.content { padding: 70px 0 100px; }
.content-block { margin-bottom: 62px; }
.content-block h2 { margin-bottom: 18px; color: var(--navy); font-size: 28px; letter-spacing: -.025em; }
.content-block h3 { color: var(--navy); }
.content-block > p { max-width: 780px; color: var(--muted); }
.callout { padding: 20px 22px; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; background: var(--sky-2); color: #334155; }
.callout.warning { border-color: var(--amber); background: #fdf4e7; }
.callout.danger { border-color: var(--danger); background: #fceaea; }
.check-list, .danger-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li, .danger-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.danger-list li::before { content: "!"; position: absolute; left: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #fceaea; color: var(--danger); font-size: 12px; font-weight: 900; }
.status-banner { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border: 1px solid #cfe0f0; border-radius: 14px; background: var(--sky-2); }
.status-dot { width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(47, 133, 90, .12); }
.notice-list { display: grid; gap: 12px; }
.notice-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.notice-item .date { color: var(--faint); font-size: 13px; }
.notice-item .title { color: var(--navy); font-weight: 750; }
.notice-item .tag { color: var(--blue); font-size: 12px; font-weight: 800; }
.form-grid { display: grid; gap: 18px; max-width: 720px; }
.field { display: grid; gap: 7px; }
.field label { color: #334155; font-size: 14px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1.5px solid #cfdbe6; border-radius: 10px; background: #fff; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { display: none; padding: 14px 16px; border-radius: 10px; background: #edf7f0; color: var(--success); font-weight: 700; }
.form-status.show { display: block; }

.cta-band { padding: 84px 0; background: var(--sky-2); }
.cta-card { position: relative; overflow: hidden; padding: 52px; border-radius: 24px; background: var(--navy); color: #fff; }
.cta-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -220px; border: 2px dashed rgba(159, 198, 234, .35); border-radius: 50%; }
.cta-card h2 { position: relative; z-index: 1; margin-bottom: 10px; font-size: 34px; letter-spacing: -.03em; }
.cta-card p { position: relative; z-index: 1; color: #bdd6ef; }
.cta-card .actions { position: relative; z-index: 1; }

.legal-page { min-height: 70vh; padding: 58px 0 100px; background: var(--warm); }
.doc { max-width: 840px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px; color: var(--blue); font-weight: 700; }
.doc-head { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.doc-head h1 { margin-bottom: 8px; color: var(--navy); font-size: 42px; letter-spacing: -.04em; }
.doc .meta { color: var(--muted); font-size: 14px; }
.doc .notice { margin: 26px 0; padding: 18px 20px; border-left: 4px solid var(--amber); border-radius: 0 12px 12px 0; background: #fdf4e7; color: #7a4a12; }
.doc h2 { margin: 42px 0 14px; color: var(--navy); font-size: 22px; }
.doc p, .doc li { color: #475569; }
.doc li + li { margin-top: 8px; }
.tbl-scroll { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: #fff; }
.tbl th, .tbl td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tbl th { background: #f1f5f9; color: #334155; font-size: 13px; }

.site { padding: 58px 0 28px; background: #102b45; color: #bdd6ef; }
.site .top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; }
.site .brand { color: #fff; }
.site .mark { background: transparent; }
.site .about p { max-width: 460px; margin: 16px 0 0; color: #9fc6ea; font-size: 14px; }
.site .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.site .col { display: grid; align-content: start; gap: 8px; }
.site .col strong { margin-bottom: 4px; color: #fff; font-size: 13px; }
.site .col a { color: #bdd6ef; font-size: 13px; }
.site .legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(234, 244, 255, .13); color: #7fa5c5; font-size: 12px; }
.site .legal p { margin: 0; }
.site .legal a { color: #d8e9f8; text-decoration: underline; text-underline-offset: 3px; }

.error-page { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 48px 20px; background: var(--sky-2); text-align: center; }
.error-code { color: var(--blue); font-size: 80px; font-weight: 900; letter-spacing: -.05em; }
.error-page h1 { color: var(--navy); font-size: 32px; }
.error-page p { color: var(--muted); }

.reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .links { position: fixed; inset: 72px 0 auto; display: none; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .links.open { display: flex; }
  .links a { min-height: 48px; display: flex; align-items: center; padding: 0 12px; }
  .links .cta { justify-content: center; margin-top: 8px; }
  .menu-button { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 64px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero .actions { justify-content: center; }
  .hero-visual { min-height: 430px; }
  .float-note.safety { left: 5%; }
  .float-note.progress { right: 4%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .lifecycle-timeline { grid-template-columns: 1fr; }
  .timeline::before { left: 7px; right: auto; top: 18px; bottom: 18px; height: auto; border-top: 0; border-left: 2px dashed #c9dced; }
  .timeline-step { padding: 0 0 22px 38px; }
  .timeline-step::before { top: 3px; }
  .site .top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 32px), var(--wrap)); }
  .nav .inner { min-height: 64px; }
  .links { top: 64px; }
  .brand .name { font-size: 20px; }
  .hero-grid { min-height: auto; padding: 54px 0 84px; }
  .hero h1 { font-size: 39px; }
  .hero .lead { font-size: 16px; }
  .hero .actions { display: grid; }
  .hero .btn { width: 100%; }
  .phone { width: 300px; min-height: 450px; }
  .float-note { font-size: 12px; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 30px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .comparison { overflow-x: auto; }
  .comparison-row { min-width: 700px; }
  .lifecycle-timeline { grid-template-columns: 1fr; }
  .page-hero { padding: 50px 0 46px; }
  .page-hero h1 { font-size: 36px; }
  .content { padding: 50px 0 76px; }
  .content-block { margin-bottom: 48px; }
  .notice-item { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .notice-item .date { grid-column: 1 / -1; }
  .cta-card { padding: 34px 24px; }
  .cta-card h2 { font-size: 28px; }
  .site .cols { grid-template-columns: 1fr 1fr; }
  .doc-head h1 { font-size: 36px; }
  .doc { width: min(calc(100% - 32px), 840px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 2026-07 public home design */
.home-page {
  background: var(--home-bg);
  color: #14202e;
}
.home-page .nav {
  background: rgba(250, 250, 252, .92);
}
.home-page .nav .inner {
  min-height: 68px;
}
.home-page .links {
  gap: 34px;
  color: #3a4a5c;
  font-size: 15px;
}
.home-page .links .cta {
  padding-inline: 19px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 10px 24px -16px rgba(22, 58, 95, .85);
}
.home-page .links .cta:hover {
  background: #0f2f50;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(206, 225, 244, .74), transparent 27%),
    radial-gradient(circle at 10% 86%, rgba(251, 238, 221, .55), transparent 21%),
    linear-gradient(135deg, #f4f7fb 0%, #f8f8f9 62%, #f4f6f8 100%);
}
.home-hero-grid {
  min-height: 838px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 86px;
  padding-block: 70px 84px;
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
}
.home-page .eyebrow {
  padding: 7px 13px;
  background: rgba(255, 255, 255, .82);
  color: #394b5e;
  box-shadow: 0 5px 20px -16px rgba(15, 39, 64, .5);
  font-size: 12px;
}
.home-page .eyebrow .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 140, 43, .1);
}
.home-hero h1 {
  margin: 26px 0 25px;
  color: #0f2740;
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.13;
  letter-spacing: -.052em;
}
.home-hero h1 span {
  color: #245b96;
}
.home-hero .lead {
  max-width: 660px;
  margin-bottom: 0;
  color: #596b7d;
  font-size: 18px;
  line-height: 1.9;
  word-break: keep-all;
}
.home-page .btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 13px;
}
.home-page .btn-primary {
  background: #1e4d7b;
  box-shadow: 0 14px 26px -16px rgba(30, 77, 123, .8);
}
.home-page .btn-primary:hover {
  background: #163a5f;
}
.home-page .btn-secondary {
  border-color: #d2dbe4;
  color: #233b53;
  box-shadow: 0 8px 22px -20px rgba(15, 39, 64, .55);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 24px 0 0;
  padding: 0;
  color: #5e6e7f;
  font-size: 13px;
  list-style: none;
}
.hero-proof li {
  position: relative;
  padding-left: 24px;
}
.hero-proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.hero-device {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.hero-device::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  filter: blur(2px);
}
.device-shell {
  position: relative;
  z-index: 1;
  width: 336px;
  height: 666px;
  overflow: hidden;
  border: 9px solid #101c28;
  border-radius: 48px;
  background: #f1f4f8;
  box-shadow: 0 42px 70px -30px rgba(15, 39, 64, .55), 0 12px 22px -14px rgba(15, 39, 64, .28);
}
.device-notch {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 124px;
  height: 28px;
  border-radius: 0 0 15px 15px;
  background: #101c28;
  transform: translateX(-50%);
}
.device-status {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #fff;
  color: #27394b;
  font-size: 10px;
}
.device-profile {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 18px;
  background: #fff;
  border-top: 1px solid #edf1f4;
}
.device-profile strong,
.device-profile small {
  display: block;
}
.device-profile strong {
  color: #223548;
  font-size: 12px;
}
.device-profile small {
  color: #8391a0;
  font-size: 9px;
}
.device-profile i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  border-radius: 50%;
  background: #55a06b;
}
.device-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e9a24a, #c9761c);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}
.device-body {
  padding: 16px 14px 70px;
}
.device-route,
.device-proposal {
  padding: 15px;
  border: 1px solid #edf0f3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 11px 26px -20px rgba(20, 32, 46, .4);
}
.device-route > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1f3347;
  font-size: 11px;
}
.device-route > div > span {
  color: #9ba7b2;
}
.device-route em {
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fbeeDD;
  color: #b86b18;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.device-route small {
  display: block;
  margin-top: 9px;
  color: #8996a4;
  font-size: 8px;
}
.device-chat {
  display: grid;
  gap: 8px;
  margin: 13px 0;
}
.device-bubble {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 10px 10px 10px 3px;
  background: #fff;
  color: #596a79;
  box-shadow: 0 6px 16px -14px rgba(20, 32, 46, .5);
  font-size: 9px;
}
.device-bubble.mine {
  margin-left: auto;
  border-radius: 10px 10px 3px 10px;
  background: #163a5f;
  color: #fff;
}
.device-bubble strong {
  color: #c97820;
}
.device-proposal > span {
  color: #b86b18;
  font-size: 9px;
  font-weight: 800;
}
.device-proposal > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  color: #27394b;
}
.device-proposal > div strong {
  font-size: 14px;
}
.device-proposal p {
  margin: 7px 0 9px;
  color: #8794a1;
  font-size: 8px;
}
.device-proposal .proposal-progress {
  height: 4px;
  margin: 0 0 10px;
  border-radius: 999px;
  background: #e8edf2;
}
.device-proposal .proposal-progress span {
  width: 56%;
  height: 100%;
  border-radius: inherit;
  background: #2b6cb0;
}
.device-proposal button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: #dd9136;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.device-input {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #fff;
}
.device-input span {
  flex: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f1f4f8;
  color: #a3adb8;
  font-size: 9px;
}
.device-input b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 8px;
  border-radius: 50%;
  background: #163a5f;
  color: #fff;
}

.home-trust {
  border-block: 1px solid #edf0f3;
  background: #fff;
}
.home-trust-grid {
  min-height: 132px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px;
}
.home-trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
}
.home-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eef4fa;
  color: #245b96;
}
.home-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-trust-item strong,
.home-trust-item small {
  display: block;
}
.home-trust-item strong {
  color: #26394c;
  font-size: 14px;
}
.home-trust-item small {
  margin-top: 2px;
  color: #8391a0;
  font-size: 12px;
}

.home-section {
  padding: 112px 0;
}
.home-section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.home-section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bc741f;
  font-size: 13px;
  font-weight: 800;
}
.home-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #d98c2b;
}
.home-section-head h2,
.home-launch h2 {
  margin: 17px 0 18px;
  color: #12253a;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.22;
  letter-spacing: -.045em;
}
.home-section-head p,
.home-launch-copy > p {
  max-width: 750px;
  margin-bottom: 0;
  color: #637385;
  font-size: 16px;
}
.home-comparison-section {
  background: var(--home-bg);
}
.home-comparison {
  overflow: hidden;
  margin-top: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #edf0f3;
}
.home-comparison-row {
  display: grid;
  grid-template-columns: .9fr 1.25fr 1.25fr 1.4fr;
}
.home-comparison-row > div {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid #edf0f3;
  color: #627284;
}
.home-comparison-row > div:first-child {
  color: #33495e;
  font-weight: 750;
}
.home-comparison-row > div:last-child {
  background: #edf3f9;
  color: #173a5f;
  font-weight: 750;
}
.home-comparison-row.head > div {
  min-height: 72px;
  border-top: 0;
  color: #526375;
  font-size: 14px;
  font-weight: 750;
}
.home-comparison-row.head > div:not(:last-child) {
  background: #fafbfc;
}
.home-comparison-row.head > div:last-child {
  display: block;
  padding-top: 15px;
  background: #24456f;
  color: #fff;
}
.home-comparison-row.head small {
  display: block;
  color: #b9cbdd;
  font-size: 11px;
  font-weight: 500;
}

.home-role-section {
  background: #fff;
}
.home-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.home-role-card {
  min-height: 410px;
  padding: 38px;
  border: 1px solid #e3e9ef;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 45%, #f3f7fb);
}
.home-role-card.mover {
  border-color: #eee5d8;
  background: linear-gradient(145deg, #fff 42%, #fdf5ea);
}
.home-role-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1e4d7b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.home-role-card.mover .home-role-badge {
  background: #d98c2b;
}
.home-role-card h3 {
  margin: 28px 0 10px;
  color: #193047;
  font-size: 23px;
  letter-spacing: -.025em;
}
.home-role-card > p {
  color: #718092;
  font-size: 14px;
}
.home-role-card ol {
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid #e6ebf0;
  list-style: none;
  counter-reset: role;
}
.home-role-card li {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e6ebf0;
  color: #35495d;
  font-size: 14px;
  font-weight: 700;
  counter-increment: role;
}
.home-role-card li::before {
  content: counter(role);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf3f9;
  color: #35638e;
  font-size: 11px;
}
.home-role-card.mover li::before {
  background: #fcf0df;
  color: #b76c18;
}

.home-process {
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(43, 108, 176, .16), transparent 22%),
    #0e2c4a;
}
.home-process .home-section-head h2 {
  color: #fff;
}
.home-process .home-kicker {
  color: #e9a24a;
}
.home-process-grid.lifecycle-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-process-step.timeline-step {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(185, 200, 214, .17);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}
.home-process-step.timeline-step::before {
  display: none;
}
.home-process-step > span {
  display: block;
  margin-bottom: 20px;
  color: #e9a24a;
  font-size: 30px;
  font-weight: 850;
}
.home-process-step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}
.home-process-step p {
  margin: 0;
  color: #9db1c5;
  font-size: 13px;
  line-height: 1.75;
}
.home-process-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid rgba(233, 162, 74, .38);
  border-left: 3px solid #e9a24a;
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
}
.home-process-alert > span {
  color: #e9a24a;
  font-size: 22px;
}
.home-process-alert p {
  margin: 0;
  color: #b9c8d7;
  font-size: 13px;
}
.home-process-alert strong {
  color: #fff;
}

.home-safety {
  background: var(--home-bg);
}
.home-safety-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.home-safety-head .home-section-head {
  margin-bottom: 54px;
}
.home-safety-head > .btn {
  flex: 0 0 auto;
  margin-bottom: 54px;
}
.home-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-safety-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid #e6ebf0;
  border-radius: 20px;
  background: #fff;
}
.home-safety-card h3 {
  margin: 25px 0 10px;
  color: #20364b;
  font-size: 17px;
}
.home-safety-card p {
  margin: 0;
  color: #718092;
  font-size: 14px;
}

.home-faq-section {
  background: #fff;
}
.home-faq {
  width: min(100%, 820px);
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.home-faq details {
  border: 1px solid #e4e9ee;
  border-radius: 14px;
  background: #fff;
}
.home-faq summary {
  position: relative;
  padding: 21px 54px 21px 22px;
  color: #283c50;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.home-faq summary::-webkit-details-marker {
  display: none;
}
.home-faq summary::after {
  content: "⌄";
  position: absolute;
  top: 19px;
  right: 22px;
  color: #748497;
}
.home-faq details[open] summary::after {
  content: "⌃";
}
.home-faq details p {
  margin: -2px 0 0;
  padding: 0 22px 22px;
  color: #718092;
  font-size: 14px;
}
.home-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btn-soft {
  border-color: transparent;
  background: #f3f6f9;
  color: #28445f;
}

.home-launch {
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 218, 236, .6), transparent 28%),
    linear-gradient(135deg, #f5f7f9, #f1f4f8);
}
.home-launch-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
}
.home-launch-copy > p {
  font-size: 17px;
}
.launch-devices {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.launch-phone {
  position: relative;
  overflow: hidden;
  width: 230px;
  height: 420px;
  padding: 28px 18px 18px;
  border: 7px solid #101c28;
  border-radius: 38px;
  background: #f2f5f8;
  box-shadow: 0 32px 50px -30px rgba(15, 39, 64, .5);
  color: #26394c;
  font-size: 10px;
}
.search-phone {
  margin-top: 45px;
}
.launch-phone > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}
.search-phone > div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  padding: 10px;
  border-radius: 9px;
  background: #e8edf3;
  font-weight: 700;
}
.search-phone > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2b6cb0;
}
.search-phone > div:nth-of-type(2) i {
  background: #e09a45;
}
.search-phone p {
  position: relative;
  margin: 12px 0 0;
  padding: 11px;
  border-radius: 10px;
  background: #fff;
}
.search-phone p strong,
.search-phone p small {
  display: block;
}
.search-phone p small {
  color: #8b98a6;
}
.search-phone p em {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #bc741f;
  font-style: normal;
}
.search-phone p.disabled {
  opacity: .55;
}
.detail-phone > small {
  display: block;
  margin: -10px 0 20px;
  color: #8b98a6;
}
.detail-phone ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: launch;
}
.detail-phone li {
  display: flex;
  align-items: center;
  gap: 8px;
  counter-increment: launch;
}
.detail-phone li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #214b76;
  color: #fff;
}
.detail-phone li.active::before {
  content: "4";
  background: #d98c2b;
}
.detail-phone li.waiting {
  color: #9eabb7;
}
.detail-phone li.waiting::before {
  content: "";
  border: 1px solid #cbd4dc;
  background: transparent;
}
.launch-settle {
  position: absolute;
  right: 14px;
  bottom: 15px;
  left: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}
.launch-settle span {
  color: #8996a4;
}
.launch-settle strong {
  float: right;
}
.launch-settle button {
  width: 100%;
  min-height: 36px;
  margin-top: 9px;
  border: 0;
  border-radius: 8px;
  background: #d98c2b;
  color: #fff;
  font-weight: 800;
}

.home-page .site {
  padding-top: 70px;
  background: #163a5f;
}
.home-page .site .top {
  grid-template-columns: 1.45fr .75fr;
}
.home-page .site .cols {
  grid-template-columns: repeat(2, 1fr);
}
.home-page .site .footer-contact {
  color: #b9cce0;
  line-height: 1.9;
}
.home-page .site .footer-contact a {
  color: inherit;
}
.home-page .site .legal {
  display: grid;
  gap: 14px;
}
.home-page .site .legal p:last-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.home-page .site .legal span {
  display: flex;
  gap: 24px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .home-page .links {
    top: 68px;
    gap: 2px;
  }
  .home-hero-grid,
  .home-launch-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-grid {
    gap: 25px;
    padding-top: 70px;
  }
  .home-hero-copy {
    text-align: center;
  }
  .home-hero .lead {
    margin-inline: auto;
  }
  .home-hero-copy .actions,
  .hero-proof {
    justify-content: center;
  }
  .home-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 30px;
  }
  .home-process-grid.lifecycle-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-process-step.timeline-step {
    padding: 24px;
  }
  .home-safety-grid {
    grid-template-columns: 1fr;
  }
  .home-safety-card {
    min-height: 0;
  }
  .home-launch-grid {
    gap: 30px;
  }
  .home-launch-copy {
    text-align: center;
  }
  .home-launch-copy .actions {
    justify-content: center;
  }
  .home-page .site .top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .nav .inner {
    min-height: 64px;
  }
  .home-page .links {
    top: 64px;
  }
  .home-hero-grid {
    padding-block: 50px 70px;
  }
  .home-hero h1 {
    font-size: 39px;
  }
  .home-hero .lead {
    font-size: 16px;
    line-height: 1.75;
  }
  .home-hero-copy .actions {
    display: grid;
  }
  .home-hero-copy .btn {
    width: 100%;
  }
  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }
  .hero-device {
    min-height: 590px;
    transform: scale(.89);
    transform-origin: center top;
    margin-bottom: -62px;
  }
  .home-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-section,
  .home-launch {
    padding: 76px 0;
  }
  .home-section-head {
    margin-bottom: 38px;
  }
  .home-section-head h2,
  .home-launch h2 {
    font-size: 34px;
  }
  .home-comparison {
    overflow-x: auto;
    border-radius: 16px;
  }
  .home-comparison-row {
    min-width: 700px;
  }
  .home-role-grid,
  .home-process-grid.lifecycle-timeline {
    grid-template-columns: 1fr;
  }
  .home-role-card {
    min-height: 0;
    padding: 27px 24px;
  }
  .home-process-step.timeline-step {
    min-height: 0;
  }
  .home-process-alert {
    align-items: flex-start;
    padding: 18px;
  }
  .home-safety-head {
    display: block;
  }
  .home-safety-head .home-section-head {
    margin-bottom: 26px;
  }
  .home-safety-head > .btn {
    margin-bottom: 36px;
  }
  .home-safety-card {
    padding: 25px;
  }
  .home-faq summary {
    padding-left: 18px;
  }
  .home-launch-grid {
    min-height: 0;
  }
  .launch-devices {
    min-height: 350px;
    gap: 10px;
    transform: scale(.72);
    transform-origin: center;
    margin: -45px -80px;
  }
  .home-page .site .legal p:last-child {
    display: grid;
  }
  .home-page .site .legal span {
    flex-wrap: wrap;
  }
}
