:root {
  --page: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --ink: #0b1220;
  --ink-soft: #3c4658;
  --muted: #6d788c;
  --line: #dce5f0;
  --line-strong: #c9d6e4;
  --blue: #4f64f5;
  --blue-dark: #273cc9;
  --cyan: #31b7e7;
  --cyan-soft: #dff7ff;
  --success: #1aa87a;
  --shadow: 0 24px 70px rgba(20, 33, 56, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 248, 252, 0.96) 55%, #eef4fb 100%),
    linear-gradient(135deg, rgba(79, 100, 245, 0.11), rgba(49, 183, 231, 0.1));
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 8px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.logo {
  display: block;
  width: clamp(172px, 18vw, 244px);
  height: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.76fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  padding: clamp(32px, 5.4vh, 56px) 0 clamp(40px, 6.6vh, 68px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -14vw 4% auto;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  background: url("logo-mark.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
}

h1 {
  max-width: 690px;
  margin: 0;
  color: #07111f;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.64;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button-primary {
  border: 1px solid rgba(39, 60, 201, 0.28);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(79, 100, 245, 0.26);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary:hover {
  border-color: rgba(79, 100, 245, 0.42);
  box-shadow: 0 12px 28px rgba(20, 33, 56, 0.09);
}

.construction-panel {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.panel-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(79, 100, 245, 0.18);
}

.panel-title {
  display: grid;
  gap: 3px;
}

.panel-title strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.panel-title span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--cyan-soft);
  color: #096783;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.construction-list {
  display: grid;
  margin: 0;
  padding: 2px 20px 20px;
  list-style: none;
}

.construction-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.construction-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.check {
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  display: grid;
  place-items: center;
  position: relative;
}

.check::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.item-copy {
  display: grid;
  gap: 4px;
}

.item-copy strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.item-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.status-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.status-cell {
  min-height: 128px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.status-cell:last-child {
  border-right: 0;
}

.status-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-value {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
}

.status-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.46;
}

.lead-gen-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(17, 35, 64, 0.96)),
    linear-gradient(135deg, rgba(79, 100, 245, 0.18), rgba(49, 183, 231, 0.18));
  color: #ffffff;
}

.lead-gen-band::after {
  content: "";
  position: absolute;
  inset: -18% -8% auto auto;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  background: url("logo-mark.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.lead-gen {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(38px, 6vw, 58px) 0;
}

.lead-gen-copy {
  max-width: 720px;
}

.lead-gen-kicker {
  display: block;
  margin-bottom: 12px;
  color: #7be2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-gen-title {
  display: block;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead-gen-text {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(238, 246, 255, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}

.lead-gen-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.button-light:hover {
  border-color: rgba(123, 226, 255, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.footer img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.footer-tagline {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
}

.footer-copyright {
  color: var(--muted);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .construction-panel {
    max-width: 620px;
  }

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

  .status-cell:nth-child(2) {
    border-right: 0;
  }

  .status-cell:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
  }

  .logo {
    width: min(232px, 72vw);
  }

  .hero {
    gap: 30px;
    padding: 34px 0 44px;
  }

  h1 {
    font-size: clamp(2.22rem, 11vw, 3.36rem);
  }

  .lead {
    line-height: 1.62;
  }

  .action-row,
  .button {
    width: 100%;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .badge {
    width: 100%;
  }

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

  .status-cell,
  .status-cell:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-cell:last-child {
    border-bottom: 0;
  }

  .lead-gen {
    grid-template-columns: 1fr;
  }

  .lead-gen-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .lead-gen-actions .button {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    justify-content: flex-start;
    width: 100%;
  }
}

/* ---------- Visual polish ---------- */

/* Soft gradient glow behind the page for depth */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(46vw 46vw at 8% -10%, rgba(79, 100, 245, 0.16), transparent 60%),
    radial-gradient(42vw 42vw at 96% 2%, rgba(49, 183, 231, 0.15), transparent 62%);
}

.page > * {
  position: relative;
  z-index: 1;
}

/* Gradient-accented words in the headline */
.accent {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Live pulse on the status badge */
.badge {
  gap: 9px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(26, 168, 122, 0.5);
  animation: pulse 2.1s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 168, 122, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(26, 168, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 168, 122, 0); }
}

/* Hover feedback on status cells */
.status-cell {
  transition: background 200ms ease;
}

.status-cell:hover {
  background: rgba(79, 100, 245, 0.045);
}

/* Staggered entrance animation */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.construction-panel,
.status-band,
.lead-gen-band,
.footer {
  animation: fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.construction-panel { animation-delay: 0.1s; }
.status-band { animation-delay: 0.18s; }
.lead-gen-band { animation-delay: 0.26s; }
.footer { animation-delay: 0.34s; }

/* Visible focus states for keyboard users */
a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .construction-panel,
  .status-band,
  .lead-gen-band,
  .footer,
  .badge::before {
    animation: none;
  }

  .button:hover {
    transform: none;
  }
}
