@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #1a1614;
  --ink-soft: rgba(26, 22, 20, 0.72);
  --ink-muted: rgba(26, 22, 20, 0.58);
  --border: rgba(26, 22, 20, 0.13);
  --chilli: #d2331f;
  --chilli-dark: #b82a19;
  --cream: #f5efe4;
  --paper: #fbf8f2;
  --warm: #e87a2b;
  --green: #3f6b3a;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.config-warning {
  display: none;
  padding: 10px 16px;
  color: var(--chilli);
  background: var(--paper);
  border-bottom: 1px solid rgba(210, 51, 31, 0.28);
  font-weight: 700;
  text-align: center;
}

.config-warning.show {
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(245, 239, 228, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.wordmark {
  width: 138px;
  height: auto;
  flex: none;
}

.brand-link span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--chilli);
}

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

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.btn-outline:hover {
  color: var(--cream);
  background: var(--ink);
}

.btn-light {
  color: var(--chilli);
  background: #fff;
}

.btn-light:hover {
  color: var(--chilli-dark);
  background: var(--paper);
}

.btn-large {
  min-height: 52px;
  padding: 15px 18px;
  font-size: 16px;
}

.hero {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 20px 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(56px, 15vw, 118px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 8vw, 64px);
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.hero-sub {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(18px, 3vw, 22px);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.note {
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 13px;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--paper);
  object-fit: cover;
}

.hero-media figcaption {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 12px;
}

.section {
  border-top: 1px solid var(--border);
  padding: 64px 20px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 18px;
}

.two-col {
  display: grid;
  gap: 28px;
}

.status-band {
  background: var(--paper);
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.status-item strong {
  color: var(--chilli);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.status-item span {
  color: var(--ink-soft);
}

.asset-grid {
  display: grid;
  gap: 12px;
}

.asset-card {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.asset-card span,
.timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--chilli);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.asset-card p,
.timeline p {
  font-size: 15px;
}

.dark-section {
  color: var(--cream);
  background: var(--ink);
}

.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}

.dark-section p,
.dark-section li {
  color: rgba(245, 239, 228, 0.84);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 0 14px 28px;
  border-top: 1px solid rgba(245, 239, 228, 0.18);
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: var(--warm);
}

.product-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.product-list {
  display: grid;
  gap: 8px;
}

.product-list div {
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
}

.cream-section {
  background: #efe7d6;
}

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

.timeline article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.final-section {
  color: #fff;
  background: var(--chilli);
  text-align: center;
}

.final-section h2 {
  color: #fff;
}

.final-section p {
  max-width: 660px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.92);
}

.final-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.light-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 460px) {
  .brand-link span {
    display: none;
  }

  .topbar .btn {
    padding-inline: 12px;
    font-size: 13px;
  }
}

@media (min-width: 680px) {
  .hero-actions {
    flex-direction: row;
  }

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

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

@media (min-width: 900px) {
  .topbar {
    padding-inline: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    min-height: calc(100vh - 66px);
    padding: 56px 28px 80px;
  }

  .hero-media {
    align-self: center;
  }

  .section {
    padding: 86px 28px;
  }

  .two-col,
  .product-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  }

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