﻿:root {
  --ink: #15221d;
  --muted: #5b6961;
  --line: #dde6df;
  --panel: #ffffff;
  --wash: #f5f8f3;
  --mint: #2fbf8f;
  --blue: #2477c7;
  --coral: #ff6b5f;
  --lemon: #f4bd28;
  --violet: #6957d8;
  --dark: #10231d;
  --shadow: 0 18px 48px rgba(21, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Noto Sans KR", sans-serif;
  background: var(--wash);
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(221, 230, 223, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  font-weight: 800;
}

.brand img {
  width: 176px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: #edf4ee;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 58px 6vw 44px;
  gap: 48px;
  background:
    linear-gradient(120deg, rgba(47, 191, 143, 0.14), rgba(244, 189, 40, 0.13) 43%, rgba(36, 119, 199, 0.12)),
    var(--wash);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-title {
  font-size: clamp(34px, 5vw, 64px);
}

.lead {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
  word-break: keep-all;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--dark);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: #fff;
  color: var(--dark);
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-metric {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(16, 35, 29, 0.12);
}

.hero-metric strong {
  font-size: 30px;
}

.section {
  padding: 72px 6vw;
}

.section.alt {
  background: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.section-head p,
.section > p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.card.pad {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  word-break: keep-all;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ecf4ef;
  color: #315145;
  font-size: 13px;
  font-weight: 800;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 34px;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf4ee;
  font-size: 13px;
}

td {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfdad2;
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ecf4ef;
  color: #315145;
  font-size: 12px;
  font-weight: 900;
}

.status.warn {
  background: #fff2d5;
  color: #7a4d00;
}

.status.hot {
  background: #ffe5e2;
  color: #9b2c22;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step strong {
  color: var(--blue);
}

.footer {
  padding: 32px 6vw;
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #dfe9e2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: #b8c9bf;
}

@media (max-width: 980px) {
  .topbar,
  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 12px 18px;
  }

  .section,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .brand {
    min-width: 144px;
  }

  .brand img {
    width: 144px;
  }
}



.premium-footer {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #071411;
  color: #eef8f2;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 191, 143, 0.18), transparent 38%, rgba(255, 107, 95, 0.15) 72%, rgba(36, 119, 199, 0.14));
  pointer-events: none;
}

.premium-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr) minmax(230px, 0.9fr);
  gap: 34px;
  padding: 54px 6vw 38px;
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  width: 224px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.32));
}

.footer-brand-block p,
.footer-contact p {
  max-width: 430px;
  margin: 0;
  color: #b8c9bf;
  line-height: 1.65;
  word-break: keep-all;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eaf6ef;
  font-size: 12px;
  font-weight: 900;
}

.footer-col,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-col strong,
.footer-contact strong {
  color: #ffffff;
  font-size: 15px;
}

.footer-col a {
  color: #b8c9bf;
  font-weight: 700;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  background: #ffffff;
  color: #071411;
  font-weight: 900;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa397;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .premium-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .premium-footer-inner {
    grid-template-columns: 1fr;
    padding: 42px 20px 30px;
  }

  .footer-logo {
    width: 184px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 16px 20px;
  }
}


.hero-media.slice-view img,
.card.visual-card img {
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center;
}

.hero-media.slice-view {
  background: #f7fbf8;
}

.hero-media.slice-view img {
  object-position: 50% 42%;
}

.card.visual-card {
  box-shadow: 0 16px 38px rgba(21, 34, 29, 0.09);
}

.card.visual-card img {
  aspect-ratio: 16 / 10;
}

.card.visual-card.slice-left img {
  object-position: 18% 50%;
}

.card.visual-card.slice-center img {
  object-position: 50% 46%;
}

.card.visual-card.slice-right img {
  object-position: 78% 50%;
}

.card.visual-card.slice-top img {
  object-position: 50% 18%;
}

.card.visual-card.slice-bottom img {
  object-position: 50% 82%;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.image-tile {
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transform: scale(1.25);
}

.image-tile:nth-child(1) img { object-position: 20% 45%; }
.image-tile:nth-child(2) img { object-position: 52% 20%; }
.image-tile:nth-child(3) img { object-position: 78% 58%; }

@media (max-width: 980px) {
  .image-strip {
    grid-template-columns: 1fr;
  }
}

.character-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 34px;
  padding: 72px 6vw;
  background: #ffffff;
}

.character-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}

.character-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  word-break: keep-all;
}

.character-panel {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbf8, #ffffff);
  box-shadow: var(--shadow);
}

.character-panel img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: 80% 22%;
  transform: scale(1.52);
  transform-origin: 82% 22%;
}

.character-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.character-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf8;
  color: #315145;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .character-feature {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .character-feature {
    padding: 54px 20px;
  }

  .character-panel,
  .character-panel img {
    min-height: 350px;
  }
}

.real-photo img {
  object-position: 52% 38%;
  transform: scale(1.08);
}

.image-tile.real-photo img {
  object-position: 50% 34%;
  transform: scale(1.05);
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-proof-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7fbf8;
}

.product-proof-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 50% 36%;
}

.product-proof-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.product-proof-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

@media (max-width: 980px) {
  .product-proof {
    grid-template-columns: 1fr;
  }
}
