@import url("https://cdn.jsdelivr.net/npm/pretendard/dist/web/static/pretendard.css");

:root {
  --bg: #f5f7f6;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #16211d;
  --muted: #53625d;
  --line: rgba(22, 33, 29, 0.08);
  --emerald: #f28b23;
  --emerald-deep: #cc6513;
  --emerald-soft: #fff0df;
  --sky-soft: #fff6e7;
  --rose-soft: #fff1f2;
  --shadow: 0 24px 60px rgba(18, 60, 50, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(242, 139, 35, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 196, 88, 0.18), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  line-height: 1.6;
}

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

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

.page-shell {
  overflow: clip;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.7);
}

.hero-section {
  position: relative;
  padding: 40px 0 88px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-orb-left {
  top: 92px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(242, 139, 35, 0.18);
}

.hero-orb-right {
  top: 32px;
  right: -90px;
  width: 240px;
  height: 240px;
  background: rgba(255, 196, 88, 0.26);
}

.hero-grid,
.split-grid,
.support-grid {
  display: grid;
  gap: 28px;
}

.hero-grid,
.support-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  margin-top: 14px;
  color: var(--emerald);
  font-size: 0.58em;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 159, 120, 0.2);
  box-shadow: 0 12px 30px rgba(16, 67, 55, 0.08);
  color: var(--emerald-deep);
}

.lead,
.section-head p,
.pricing-card p,
.notice-card p,
.cta-panel p,
.service-summary p {
  color: var(--muted);
}

.lead {
  max-width: 740px;
  margin-top: 26px;
  font-size: 1.1rem;
}

.sublead,
.section-subcopy {
  margin-top: 10px;
  color: #64756f;
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), #ffab2f);
  color: #fff;
  box-shadow: 0 18px 32px rgba(242, 139, 35, 0.26);
}

.btn-light {
  background: #fff;
  color: var(--emerald-deep);
  box-shadow: 0 18px 32px rgba(8, 51, 40, 0.18);
}

.btn-wide {
  min-width: 228px;
  padding-inline: 34px;
}

.stat-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card,
.panel-card,
.hero-panel,
.pricing-card,
.feature-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card,
.panel-card,
.pricing-card,
.feature-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 20px;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
}

.hero-media-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  box-shadow: 0 20px 48px rgba(37, 22, 5, 0.16);
}

.hero-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-summary {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #111917, #20352f);
  color: #f7fbfa;
}

.summary-label {
  color: #87f0ca;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-summary h2 {
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.28;
}

.service-summary p {
  margin-top: 14px;
  color: rgba(247, 251, 250, 0.74);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.summary-item,
.list-card,
.price-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.summary-item,
.price-item {
  background: #f8faf9;
}

.summary-dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--emerald);
}

.panel-card,
.pricing-card {
  padding: 30px;
}

.panel-card h2,
.section-head h2,
.pricing-card h3,
.support-grid h2,
.cta-panel h2 {
  letter-spacing: -0.03em;
}

.panel-card h2,
.section-head h2,
.support-grid h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.stack-list,
.price-list,
.support-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list-card {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.list-card-rose {
  background: var(--rose-soft);
  border-color: rgba(244, 114, 182, 0.16);
}

.section-tag-emerald {
  background: var(--emerald-soft);
  color: var(--emerald-deep);
}

.section-tag-rose {
  background: var(--rose-soft);
  color: #cc5172;
}

.section-tag-sky {
  background: var(--sky-soft);
  color: #1b6c8f;
}

.section-tag-dark {
  background: rgba(135, 240, 202, 0.12);
  color: #9af3d2;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.section-head {
  max-width: 760px;
}

.section-head-center {
  margin: 0 auto;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.feature-card {
  min-height: 170px;
  padding: 24px;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.pricing-card h3 {
  font-size: 1.8rem;
}

.pricing-card p {
  margin-top: 14px;
}

.price-item {
  justify-content: space-between;
}

.price-item-column {
  display: block;
}

.price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-detail {
  margin-top: 14px;
}

.price-detail p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.price-detail p:first-child {
  margin-top: 0;
}

.price-item strong {
  color: var(--emerald);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.section-dark {
  background: linear-gradient(180deg, #122320, #0d1715);
  color: #f6fbf9;
}

.support-list p {
  color: rgba(246, 251, 249, 0.76);
  font-size: 1.02rem;
}

.notice-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 28px;
  color: var(--ink);
}

.notice-card h3 {
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.notice-card p + p {
  margin-top: 14px;
}

.section-cta {
  background: linear-gradient(135deg, #f28b23, #f5b53a);
  color: #fff;
}

.cta-panel {
  max-width: 820px;
  text-align: center;
}

.cta-panel h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.12;
}

.cta-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.social-link {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-link-secondary {
  display: block;
  margin-top: 8px;
}

.section-subcopy-light {
  color: rgba(232, 249, 244, 0.88);
}

.cta-actions {
  justify-content: center;
}

.cta-note {
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .support-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 28px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100% - 20px, 1120px);
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .eyebrow,
  .section-tag {
    width: fit-content;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .panel-card,
  .pricing-card,
  .hero-panel,
  .notice-card {
    padding: 22px;
  }

  .service-summary {
    padding: 22px;
  }

  .service-summary h2 {
    font-size: 1.5rem;
  }
}
