:root {
  --bg: #0a0a0c;
  --bg-alt: #111116;
  --card: #16161d;
  --text: #e8e6e3;
  --muted: #9a9690;
  --accent: #c41e3a;
  --accent-soft: #8b1528;
  --border: #2a2a35;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.header {
  background: rgba(10,10,12,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex; justify-content: space-between; align-items: center; height: 64px;
}

.logo-wrap { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 36px; width: auto; }
.logo-text { font-weight: 700; font-size: 1.15rem; letter-spacing: 0.03em; }

.nav a {
  color: var(--muted); text-decoration: none; margin-left: 1.4rem; font-size: 0.9rem;
}
.nav a:hover, .nav-enquiry { color: var(--accent); }

/* Hero */
.hero {
  padding: 3.5rem 0 3rem; text-align: center;
  background: linear-gradient(180deg, #0f0f14 0%, var(--bg) 100%);
}

.hero-logo { height: 90px; width: auto; margin-bottom: 1.25rem; opacity: 0.95; }

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 0.5rem;
}

.hero-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

.offer-box {
  display: inline-block;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 1.6rem 2.1rem;
  max-width: 420px;
  text-align: center;
  margin-bottom: 1.25rem;
}

.offer-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 0.4rem;
}

.offer-price {
  font-size: 2.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.6rem;
}

.offer-details { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.notice-box {
  display: inline-block;
  padding: 0.65rem 1.3rem;
  background: #1a1215; border: 1px solid var(--accent-soft);
  border-radius: 8px; color: #e0b0b8;
  font-size: 0.92rem; font-weight: 600;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.section-intro { color: var(--muted); margin-bottom: 1.75rem; max-width: 640px; }

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
  display: flex; flex-direction: column;
}

.card.simple { padding: 1.2rem; }

.rank {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 0.4rem; text-transform: uppercase;
}

.card h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.card p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; flex-grow: 1; }

.btn-add {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-add:hover {
  background: var(--accent);
  color: #fff;
}

/* Mission */
.mission p { margin-bottom: 1.15rem; max-width: 720px; color: #c8c4be; }
.disclaimer {
  margin-top: 1.75rem; padding: 1rem 1.2rem;
  background: #1a1215; border-left: 3px solid var(--accent);
  font-size: 0.84rem; color: var(--muted);
}

/* Enquiry */
.enquiry-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  max-width: 560px;
}

.enquiry-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }

#enquiry-list {
  list-style: none;
  margin-bottom: 1.25rem;
  min-height: 60px;
}

#enquiry-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem;
}

#enquiry-list li.empty { color: var(--muted); border: none; }

.remove-btn {
  background: none; border: none; color: var(--accent);
  font-size: 0.8rem; cursor: pointer; opacity: 0.8;
}
.remove-btn:hover { opacity: 1; }

.enquiry-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent); color: #fff; border: none;
  padding: 0.7rem 1.2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
}
.btn-primary:hover { background: #a81830; }

.btn-secondary {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.7rem 1.2rem; border-radius: 6px;
  font-size: 0.9rem; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0; text-align: center;
  color: var(--muted); font-size: 0.9rem;
}
.footer .small { font-size: 0.8rem; margin-top: 0.3rem; opacity: 0.75; }
.footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 700px) {
  .nav a:not(.nav-enquiry) { display: none; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-logo { height: 70px; }
  .offer-box { padding: 1.3rem 1.4rem; }
}

/* Launch Poster */
.poster-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.launch-poster {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Quantity row */
.qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.qty-row label {
  font-size: 0.8rem;
  color: var(--muted);
}
.qty-input {
  width: 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.35rem;
  border-radius: 5px;
  font-size: 0.9rem;
  text-align: center;
}
.qty-input:focus {
  outline: none;
  border-color: var(--accent);
}
