:root {
  --bg-color: #0f172a;
  --bg-color-alt: #020617;
  --accent-color: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --card-bg: rgba(15, 23, 42, 0.92);
  --border-color: rgba(148, 163, 184, 0.3);
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.95);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 0% 0%, #1e293b 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #020617 0, transparent 55%),
    linear-gradient(135deg, var(--bg-color), var(--bg-color-alt));
  color: var(--text-main);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  width: 100%;
}

.card {
  background: var(--card-bg);
  border-radius: 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 34px 26px 24px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.15), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.2), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: center;
}

.left-col {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.logo-image-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
}

.logo-text-sub {
  font-size: 13px;
  color: var(--text-main);
  opacity: 0.9;
}

h1 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  margin: 4px 0 12px;
}

h1 .highlight {
  color: var(--accent-color);
}

.subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 40rem;
}

.info-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.info-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
  color: var(--accent-color);
  background: rgba(15, 23, 42, 0.96);
}

.divider {
  height: 1px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.9), transparent 70%);
  margin: 18px 0 14px;
  opacity: 0.8;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: rgba(156, 163, 175, 0.95);
  margin-bottom: 2px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.right-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction {
  position: relative;
  width: 230px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.9);
  padding: 18px 16px;
}

.construction-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tag-pill {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.crane {
  margin: 10px 0 16px;
  height: 90px;
  position: relative;
  color: #e5e7eb;
  opacity: 0.9;
  font-size: 11px;
}

.crane-art {
  font-family: "Courier New", monospace;
  white-space: pre;
  line-height: 1.1;
  transform: scale(0.9);
  transform-origin: top left;
}

.progress-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.95);
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbbf24, #f97316, #fb923c);
  width: 72%;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

.eta-pill {
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.badge-corner {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(229, 231, 235, 0.95);
}

@media (max-width: 900px) {
  .card-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 14px;
  }

  .card {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .card-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .right-col {
    justify-content: flex-start;
  }

  .construction {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logo-row {
    gap: 10px;
  }

  .subtitle {
    font-size: 13px;
  }

  .contact-row {
    gap: 10px 18px;
  }
}


