:root {
  --ink: #101418;
  --ink-soft: #25313a;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dbe2e3;
  --muted: #66727b;
  --green: #24b26b;
  --teal: #0e7d75;
  --coral: #e65f43;
  --yellow: #ffc857;
  --shadow: 0 26px 80px rgba(16, 20, 24, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(36, 178, 107, 0.13), transparent 32%),
    linear-gradient(225deg, rgba(230, 95, 67, 0.12), transparent 34%),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  letter-spacing: 0;
}

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

.construction-page {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 72vh;
  padding: 20px clamp(18px, 4vw, 58px) 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-weight: 900;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: inset -10px -10px 0 rgba(36, 178, 107, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  color: var(--white);
  background: var(--ink);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.66);
}

.status-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.status-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.status-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-header strong {
  color: var(--teal);
}

.progress {
  height: 12px;
  margin: 22px 0;
  overflow: hidden;
  background: #e7ecec;
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--coral));
}

.status-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.status-panel li {
  padding: 13px 14px;
  color: var(--ink-soft);
  font-weight: 800;
  background: #f3f7f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 58px) 58px;
}

.preview article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-weight: 900;
  background: var(--coral);
  border-radius: 8px;
}

.preview h2 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 880px) {
  .hero-grid,
  .preview {
    grid-template-columns: 1fr;
  }

  .status-panel {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions a {
    width: 100%;
  }
}
