:root {
  color-scheme: dark;
  --bg: #06151b;
  --panel: #09222b;
  --panel-2: #0d3038;
  --text: #f4fbfb;
  --muted: #9db8bd;
  --line: rgba(211, 252, 255, 0.14);
  --cyan: #28d6e8;
  --mint: #5ad1bf;
  --gold: #f6c85f;
  --coral: #ef695d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(40, 214, 232, 0.17), transparent 28rem),
    linear-gradient(180deg, #031018 0%, var(--bg) 45%, #081719 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(3, 16, 24, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--text);
}

.header-action,
.secondary-action,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.secondary-action {
  border: 1px solid var(--line);
  color: var(--text);
}

.primary-action {
  background: var(--cyan);
  color: #031018;
  box-shadow: 0 18px 40px rgba(40, 214, 232, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 8vw, 96px) clamp(20px, 5vw, 72px) 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-text,
.split p,
.workflow-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-visual {
  position: relative;
  min-height: 500px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 74px 20px 20px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.visual-topbar {
  display: flex;
  gap: 8px;
  padding: 4px 0 18px;
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-card,
.ops-card {
  min-height: 136px;
  padding: 20px;
  background: rgba(4, 18, 26, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.metric-card span,
.ops-card div {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 40px;
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
  font-weight: 700;
}

.occupied {
  border-color: rgba(90, 209, 191, 0.34);
}

.rent {
  border-color: rgba(246, 200, 95, 0.34);
}

.ops-card {
  min-height: 112px;
}

.ops-card strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--mint);
  border-radius: 50%;
}

.status-dot.amber {
  background: var(--gold);
}

.mini-phone {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 178px;
  height: 284px;
  padding: 26px 18px;
  background: #04121a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.phone-notch {
  position: absolute;
  top: 12px;
  width: 54px;
  height: 6px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 99px;
}

.mini-phone img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.mini-phone span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mini-phone strong {
  color: var(--mint);
  font-size: 28px;
}

.operator-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 72px) 46px;
}

.operator-strip span {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.section,
.feature-grid,
.workflow,
.trust-band,
.cta {
  margin: 0 clamp(20px, 5vw, 72px);
}

.split,
.workflow,
.trust-band,
.cta {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.trust-band p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-grid article,
.identity-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-grid a {
  color: var(--cyan);
  font-weight: 800;
}

.identity-card {
  margin: 28px 0 8px;
}

.identity-card h2 {
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 82px;
}

.feature-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

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

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--cyan);
  border-radius: 50%;
  color: #031018;
  font-size: 13px;
}

.cta {
  align-items: center;
  padding-bottom: 94px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px) 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

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

.legal-page {
  padding: 0 clamp(20px, 5vw, 72px) 76px;
}

.legal-hero {
  max-width: 900px;
  padding: clamp(48px, 8vw, 96px) 0 38px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 72px);
}

.legal-hero p:last-child {
  color: var(--muted);
  font-weight: 800;
}

.legal-body {
  max-width: 920px;
  padding: 38px 0 0;
  border-top: 1px solid var(--line);
}

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-body a {
  color: var(--cyan);
  font-weight: 800;
}

.legal-body ul,
.legal-body ol {
  padding-left: 24px;
  margin-top: 0;
}

.legal-body li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .workflow,
  .trust-band,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 44px;
  }

  .product-visual {
    min-height: 580px;
    border-radius: 20px;
  }

  .visual-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .mini-phone {
    right: 18px;
    bottom: 18px;
    width: 150px;
    height: 238px;
  }

  .operator-strip {
    padding-bottom: 28px;
  }

  .split,
  .workflow,
  .trust-band,
  .cta {
    padding: 56px 0;
  }

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

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