:root {
  color-scheme: light;
  --cream: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #f4efe8;
  --ink: #2a2724;
  --muted: #736a5e;
  --line: #e6ded3;
  --orange: #e85f3f;
  --orange-dark: #ac462f;
  --orange-soft: #fdf2f0;
  --cobalt: #2c68c4;
  --cobalt-soft: #eef3fa;
  --teal: #1e7f77;
  --teal-soft: #eef8f7;
  --shadow: 0 16px 44px rgba(67, 50, 37, 0.09);
  --page: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(44, 104, 196, 0.34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 222, 211, 0.92);
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(var(--page), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 15px 15px 15px 5px;
  background: var(--orange);
  color: white;
  font-size: 25px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(232, 95, 63, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 92px;
}

.eyebrow,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin: 24px 0 24px;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 24px rgba(232, 95, 63, 0.2);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.phone-card {
  max-width: 430px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 800;
}

.hello {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-alt);
}

.hello strong {
  display: block;
  margin-bottom: 5px;
  font-size: 27px;
  line-height: 1.35;
}

.hello span {
  color: var(--muted);
  font-size: 16px;
}

.mini-card {
  margin-top: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.mini-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.mini-title {
  margin: 9px 0 2px;
  font-size: 22px;
  font-weight: 850;
}

.time-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.time-list li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.time-list time {
  color: var(--orange-dark);
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p,
.card p,
.support-card p,
.legal-section p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.support-card,
.legal-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 9px 28px rgba(67, 50, 37, 0.055);
}

.card {
  padding: 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  font-size: 25px;
  font-weight: 900;
}

.card-icon.orange {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.card-icon.cobalt {
  background: var(--cobalt-soft);
  color: var(--cobalt);
}

.card-icon.teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 42px;
  border-radius: 30px;
  background: var(--ink);
  color: white;
}

.trust-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.check-dot {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.launch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.launch-panel h2 {
  margin-bottom: 8px;
}

.launch-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  padding: 76px 0 52px;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(38px, 5vw, 58px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 92px;
}

.support-card {
  padding: 28px;
}

.support-card.full {
  grid-column: 1 / -1;
}

.support-card a:not(.button) {
  color: var(--cobalt);
  font-weight: 750;
  text-underline-offset: 4px;
}

.steps {
  margin: 14px 0 0;
  padding-left: 24px;
}

.steps li {
  margin: 8px 0;
  padding-left: 5px;
}

.urgent-note {
  border-left: 7px solid var(--ink);
  background: var(--surface-alt);
}

.legal-wrap {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.legal-intro {
  margin-bottom: 34px;
}

.legal-meta {
  color: var(--muted);
  font-size: 16px;
}

.legal-section {
  margin: 16px 0;
  padding: 28px 30px;
}

.legal-section p {
  margin-bottom: 0;
  white-space: pre-line;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.footer-inner {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
}

.footer-copy {
  color: var(--muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 880px) {
  .hero,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 58px;
  }

  .phone-card {
    width: 100%;
    max-width: 560px;
    margin: 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .header-inner,
  .page-shell,
  .footer-inner {
    width: min(100% - 32px, var(--page));
  }

  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 0;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px 13px 13px 4px;
    font-size: 22px;
  }

  .site-nav a {
    padding: 0 10px;
    font-size: 15px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 4px;
  }

  .site-nav a {
    justify-content: center;
    padding: 0 8px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 68px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    font-size: 20px;
  }

  .section {
    padding: 68px 0;
  }

  .trust-panel,
  .launch-panel {
    padding: 28px 22px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding-bottom: 68px;
  }

  .support-card.full {
    grid-column: auto;
  }

  .legal-wrap {
    width: min(100% - 32px, 820px);
    padding-top: 54px;
  }

  .legal-section {
    padding: 24px 21px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
