:root {
  --cream: #faf7f2;
  --text: #2c2a27;
  --muted: #6b6861;
  --green: #7ba882;
  --blue: #a8c5d1;
  --coral: #e89b7e;
  --brown: #8b7355;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(76, 64, 48, 0.12);
  --border: rgba(44, 42, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Avenir Next", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 197, 209, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(123, 168, 130, 0.2), transparent 32%),
    linear-gradient(180deg, #fdfaf5 0%, var(--cream) 56%, #f5efe6 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168, 197, 209, 0.95), rgba(123, 168, 130, 0.95));
  box-shadow: 0 10px 24px rgba(123, 168, 130, 0.22);
  position: relative;
  overflow: hidden;
}

.brand-badge::before,
.brand-badge::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-badge::before {
  inset: 9px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
}

.brand-badge::after {
  width: 22px;
  height: 4px;
  background: var(--coral);
  top: 22px;
  left: 13px;
  transform: rotate(-18deg);
}

.brand-copy strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-pill {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 42, 39, 0.08);
  color: var(--muted);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(76, 64, 48, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.hero-copy,
.panel,
.content-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  border-radius: 34px;
  padding: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(123, 168, 130, 0.14);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.hero-copy p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(232, 155, 126, 0.3);
}

.cta-secondary {
  background: var(--white);
  border: 1px solid var(--border);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-primary:focus-visible,
.cta-secondary:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.03);
}

.trust-note {
  margin-top: 16px;
  font-size: 0.96rem;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(180deg, rgba(168, 197, 209, 0.22), rgba(123, 168, 130, 0.18));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.globe {
  width: min(88%, 420px);
  aspect-ratio: 1;
  margin: 14px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.46), transparent 22%),
    radial-gradient(circle at 65% 70%, rgba(123, 168, 130, 0.24), transparent 30%),
    linear-gradient(150deg, rgba(168, 197, 209, 0.98), rgba(123, 168, 130, 0.96));
  position: relative;
  box-shadow: 0 36px 70px rgba(94, 118, 105, 0.24);
}

.land {
  position: absolute;
  background: rgba(123, 168, 130, 0.7);
  border-radius: 48% 52% 45% 55%;
}

.land.one {
  inset: 19% auto auto 18%;
  width: 38%;
  height: 23%;
  transform: rotate(-14deg);
}

.land.two {
  inset: 46% 13% auto auto;
  width: 30%;
  height: 20%;
  transform: rotate(12deg);
}

.land.three {
  inset: auto auto 17% 24%;
  width: 22%;
  height: 17%;
  transform: rotate(10deg);
}

.route {
  position: absolute;
  inset: 0;
}

.route path {
  stroke: rgba(232, 155, 126, 0.95);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 18 18;
  fill: none;
}

.route circle {
  fill: #fff6f1;
  stroke: rgba(232, 155, 126, 0.95);
  stroke-width: 7;
}

.route plane {
  fill: none;
}

.plane-mark {
  position: absolute;
  top: 39%;
  left: 53%;
  width: 34px;
  height: 34px;
  transform: rotate(20deg);
}

.story-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px rgba(76, 64, 48, 0.14);
}

.story-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.story-card span {
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.panel {
  border-radius: 28px;
  padding: 22px;
}

.panel h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.panel p,
.panel li,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.panel ul,
.content-card ul {
  padding-left: 18px;
  margin: 0;
}

.content-wrap {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.content-card {
  border-radius: 28px;
  padding: 28px;
}

.content-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.content-card h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
}

.content-card p + p,
.content-card ul + p,
.content-card p + ul {
  margin-top: 14px;
}

.footer {
  margin-top: 24px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--brown);
  font-weight: 700;
}

.lang-anchors {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.lang-anchors a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(168, 197, 209, 0.2);
  color: var(--text);
  transition: background 160ms ease, transform 160ms ease;
}

.lang-anchors a:hover,
.lang-anchors a:focus-visible {
  background: rgba(168, 197, 209, 0.36);
  transform: translateY(-1px);
}

.lang-divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 36px 0 28px;
}

.lang-section[lang="ko"] .eyebrow {
  background: rgba(232, 155, 126, 0.16);
  color: var(--coral);
}

.lang-section[lang="ko"] .eyebrow::before {
  background: var(--coral);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 16px;
  }

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

  .hero-copy,
  .hero-stage,
  .panel,
  .content-card {
    border-radius: 26px;
  }

  .hero-copy,
  .content-card {
    padding: 24px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .story-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
