:root {
  color-scheme: dark;
  --ink: #fff7e8;
  --muted: #cfc1a8;
  --line: rgba(255, 247, 232, 0.2);
  --amber: #f6b35d;
  --red: #9e3228;
  --green: #3d7a68;
  --panel: rgba(18, 24, 28, 0.78);
  font-family:
    Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #101417;
  color: var(--ink);
}

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

.landing-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.82), rgba(7, 10, 13, 0.18) 58%, rgba(7, 10, 13, 0.46)),
    url("/images/home_header_background.png") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(158, 50, 40, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.08), rgba(16, 20, 23, 0.92));
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand-logo {
  width: min(188px, 42vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.admin-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(7, 10, 13, 0.28);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 13vh, 140px) 0 120px;
}

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

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

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.95;
  font-weight: 900;
}

.lead {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: #f1e4ce;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.55;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
}

.primary-action {
  background: linear-gradient(180deg, #f9c777, #bd5b31);
  color: #29150d;
  box-shadow: 0 16px 32px rgba(129, 55, 31, 0.34);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 247, 232, 0.08);
}

.section-peek {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, calc(100% - 40px));
  transform: translateX(-50%);
}

.section-peek span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  color: #eadac0;
  background: rgba(10, 13, 15, 0.56);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.content-band {
  background:
    linear-gradient(90deg, rgba(61, 122, 104, 0.18), transparent),
    #151716;
  padding: 76px 0 88px;
}

.content-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.intro-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.status-card {
  min-height: 174px;
  border: 1px solid rgba(246, 179, 93, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
}

.status-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.status-card h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.status-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .hero {
    min-height: 90vh;
    background-position: 68% center;
  }

  .hero__content {
    padding-top: 68px;
  }

  .lead {
    font-size: 18px;
  }

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

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

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