@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface2: #1E1E1E;
  --pink: #E8005A;
  --pink-hover: #FF1A6E;
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --muted: #888888;
  --border: #2A2A2A;
  --border-light: #333333;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--pink); }

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

nav ul a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

nav ul a:hover { color: var(--white); }

/* ── HERO ── */
.hero {
  padding: 100px 48px 88px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 800px;
}

.hero h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--pink-hover); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border-light);
  color: var(--off-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.text-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
  border-bottom: 1px solid rgba(232,0,90,0.3);
  padding-bottom: 1px;
}

.text-link:hover { color: var(--pink-hover); border-color: var(--pink-hover); }

/* ── SECTION ── */
.section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.05;
}

/* ── CARD GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.15s;
}

.card:hover { background: var(--surface2); }

.card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--pink);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

/* ── MODEL CARD ── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.model-card {
  background: var(--surface);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}

.model-card:hover {
  border-color: var(--pink);
  background: var(--surface2);
}

.model-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

.model-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.model-card .specs {
  list-style: none;
  margin: 16px 0 20px;
}

.model-card .specs li {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.model-card .specs li span {
  color: var(--off-white);
  font-weight: 500;
}

/* ── PROSE ── */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 48px 0 16px;
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.9;
  font-weight: 300;
}

.prose strong { color: var(--white); font-weight: 500; }

/* ── REVIEW ── */
.review-item {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.review-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 12px;
  font-weight: 300;
}

.review-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ── FAQ ── */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

/* ── DIVIDER ── */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ── EXTERNAL LINKS STRIP ── */
.link-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
}

.link-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.link-strip a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.link-strip a:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-brand span { color: var(--pink); }

.footer-brand p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 8px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}

.footer-nav a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--white); }

.footer-external a {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.footer-external a:hover { color: var(--pink); }

.footer-external .ext-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--border-light);
  margin-bottom: 12px;
  display: block;
}

.footer-bottom {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--muted);
}

/* ── HERO SPLIT ── */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.hero__text .btn-primary,
.hero__text .btn-ghost {
  min-width: 160px;
  text-align: center;
  box-sizing: border-box;
  margin-left: 0;
  margin-top: 0;
}

.hero__text > a + a {
  margin-top: 0;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(232,0,90,0.15));
  transition: transform 0.3s ease;
}

.hero__image img:hover {
  transform: translateY(-8px);
}

.hero__image-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header { padding: 0 24px; }
  nav ul { gap: 16px; }
  nav ul li:nth-child(n+3) { display: none; }
  .hero { padding: 60px 24px; }
  .hero--split { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .hero__image img { max-width: 280px; }
  .grid-3, .model-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 48px 24px; }
  footer { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 24px; }
  .link-strip { padding: 16px 24px; flex-wrap: wrap; gap: 16px; }
}
