:root {
  --bg: #12070b;
  --panel: rgba(34, 13, 19, 0.82);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #fff6f1;
  --muted: #f4cfc1;
  --accent: #ff5c38;
  --accent-2: #ffb347;
  --accent-3: #ff2d55;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Noto Sans SC", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 110, 77, 0.22), transparent 34%),
    linear-gradient(180deg, #20070d 0%, #12070b 52%, #0b0508 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 85%);
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.glow-a {
  width: 340px; height: 340px;
  background: #ff5c38;
  top: 20px; left: -60px;
}
.glow-b {
  width: 360px; height: 360px;
  background: #ffb347;
  right: -80px; top: 220px;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 72px;
  position: relative;
}

.card {
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 40px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffd9cb;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.subtitle {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a0905;
}
.btn.ghost {
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #ffc6ae;
  font-weight: 700;
}
.ticker span {
  animation: drift 16s linear infinite;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-120%); }
}

.showcase {
  margin-top: 22px;
  padding: 24px;
}
.section-tag {
  color: #ffbe98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #2c0f15;
}
.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.image-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 5, 8, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}
.caption-box {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  line-height: 1.9;
}
.caption-box em {
  color: white;
  font-style: normal;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.point {
  padding: 24px;
}
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.point h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.quote {
  margin-top: 22px;
  padding: 26px 28px;
}
.quote p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.7;
  color: #ffe7dc;
}

@media (max-width: 860px) {
  .hero, .showcase, .point, .quote { padding: 22px; }
  .grid { grid-template-columns: 1fr; }
}
